forked from ucsd-cse231-w21/chocopy-wasm-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.06 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
{
"name": "web-asm-jit",
"version": "0.0.1",
"description": "A toy JIT using web assembly as the compilation target",
"main": "index.js",
"scripts": {
"start": "webpack serve --mode=development --open",
"build-web": "webpack",
"build-parse": "tsc parsestart.ts --esModuleInterop --moduleResolution node --outDir cli/",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' node --experimental-wasm-bigint node_modules/.bin/mocha -r ts-node/register --reporter mochawesome 'tests/**/*.test.ts'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^14.14.20",
"lezer-python": "^0.13.1",
"lezer-tree": "^0.13.0",
"mochawesome": "^6.2.1",
"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",
"html-webpack-plugin": "^5.2.0",
"mocha": "^8.2.1",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.2"
}
}