-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathpackage.json
34 lines (34 loc) · 1.06 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
{
"name": "three-jsnext",
"description": "three.js, but futuristic",
"version": "0.3.0",
"jsnext:main": "./src/index.js",
"main": "./build/three.js",
"repository": "https://github.com/rollup/three-jsnext",
"scripts": {
"generate": "node scripts/generate",
"prepublish": "npm test",
"build": "npm run generate && npm run bundle && uglifyjs -c -m -o build/three.min.js -- build/three.js",
"bundle": "rollup -c",
"test": "node build/three.js",
"pretest": "npm run build",
"update-three": "rm -rf three.js && git clone https://github.com/mrdoob/three.js && cd three.js && git checkout dev && cd .. && rm -rf examples && cp -r three.js/examples examples",
"examples": "open http://localhost:8080/examples && http-server"
},
"files": [
"src/",
"build/",
"examples/",
"README.md"
],
"devDependencies": {
"acorn": "^3.1.0",
"buble": "^0.12.4",
"console-group": "^0.2.1",
"http-server": "^0.9.0",
"magic-string": "^0.15.2",
"rollup": "^0.33.1",
"sander": "^0.5.1",
"uglify-js": "^2.6.2"
}
}