-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
{
"name": "garamon",
"version": "1.0.0",
"description": "3D Data Vis with three.js",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deathbearbrown/garamon.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/deathbearbrown/garamon/issues"
},
"homepage": "https://github.com/deathbearbrown/garamon#readme",
"dependencies": {
"jquery": "^2.1.4",
"three": "^0.71.0",
"browserify-shim": "^3.8.6"
},
"browser": {
"jquery": "./node_modules/jquery/dist/jquery.min.js",
"three": "./node_modules/three/three.js",
"Detector": "./js/vendor/Detector.js",
"GridHelper": "./js/vendor/GridHelper.js",
"OrbitControls": "./js/vendor/OrbitControls.js",
"Stats": "./js/vendor/Stats.js"
},
"browserify-shim": {
"jquery": "$",
"three": "global:THREE",
"Detector": {
"depends": [ "three:THREE" ]
},
"Stats": {
"depends": [ "three:THREE" ]
}
}
}