forked from googlearchive/webvr-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "webvr-ui",
"version": "0.10.0",
"description": "Library that creates a UI wrapping the WebVR experience",
"main": "src/index.js",
"authors": [
"Kyle Phillips <[email protected]>",
"Jonas Jongejan <[email protected]>"
],
"repository" : {
"type" : "git",
"url" : "https://github.com/googlevr/webvr-ui.git"
},
"scripts": {
"build": "npm run browserify & npm run browserifymin",
"browserify": "browserify src/index.js --standalone webvrui | derequire > build/webvr-ui.js",
"browserifymin": "browserify -g uglifyify src/index.js --standalone webvrui | derequire > build/webvr-ui.min.js",
"start": "budo src/index.js:build/webvr-ui.js --live --verbose --port 3000 -- --standalone webvrui",
"lint": "eslint -c .eslintrc.json src",
"prepublish": "npm run lint && npm run build"
},
"dependencies": {
"eventemitter3": "^2.0.2",
"screenfull": "^3.0.2"
},
"devDependencies": {
"babel-preset-es2015": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^14.0.0",
"budo": "^9.2.1",
"derequire": "^2.0.3",
"eslint": "^3.13.1",
"eslint-config-google": "^0.7.1",
"tape": "^4.6.2",
"uglifyify": "^3.0.4"
},
"keywords": [
"vr",
"webvr"
],
"license": "Apache-2.0",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
}
}