-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.12 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
{
"name": "three-vr-viewer",
"author": "mflux",
"license": "MIT",
"version": "2.0.6",
"description": "One-liner to start THREE.js WebVR projects.",
"main": "three-vr-viewer.js",
"scripts": {
"publish": "npm run build-js-publish && npm run build-copy",
"dev": "npm run build-js-dev && npm run build-copy",
"build-js-dev": "browserify -t [ babelify --presets [ es2015 ] ] -s VRViewer index.js > three-vr-viewer.js",
"build-js-publish": "browserify -t [ babelify --presets [ es2015 ] ] -s VRViewer index.js > three-vr-viewer.js",
"build-copy": "copyfiles -f three-vr-viewer.js example/js",
"test": "cd example && wzrd example_node.js"
},
"dependencies": {
"events": "^1.0.2"
},
"devDependencies": {
"babel-preset-es2015": "^6.14.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"copyfiles": "^1.0.0",
"three": "^0.80.1",
"uglify-js": "^2.4.16",
"wzrd": "^1.4.0"
},
"bugs": {
"url": "https://github.com/mflux/three-vr-viewer/issues"
},
"homepage": "https://github.com/mflux/three-vr-viewer",
"keywords": [
"three",
"js",
"webvr",
"vr"
]
}