-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
113 lines (113 loc) · 3.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
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
{
"name": "videojs-max-quality-selector",
"version": "1.0.0",
"description": "A Videojs Plugin to help you list out resolutions and bit-rates from Live, Adaptive and Progressive streams.",
"main": "dist/videojs-max-quality-selector.cjs.js",
"module": "dist/videojs-max-quality-selector.es.js",
"homepage": "https://github.com/FoxCouncil/videojs-max-quality-selector#videojs-max-quality-selector",
"bugs": "https://github.com/FoxCouncil/videojs-max-quality-selector/issues",
"author": "Fox <[email protected]> (https://github.com/FoxCouncil)",
"license": "MIT",
"keywords": [
"videojs",
"videojs-plugin",
"resolutions",
"bit-rates",
"progressive-streams",
"adaptive-streams",
"live-streams",
"live",
"adaptive",
"progressive",
"live-video",
"adaptive-video",
"progressive-video",
"hls",
"mp4"
],
"generator-videojs-plugin": {
"version": "7.6.3"
},
"browserslist": [
"defaults"
],
"scripts": {
"prebuild": "npm run clean",
"build": "npm-run-all -p build:*",
"build:css": "postcss -o dist/videojs-max-quality-selector.css --config scripts/postcss.config.js src/plugin.css",
"build:js": "rollup -c scripts/rollup.config.js",
"clean": "shx rm -rf ./dist ./test/dist",
"postclean": "shx mkdir -p ./dist ./test/dist",
"docs": "npm-run-all docs:*",
"docs:clean": "shx rm -rf ./docs",
"docs:api": "jsdoc src README.md -c ./scripts/jsdoc.conf.js -t ./scripts/jsdoctmpl -r -d docs/api",
"docs:toc": "doctoc --notitle README.md",
"lint": "vjsstandard src/**/*.js",
"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": "npm-run-all test:*",
"posttest": "shx cat test/dist/coverage/text.txt",
"test:unit": "karma start scripts/karma.conf.js",
"test:verify": "vjsverify --verbose",
"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-all build"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"vjsstandard": {
"ignore": [
"dist",
"docs",
"test/dist"
]
},
"files": [
"CONTRIBUTING.md",
"dist/",
"docs/",
"index.html",
"scripts/",
"src/",
"test/"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"vjsstandard --fix",
"git add"
],
"README.md": [
"doctoc --notitle",
"git add"
]
},
"dependencies": {
"global": "^4.4.0",
"video.js": "^8"
},
"devDependencies": {
"@videojs/generator-helpers": "~2.0.1",
"jsdoc": "^3.6.6",
"karma": "^6.3.2",
"postcss-cli": "^8.3.1",
"rollup": "^2.79.1",
"sinon": "^10.0.0",
"videojs-generate-karma-config": "^8",
"videojs-generate-postcss-config": "^3",
"videojs-generate-rollup-config": "^7",
"videojs-generator-verify": "^4",
"videojs-standard": "^9"
}
}