forked from brightcove-archive/videojs-vr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.08 KB
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
55
56
57
58
59
{
"name": "videojs-vr",
"version": "0.1.1",
"author": {
"name": "Sean Lawrence",
"email": "lawrensm@gmail.com"
},
"contributors": [
{
"name": "Joe Wilson",
"email": "joe@cantina.co"
},
{
"name": "Marcela Rodriguez",
"email": "marcela@cantina.co"
}
],
"engines": {
"node": ">= 5.0.0"
},
"scripts": {
"watch-js": "npm run build-js & watchify ./src/js/player.js -d -p [minifyify --no-map] -o ./dist/player.js",
"watch-js-no-min": "npm run build-js-no-min & watchify ./src/js/player.js -o ./dist/player.js",
"watch-css": "watchify -g browserify-css ./src/js/player-skin.js -o ./dist/player-skin.js -v & npm run copy-css -- --watch",
"watch": "npm run watch-js & npm run watch-css",
"build-js": "browserify ./src/js/player.js -v -d -p [minifyify --no-map] > ./dist/player.js",
"build-js-no-min": "browserify ./src/js/player.js > ./dist/player.full.js",
"build-player-skin": "browserify -g browserify-css ./src/js/player-skin.js -o ./dist/player-skin.js",
"build-css": "npm run build-player-skin & npm run copy-css-build",
"build": "npm run build-js & npm run build-css",
"copy-css": "cpx ./src/css/360-skin.css ./dist/",
"copy-css-build": "cp ./src/css/360-skin.css ./dist/",
"postinstall": "npm run build",
"serve-no-min": "npm run watch-js-no-min & npm run watch-css & nodemon ./server.js",
"serve": "npm run watch & nodemon ./server.js"
},
"devDependencies": {
"browserify": "13.0.0",
"browserify-css": "0.9.1",
"cors": "2.7.1",
"cp": "0.2.0",
"cpx": "1.3.1",
"dashjs": "2.1.1",
"express": "4.13.4",
"express-http-proxy": "0.6.0",
"minifyify": "7.3.3",
"mobile-detect": "^1.3.2",
"native-promise-only": "0.8.1",
"nodemon": "1.9.1",
"three": "^0.76.1",
"ua-parser-js": "0.7.10",
"video.js": "5.9.2",
"videojs-contrib-dash": "2.1.0",
"videojs-errors": "1.0.4",
"watchify": "3.7.0",
"webvr-boilerplate": "git://github.com/arilaen/webvr-boilerplate.git",
"webvr-polyfill": "git://github.com/arilaen/webvr-polyfill.git"
}
}