-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.31 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
{
"name": "webvr-boilerplate",
"version": "0.4.9",
"description": "A starting point for web-based VR experiences that work in both Cardboard and Oculus.",
"main": "build/webvr-manager.js",
"directories": {
"test": "test"
},
"dependencies": {
"es6-promise": "^4.0.5",
"three": "^0.81.2",
"three-firstperson-vr-controls": "^0.1.0",
"webvr-polyfill": "^0.9.3"
},
"devDependencies": {
"browserify": "latest",
"derequire": "latest",
"watchify": "latest"
},
"scripts": {
"build": "browserify src/webvr-manager.js --standalone WebVRManager | derequire > build/webvr-manager.js",
"watch": "watchify src/webvr-manager.js --standalone WebVRManager -v -d -o 'derequire > build/webvr-manager.js'",
"test": "browserify test/device-info-test.js > build/device-info-test.js",
"copy-polyfill": "cp ../webvr-polyfill/build/webvr-polyfill.js node_modules/webvr-polyfill/build/webvr-polyfill.js",
"copy-three": "./scripts/copy-three.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/borismus/webvr-boilerplate.git"
},
"keywords": [
"vr"
],
"author": "Boris Smus",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/borismus/webvr-boilerplate/issues"
},
"homepage": "https://github.com/borismus/webvr-boilerplate#readme"
}