forked from googlearchive/vrview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.21 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
{
"name": "vrview",
"version": "0.2.0",
"description": "Embed VR content into your webpage.",
"main": "index.js",
"//": "TODO: Re-add dependencies once vanilla versions can be used again.",
"dependencies": {
"es6-promise": "^3.0.2"
},
"devDependencies": {},
"scripts": {
"copy": "cp ../webvr-boilerplate/build/webvr-manager.js node_modules/webvr-boilerplate/build/",
"build": "browserify src/main.js | derequire > build/vrview.js",
"build-min": "browserify src/main.js | derequire | uglifyjs -c > build/vrview.min.js",
"build-analytics": "browserify src/with-analytics.js | derequire > build/vrview-analytics.js",
"build-analytics-min": "browserify src/with-analytics.js | derequire | uglifyjs -c > build/vrview-analytics.min.js",
"build-dms": "uglifyjs scripts/js/device-motion-sender.js > build/device-motion-sender.min.js",
"watch": "watchify src/main.js -v -d -o build/vrview.js",
"deploy": "./scripts/deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/google/vrview.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/google/vrview/issues"
},
"homepage": "https://github.com/google/vrview#readme"
}