-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 848 Bytes
/
package.json
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
{
"name": "web-asm-jit",
"version": "0.0.1",
"description": "A toy JIT using web assembly as the compilation target",
"main": "index.js",
"scripts": {
"build-web": "webpack && cp index.html build/",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.test.ts'",
"build-cli-repl": "tsc node-main.ts --esModuleInterop --moduleResolution node --outDir cli/"
},
"author": "",
"license": "ISC",
"dependencies": {
"lezer-python": "^0.13.1",
"lezer-tree": "^0.13.0",
"ts-loader": "^8.0.11",
"ts-node": "^9.1.1",
"typescript": "^4.1.2",
"wabt": "^1.0.20",
"webpack": "^5.10.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"chai": "^4.2.0",
"mocha": "^9.2.2",
"webpack-cli": "^4.2.0"
}
}