-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
65 lines (65 loc) · 2.42 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"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/",
"fuzzonce": "tsc fuzzer/fuzzer.ts --outDir fuzzer/cli/ && node fuzzer/cli/fuzzer/fuzzer.js",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cytest": "start-server-and-test start http://localhost:8080 cypress:open",
"lint": "eslint . --ext .ts,.js --quiet",
"lint:ci": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix --quiet",
"fix": "npm run lint:fix",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' node --experimental-wasm-bigint node_modules/mocha/bin/mocha -r ts-node/register --reporter mochawesome 'tests/**/*.test.ts'",
"fuzz": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' node --experimental-wasm-bigint node_modules/mocha/bin/mocha -r ts-node/register --reporter mochawesome 'fuzzer/continuous_fuzz.ts'",
"webhook-server": "node webhook-server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^14.14.20",
"codemirror": "^5.59.4",
"cypress": "^6.5.0",
"file-saver": "^2.0.5",
"eslint-plugin-cypress": "^2.11.2",
"lezer-python": "^0.13.6",
"lezer-tree": "^0.13.0",
"mochawesome": "^6.2.1",
"python-shell": "^2.0.3",
"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/codemirror": "0.0.108",
"@types/file-saver": "^2.0.1",
"@types/mocha": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.0.1",
"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",
"html-webpack-plugin": "^5.2.0",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"start-server-and-test": "^1.12.0",
"style-loader": "^2.0.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.2"
}
}