forked from immersive-web/webvr-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.04 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-polyfill",
"version": "0.9.0",
"homepage": "https://github.com/borismus/webvr-polyfill",
"authors": [
"Boris Smus <boris@smus.com>",
"Brandon Jones <tojiro@gmail.com>"
],
"description": "Use WebVR today, on mobile or desktop, without requiring a special browser build.",
"dependencies": {
"es6-promise": "^3.0.2"
},
"devDependencies": {
"browserify": "latest",
"derequire": "latest",
"watchify": "latest"
},
"main": "build/webvr-polyfill.js",
"keywords": [
"vr",
"webvr"
],
"license": "Apache-2.0",
"scripts": {
"build": "browserify src/main.js | derequire > build/webvr-polyfill.js",
"watch": "watchify src/main.js -v -d -o build/webvr-polyfill.js",
"copy": "cp build/webvr-polyfill.js ../webvr-boilerplate/node_modules/webvr-polyfill/build/webvr-polyfill.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/borismus/webvr-polyfill.git"
},
"author": "Boris Smus",
"bugs": {
"url": "https://github.com/borismus/webvr-polyfill/issues"
}
}