-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.92 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@ictrobot/c2wasm",
"version": "0.1.0",
"description": "C Compiler To WebAssembly",
"main": "dist/c2wasm.js",
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ictrobot/c2wasm.git"
},
"author": {
"name": "Ethan Jones",
"email": "ictrobot@outlook.com",
"url": "https://github.com/ictrobot/"
},
"license": "MIT",
"scripts": {
"test": "ts-node tools/bundle.ts && tsc && nyc ava",
"parser": "jison src/parsing/c_grammar.jison -o src/parsing/gen/c_grammar.js --default-action=none,merge",
"lint": "eslint .",
"bundle": "ts-node tools/bundle.ts",
"build": "ts-node tools/bundle.ts && webpack",
"dev": "ts-node tools/bundle.ts && webpack --mode development --watch"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@types/node": "^17.0.40",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"ava": "^4.3.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.17.0",
"html-webpack-plugin": "^5.5.0",
"jison-gho": "^0.6.1-216",
"lzutf8": "^0.6.2",
"nyc": "^15.1.0",
"ts-loader": "^9.3.0",
"ts-node": "^10.8.1",
"typescript": "~4.2.4",
"vis-network": "^9.1.2",
"wabt": "^1.0.29",
"wasm-feature-detect": "^1.2.11",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {},
"ava": {
"files": [
"tests/**/*",
"!tests/benchmark",
"!tests/**/index*"
],
"require": [
"source-map-support/register"
],
"typescript": {
"rewritePaths": {
"src/": "build/src/",
"tests/": "build/tests/"
},
"extensions": [
"ts"
],
"compile": false
},
"environmentVariables": {
"BROWSERSLIST_IGNORE_OLD_DATA": "true"
},
"timeout": "60s"
},
"publishConfig": {
"access": "public"
},
"files": [
"src/",
"dist/*.js*"
]
}