-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
32 lines (32 loc) · 1.08 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
{
"scripts": {
"asbuild:untouched": "asc assembly/index.ts -b build/untouched.wasm -t build/untouched.wat --sourceMap --validate --debug",
"asbuild:optimized": "asc assembly/index.ts -b build/optimized.wasm -t build/optimized.wat --sourceMap --validate --optimize",
"asbuild": "npm run asbuild:untouched",
"test": "jest",
"codegen": "cd codegen && npm run codegen",
"bundle": "rollup --config",
"watch:asbuild": "nodemon --watch assembly -e ts -x \"npm run asbuild\"",
"watch:test": "nodemon --watch build --watch test -e wasm,js -x \"npm run test\"",
"watch:web": "nodemon --watch web --ignore web/bundle.js -x \"npm run bundle\""
},
"devDependencies": {
"@assemblyscript/loader": "^0.8.1",
"assemblyscript": "^0.8.1",
"dasm": "^6.0.1",
"jest": "^24.9.0",
"nodemon": "^2.0.1",
"rollup": "^1.27.5",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"jest": {
"testRegex": [
"./test/.*.js$",
"./build/.*.wasm$"
],
"watchPathIgnorePatterns": [
"./assembly/*"
]
}
}