forked from bkkl/bkkl.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.09 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
{
"name": "webvr-polyfill",
"version": "0.9.27",
"homepage": "https://github.com/googlevr/webvr-polyfill",
"authors": [
"Boris Smus <[email protected]>",
"Brandon Jones <[email protected]>"
],
"description": "Use WebVR today, on mobile or desktop, without requiring a special browser build.",
"dependencies": {
"eventemitter3": "^2.0.2",
"object-assign": "^4.0.1"
},
"devDependencies": {
"browserify": "latest",
"derequire": "latest",
"watchify": "latest",
"uglifyjs": "latest"
},
"main": "build/webvr-polyfill.js",
"keywords": [
"vr",
"webvr"
],
"license": "Apache-2.0",
"scripts": {
"watch": "watchify src/main.js --standalone WebVRPolyfill -v -d -o 'derequire > build/webvr-polyfill.js'",
"build": "browserify src/main.js --standalone WebVRPolyfill | derequire > build/webvr-polyfill.js",
"min": "browserify src/main.js --standalone WebVRPolyfill | derequire | uglifyjs -c > build/webvr-polyfill.min.js"
},
"repository": "googlevr/webvr-polyfill",
"bugs": {
"url": "https://github.com/googlevr/webvr-polyfill/issues"
}
}