forked from videojs/video.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
190 lines (190 loc) · 6.79 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
{
"name": "video.js",
"description": "An HTML5 video player that supports HLS and DASH with a common API and skin.",
"version": "7.9.2",
"main": "./dist/video.cjs.js",
"module": "./dist/video.es.js",
"style": "./dist/video-js.css",
"copyright": "Copyright Brightcove, Inc. <https://www.brightcove.com/>",
"license": "Apache-2.0",
"keywords": [
"dash",
"hls",
"html5",
"player",
"video",
"videojs"
],
"homepage": "https://videojs.com",
"author": "Steve Heffernan",
"scripts": {
"sandbox": "node build/sandbox.js",
"prestart": "npm-run-all sandbox",
"start": "npm-run-all -p watch karma-server",
"clean": "shx rm -rf ./dist ./test/dist ./docs/api ./lang/zh-Han*.json",
"postclean": "shx mkdir -p ./dist/lang ./test/dist",
"changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s",
"build": "npm-run-all build-dev minify copy zip",
"build-dev": "npm-run-all clean lint-errors build:js build:css build:lang build:test",
"build:test": "npm-run-all build:test:*",
"build:test:a11y": "shx cp sandbox/descriptions.html.example sandbox/descriptions.test-a11y.html",
"build:test:browserify": "browserify test/require/browserify.js -o test/dist/browserify.js",
"build:test:webpack": "webpack --hide-modules test/require/webpack.js test/dist/webpack.js",
"copy": "npm-run-all copy:*",
"copy:fonts": "shx cp -R node_modules/videojs-font/fonts dist/font",
"copy:examples": "shx cp -R docs/examples dist/",
"build:js": "rollup -c",
"build:css": "npm-run-all build:css:*",
"build:css:cdn": "sass --load-path='./' --no-source-map src/css/vjs-cdn.scss dist/alt/video-js-cdn.css",
"postbuild:css:cdn": "postcss --verbose --config postcss.config.js -d dist/alt dist/alt/video-js-cdn.css",
"build:css:default": "sass --load-path='./' --no-source-map src/css/vjs.scss dist/video-js.css",
"postbuild:css:default": "postcss --verbose --config postcss.config.js -d dist/ dist/video-js.css",
"prebuild:lang": "npm-run-all -s prebuild:lang:*",
"prebuild:lang:chinese-s": "shx cp lang/zh-CN.json lang/zh-Hans.json",
"prebuild:lang:chinese-t": "shx cp lang/zh-TW.json lang/zh-Hant.json",
"build:lang": "vjslang --dir dist/lang",
"postbuild:lang": "shx cp -R lang/* dist/lang/",
"minify": "npm-run-all minify:*",
"minify:js": "node build/minify.js",
"minify:css": "npm-run-all minify:css:*",
"minify:css:cdn": "cleancss dist/alt/video-js-cdn.css -o dist/alt/video-js-cdn.min.css",
"minify:css:default": "cleancss dist/video-js.css -o dist/video-js.min.css",
"watch": "npm-run-all -p watch:*",
"watch:lang": "chokidar --initial 'lang/**/!(zh-Hans|zh-Hant)*.json' -c 'npm run build:lang'",
"watch:rollup": "rollup -c -w --no-progress",
"watch:css": "npm-run-all -p build:css:default build:css:cdn watch:css:*",
"watch:css:default": "npm run build:css:default -- --watch",
"watch:css:cdn": "npm run build:css:cdn -- --watch",
"assets": "node build/assets.js",
"lint": "vjsstandard",
"lint-errors": "vjsstandard --errors",
"karma-server": "karma start test/karma.conf.js --singleRun=false --auto-watch",
"pretest": "npm run build-dev",
"test": "npm-run-all -p test:*",
"test:node-require": "node test/require/node.js",
"test:a11y": "node build/test-a11y.js",
"test:unit": "karma start test/karma.conf.js",
"docs": "npm-run-all clean docs:lint docs:api",
"docs:api": "jsdoc -c .jsdoc.json",
"postdocs:api": "node ./build/fix-api-docs.js",
"docs:lint": "remark -- './{,!(node_modules)/**/}!(CHANGELOG)*.md'",
"docs:fix": "remark --output -- './{,!(node_modules)/**/}!(CHANGELOG)*.md'",
"docs:lang": "node build/translations.js",
"netlify": "node ./build/netlify-docs.js",
"prepublishOnly": "run-p build",
"publish": "node build/gh-release.js",
"version": "is-prerelease || npm run changelog && git add CHANGELOG.md",
"zip": "cd dist && cross-env bestzip \"./video-js-${npm_package_version}.zip\" * && cd .."
},
"repository": {
"type": "git",
"url": "https://github.com/videojs/video.js.git"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"@videojs/http-streaming": "1.13.3",
"@videojs/xhr": "2.5.1",
"global": "4.3.2",
"keycode": "^2.2.0",
"safe-json-parse": "4.0.0",
"videojs-font": "3.2.0",
"videojs-vtt.js": "^0.15.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"access-sniff": "^3.2.0",
"autoprefixer": "^9.6.0",
"bestzip": "^2.1.4",
"browserify": "^16.2.3",
"chokidar-cli": "^1.2.2",
"clean-css-cli": "^4.3.0",
"cli-table": "^0.3.1",
"conventional-changelog-cli": "^2.0.21",
"conventional-changelog-videojs": "^3.0.0",
"cross-env": "^5.2.0",
"es5-shim": "^4.5.13",
"es6-shim": "^0.35.5",
"filesize": "^4.1.2",
"gh-release": "^3.5.0",
"humanize-duration": "^3.18.0",
"husky": "^1.2.0",
"jsdoc": "^3.6.2",
"karma": "^4.1.0",
"lint-staged": "^8.2.0",
"markdown-table": "^1.1.3",
"maxmin": "^2.1.0",
"not-prerelease": "^1.0.1",
"npm-merge-driver-install": "^1.1.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.2",
"qunit": "^2.9.2",
"remark-cli": "^6.0.1",
"remark-lint": "^6.0.4",
"remark-parse": "^6.0.3",
"remark-stringify": "^6.0.4",
"remark-toc": "^5.1.1",
"remark-validate-links": "^8.0.2",
"replace": "^1.1.0",
"rollup": "^2.2.0",
"rollup-plugin-alias": "^1.5.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-ignore": "^1.0.5",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-multi-entry": "^2.0.2",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-progress": "^1.1.1",
"rollup-plugin-stub": "^1.2.0",
"sass": "^1.21.0",
"semver": "^5.7.0",
"shelljs": "^0.8.3",
"shx": "^0.3.2",
"sinon": "^7.3.2",
"tui-jsdoc-template": "^1.2.2",
"uglify-js": "^3.6.0",
"unified": "^7.0.2",
"videojs-flash": "^2.2.0",
"videojs-generate-karma-config": "~5.2.1",
"videojs-languages": "^2.0.0",
"videojs-standard": "^8.0.3",
"webpack": "^1.15.0"
},
"vjsstandard": {
"ignore": [
"dist",
"docs",
"sandbox",
"test/dist",
"test/api",
"core.js",
"core.es.js"
]
},
"greenkeeper": {
"ignore": [
"webpack"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"vjsstandard --fix",
"git add"
],
"!(CHANGELOG)*.md": [
"remark --output --",
"git add"
],
"lang/**/!(zh-Hans|zh-Hant)*.json": [
"node build/translations.js",
"git add docs/translations-needed.md"
]
}
}