-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.56 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-yt-style",
"version": "0.1.10",
"description": "VideoJS CSS Skin like YT",
"main": "dist/videojs-yt-style.cjs.js",
"module": "dist/videojs-yt-style.es.js",
"repository": "https://github.com/paidless/videojs-yt-style.git",
"browser": "dist/videojs-yt-style.js",
"generator-videojs-plugin": {
"version": "8.0.0"
},
"scripts": {
"predeploy": "npm run build-prod",
"deploy": "node gh-pages.js",
"build": "npm-run-all -s clean -p build:*",
"build-prod": "cross-env-shell NO_TEST_BUNDLE=1 'npm run build'",
"build-test": "cross-env-shell TEST_BUNDLE_ONLY=1 'npm run build'",
"build-offline": "npm run build-prod && node build-offline.js && chalk -t \"{bgBlack build-offline} {bgYellow INFO} {magenta success} Build offline {green OK}\"",
"build:css": "postcss -o dist/videojs-yt-style.css --config scripts/postcss.config.js src/plugin.css",
"build:js": "rollup -c scripts/rollup.config.js",
"build:lang": "vjslang --dir dist/lang",
"clean": "shx rm -rf ./dist ./test/dist ./cjs ./es && shx mkdir -p ./dist ./test/dist ./cjs ./es",
"docs": "npm-run-all docs:*",
"docs:api": "jsdoc src -r -d docs/api",
"docs:toc": "doctoc --notitle README.md",
"lint": "vjsstandard",
"server": "karma start scripts/karma.conf.js --singleRun=false --auto-watch",
"start": "npm-run-all -p server watch",
"test": "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-all build-prod && vjsverify --verbose"
},
"engines": {
"node": ">=14",
"npm": ">=6"
},
"keywords": [
"videojs",
"videojs-plugin"
],
"author": "Ami-OS <[email protected]>",
"license": "UNLICENSED",
"vjsstandard": {
"ignore": [
"es",
"cjs",
"dist",
"docs",
"test/dist"
]
},
"files": [
"CONTRIBUTING.md",
"cjs/",
"dist/",
"docs/",
"es/",
"index.html",
"scripts/",
"src/",
"test/"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "vjsstandard --fix",
"README.md": "doctoc --notitle"
},
"dependencies": {
"@samueleastdev/videojs-dash-hls-bitrate-switcher": "^1.0.7",
"@samueleastdev/videojs-settings-menu": "^0.0.9",
"global": "^4.4.0",
"video.js": "^7.20.2",
"videojs-contrib-quality-levels": "^2.1.0",
"videojs-hotkeys": "^0.2.28",
"videojs-mobile-ui": "^0.7.0"
},
"devDependencies": {
"@babel/runtime": "^7.14.0",
"@videojs/generator-helpers": "~2.0.2",
"chalk-cli": "^5.0.0",
"eruda": "^2.5.0",
"eruda-code": "^2.0.0",
"eruda-dom": "^2.0.0",
"eruda-features": "^2.0.0",
"eruda-fps": "^2.0.0",
"eruda-memory": "^2.0.0",
"eruda-orientation": "^2.0.0",
"eruda-touches": "^2.0.0",
"gh-pages": "^4.0.0",
"jsdoc": "~3.6.6",
"karma": "^6.3.2",
"postcss": "^8.2.13",
"postcss-cli": "^8.3.1",
"rollup": "^2.46.0",
"sinon": "^9.1.0",
"videojs-generate-karma-config": "~8.0.0",
"videojs-generate-postcss-config": "~3.0.0",
"videojs-generate-rollup-config": "~6.2.0",
"videojs-generator-verify": "~3.0.3",
"videojs-languages": "^2.0.0",
"videojs-standard": "^8.0.4"
}
}