-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
28 lines (28 loc) · 893 Bytes
/
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
{
"name": "n-body-wasm-canvas",
"description": "A n-body simulation, calculated with wasm, and visualized with canvas",
"version": "1.0.0",
"scripts": {
"start": "http-server dist",
"build": "gulp build",
"build-assembly": "gulp build-assembly",
"build-rollup": "gulp build-rollup",
"dev": "gulp dev",
"dev-assembly": "gulp dev-assembly",
"dev-rollup": "gulp dev-rollup",
"dev-serve": "gulp dev-serve"
},
"devDependencies": {
"assemblyscript": "github:AssemblyScript/assemblyscript#22c4cf42f05bd8610e5f8924d27a5b8636405a6d",
"gulp": "^3",
"gulp-gh-pages": "^0.5.4",
"gulp-watch": "^5.0.1",
"gulp-webserver": "^0.9.1",
"http-server": "^0.11.1",
"rollup": "^1.21.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.1.0",
"rollup-plugin-terser": "^5.0.0",
"typescript": "^3.6.3"
}
}