-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 834 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "lambda2wasm",
"version": "1.0.0",
"author": "ENvironmentSet",
"repository": {
"type": "git",
"url": "git+https://github.com/ENvironmentSet/lambda2wasm.git"
},
"dependencies": {
"dedent": "^0.7.0",
"wabt": "^1.0.36"
},
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/node": "^18.0.3",
"ts-node": "^10.8.2",
"tspeg": "^3.2.1",
"typescript": "^4.6.4"
},
"bugs": {
"url": "https://github.com/ENvironmentSet/lambda2wasm/issues"
},
"description": "A Lambda expression compiler targeting web assembly",
"homepage": "https://github.com/ENvironmentSet/lambda2wasm#readme",
"license": "MIT",
"scripts": {
"generate-parser": "tspeg syntax.peg ./src/parser.ts",
"compile": "ts-node ./src/compile.ts",
"execute": "ts-node ./src/execute.ts"
}
}