This repository has been archived by the owner on May 28, 2024. It is now read-only.
forked from videojs/videojs-overlay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.03 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
{
"name": "@viostream/videojs-overlay",
"description": "A plugin to display simple overlays during video playback.",
"author": "Brightcove, Inc.",
"license": "Apache-2.0",
"version": "1.0.0",
"main": "dist/videojs-overlay.cjs.js",
"module": "dist/videojs-overlay.es.js",
"keywords": [
"videojs",
"videojs-plugin"
],
"repository": "https://github.com/viostream/videojs-overlay.git",
"vjsstandard": {
"ignore": [
"dist",
"docs",
"test/dist"
]
},
"scripts": {
"prebuild": "npm run clean",
"build-prod": "cross-env-shell NO_TEST_BUNDLE=1 'npm run build'",
"build": "npm-run-all -p build:*",
"build:css": "sass --load-path='./' --no-source-map src/plugin.scss dist/videojs-overlay.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: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",
"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",
"posttest": "shx cat test/dist/coverage/text.txt"
},
"dependencies": {
"global": "^4.4.0",
"video.js": "^6 || ^7"
},
"devDependencies": {
"@videojs/generator-helpers": "~2.0.2",
"conventional-changelog-cli": "^2.1.1",
"conventional-changelog-videojs": "^3.0.2",
"doctoc": "^2.0.1",
"husky": "^1.0.0-rc.13",
"jsdoc": "https://github.com/BrandonOCasey/jsdoc#feat/plugin-from-cli",
"karma": "^6.3.4",
"lint-staged": "^11.2.3",
"not-prerelease": "^1.0.1",
"npm-merge-driver-install": "^2.0.1",
"npm-run-all": "^4.1.5",
"pkg-ok": "^2.3.1",
"postcss-cli": "^8.3.1",
"rollup": "^2.58.0",
"shx": "^0.3.2",
"sinon": "^11.1.2",
"sass": "^1.34.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-standard": "^9.0.1"
},
"style": "dist/videojs-overlay.css",
"videojs-plugin": {
"style": "dist/videojs-overlay.css",
"script": "dist/videojs-overlay.min.js"
},
"files": [
"CONTRIBUTING.md",
"dist/",
"docs/",
"index.html",
"scripts/",
"src/",
"test/"
],
"generator-videojs-plugin": {
"version": "7.3.2"
},
"browserslist": [
"defaults",
"ie 11"
],
"lint-staged": {
"*.js": [
"vjsstandard --fix",
"git add"
],
"README.md": [
"npm run docs:toc",
"git add"
]
}
}