forked from mrdoob/three.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.05 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
{
"name": "three",
"version": "0.79.0",
"description": "JavaScript 3D library",
"main": "build/three.js",
"files": [
"package.json",
"LICENSE",
"README.md",
"build/three.js",
"build/three.min.js",
"src",
"examples/js",
"examples/fonts",
"bower.json"
],
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"scripts": {
"build": "rollup -c",
"build-min": "rollup -c && uglifyjs build/three.js -cm > build/three.min.js",
"dev": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/mrdoob/three.js"
},
"keywords": [
"three",
"three.js",
"3d",
"webgl"
],
"author": "mrdoob",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrdoob/three.js/issues"
},
"homepage": "http://threejs.org/",
"devDependencies": {
"argparse": "^1.0.3",
"chokidar-cli": "1.2.0",
"jscs": "^1.13.1",
"rollup": "^0.33.1",
"uglify-js": "^2.6.0"
}
}