forked from ucsd-cse231-s22/chocopy-wasm-compiler-B
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.16 KB
/
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
30
31
32
33
34
35
36
{
"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/\"",
"build-parse": "tsc parsestart.ts --esModuleInterop --moduleResolution node --outDir cli/",
"test": "set TS_NODE_COMPILER_OPTIONS={\"module\": \"commonjs\" } && mocha -r ts-node/register 'tests/**/*.test.ts'",
"build": "tsc debuggerstart.ts --downlevelIteration --esModuleInterop --moduleResolution node --outDir debugger/",
"start": "node debugger/debuggerstart.js",
"prestart": "npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"chai-as-promised": "^7.1.1",
"lezer": "^0.13.5",
"lezer-python": "^0.13.7",
"mochawesome": "^7.1.2",
"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/chai-as-promised": "^7.1.5",
"@types/mocha": "^8.2.0",
"@types/node": "^17.0.23",
"chai": "^4.2.0",
"mocha": "^9.2.2",
"webpack-cli": "^4.2.0"
}
}