-
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) · 1 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1 KB
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": "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-cli": "tsc node-main.ts --lib es2019,dom --esModuleInterop --moduleResolution node --outDir cli/",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.test.ts'",
"my-test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/pa3-my-tests.test.ts'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@lezer/common": "^1.0.2",
"@lezer/python": "^1.1.3",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"wabt": "^1.0.32",
"webpack": "^5.76.2"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.3",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"webpack-cli": "^5.0.1"
}
}