forked from borismus/webvr-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "webvr-boilerplate",
"version": "0.3.8",
"description": "A starting point for web-based VR experiences that work in both Cardboard and Oculus.",
"main": "src/main.js",
"directories": {
"test": "test"
},
"dependencies": {
"es6-promise": "^3.0.2",
"webvr-polyfill": "^0.2.4",
"three": "^0.73"
},
"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 build/webvr-manager.js",
"test": "browserify test/device-info-test.js > build/device-info-test.js"
},
"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"
}