-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
38 lines (38 loc) · 1.16 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": "webvr-boilerplate",
"version": "0.4.4",
"description": "A starting point for web-based VR experiences that work in both Cardboard and Oculus.",
"main": "src/main.js",
"directories": {
"test": "test"
},
"dependencies": {
"three": "^0.76.1",
"webvr-polyfill": "^0.9.5"
},
"devDependencies": {
"browserify": "latest",
"derequire": "latest",
"watchify": "latest"
},
"scripts": {
"build": "browserify src/main.js | derequire > build/webvr-manager.js",
"watch": "watchify src/main.js -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"
}