-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
53 lines (53 loc) · 1.81 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"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",
"test-set-only": "set TS_NODE_COMPILER_OPTIONS={\"module\": \"commonjs\" } && mocha -r ts-node/register tests/set.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": {
"@diagrams-ts/graphviz-cli-renderer": "^0.5.0",
"codemirror": "^5.59.4",
"file-saver": "^2.0.5",
"eslint-plugin-cypress": "^2.11.2",
"chai-as-promised": "^7.1.1",
"html-webpack-plugin": "^5.5.0",
"lezer": "^0.13.5",
"lezer-python": "^0.13.7",
"mochawesome": "^7.1.2",
"ts-loader": "^9.3.0",
"ts-node": "^10.8.0",
"typescript": "^4.1.2",
"wabt": "^1.0.29"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.5",
"@types/codemirror": "0.0.108",
"@types/file-saver": "^2.0.1",
"@types/mocha": "^8.2.0",
"@types/node": "^17.0.23",
"chai": "^4.2.0",
"css-loader": "^5.1.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^9.2.2",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.72.1",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^4.9.0"
}
}