-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 849 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 849 Bytes
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": "ashes3d",
"version": "0.5.0",
"description": "An 3D engine for indie games",
"main": "build/ashes.main.js",
"repository": "https://github.com/but0n/Ashes.git",
"author": "but0n <but0n@icloud.com>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/webgl2": "^0.0.4",
"concurrently": "^4.1.0",
"gl-matrix": "2.8.1",
"http-server": "^0.11.1",
"madge": "^4.0.1",
"rollup": "^1.1.0",
"rollup-plugin-glsl": "^1.3.0",
"rollup-plugin-replace": "^2.1.1",
"rollup-plugin-typescript2": "^0.18.1",
"typescript": "^3.2.2"
},
"scripts": {
"prebuild": "rm -rf build",
"build": "rollup -c && madge ./build --circular",
"dev": "concurrently -n \"HTTP,WATCH\" -c \"bgCyan.bold,bgRed.bold\" \"http-server -s -o -c-1\" \"rollup -cw\"",
"test": "rollup -c"
}
}