forked from videojs/videojs-vr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 3.46 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "videojs-vr",
"version": "1.5.0",
"description": "A plugin to add 360 and VR video support to video.js.",
"author": {
"name": "James Broberg",
"email": "james.broberg@metacdn.com"
},
"contributors": [
{
"name": "Sean Lawrence",
"email": "lawrensm@gmail.com"
},
{
"name": "Mitchell Trent",
"email": "mitch@tofi.com.au"
},
{
"name": "Brandon Casey",
"email": "branonocasey@gmail.com"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/videojs/videojs-vr"
},
"main": "dist/videojs-vr.cjs.js",
"module": "dist/videojs-vr.es.js",
"generator-videojs-plugin": {
"version": "7.3.2"
},
"scripts": {
"prebuild": "npm run clean",
"build": "npm-run-all -p build:*",
"build:css": "node-sass src/plugin.scss dist/videojs-vr.css --output-style=compressed --linefeed=lf",
"build:js": "rollup -c scripts/rollup.config.js",
"build:lang": "vjslang --dir dist/lang",
"clean": "shx rm -rf ./dist ./test/dist",
"postclean": "shx mkdir -p ./dist ./test/dist",
"docs": "npm-run-all docs:*",
"docs:api": "jsdoc src -g plugins/markdown -r -d docs/api",
"docs:toc": "doctoc README.md",
"lint": "vjsstandard",
"server": "karma start scripts/karma.conf.js --singleRun=false --auto-watch",
"start": "npm-run-all -p server watch",
"pretest": "npm-run-all lint build",
"test": "karma start scripts/karma.conf.js",
"posttest": "shx cat test/dist/coverage/text.txt",
"update-changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s",
"preversion": "npm test",
"version": "is-prerelease || npm run update-changelog && git add CHANGELOG.md",
"watch": "npm-run-all -p watch:*",
"watch:css": "npm run build:css -- -w",
"watch:js": "npm run build:js -- -w",
"prepublishOnly": "npm run build && vjsverify"
},
"keywords": [
"videojs",
"videojs-plugin"
],
"vjsstandard": {
"ignore": [
"dist",
"docs",
"test/dist"
]
},
"files": [
"CONTRIBUTING.md",
"dist/",
"docs/",
"index.html",
"scripts/",
"src/",
"test/"
],
"greenkeeper": {
"ignore": [
"three"
]
},
"dependencies": {
"global": "^4.3.2",
"omnitone": "^1.3.0",
"three": "0.93.0",
"video.js": "^6 || ^7",
"webvr-polyfill": "0.10.6"
},
"devDependencies": {
"conventional-changelog-cli": "^2.0.1",
"conventional-changelog-videojs": "^3.0.0",
"doctoc": "^1.3.1",
"husky": "^1.0.0-rc.13",
"jsdoc": "https://github.com/BrandonOCasey/jsdoc#feat/plugin-from-cli",
"karma": "^3.0.0",
"lint-staged": "^7.2.2",
"node-sass": "^4.5.3",
"not-prerelease": "^1.0.1",
"npm-merge-driver-install": "^1.0.0",
"npm-run-all": "^4.1.5",
"pkg-ok": "^2.2.0",
"postcss-cli": "^6.0.0",
"rollup": "^0.66.0",
"rollup-plugin-re": "^1.0.6",
"shx": "^0.3.2",
"sinon": "^6.1.5",
"videojs-generate-karma-config": "~3.0.0",
"videojs-generate-postcss-config": "~2.0.1",
"videojs-generate-rollup-config": "~2.2.0",
"videojs-generator-verify": "~1.0.3",
"videojs-languages": "^1.0.0",
"videojs-standard": "~7.1.0"
},
"browserslist": [
"defaults",
"ie 11"
],
"lint-staged": {
"*.js": [
"vjsstandard --fix",
"git add"
],
"README.md": [
"npm run docs:toc",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}