-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.47 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
{
"name": "videojs-per-source-behaviors",
"version": "3.0.1",
"description": "A Video.js plugin for enhancing a player with behaviors related to changing media sources.",
"author": "Brightcove, Inc.",
"license": "Apache-2.0",
"main": "dist/videojs-per-source-behaviors.cjs.js",
"module": "dist/videojs-per-source-behaviors.es.js",
"scripts": {
"prebuild": "npm run clean",
"build": "npm-run-all -p build:*",
"build:js": "rollup -c scripts/rollup.config.js",
"clean": "shx rm -rf ./dist ./test/dist",
"postclean": "shx mkdir -p ./dist ./test/dist",
"docs": "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:js": "npm run build:js -- -w",
"posttest": "shx cat test/dist/coverage/text.txt",
"prepublishOnly": "npm run build && vjsverify --skip-es-check"
},
"keywords": [
"videojs",
"videojs-plugin"
],
"files": [
"CONTRIBUTING.md",
"dist/",
"docs/",
"index.html",
"scripts/",
"src/",
"test/"
],
"dependencies": {
"global": "^4.4.0",
"video.js": "^7 || ^8"
},
"devDependencies": {
"conventional-changelog-cli": "^2.1.1",
"conventional-changelog-videojs": "^3.0.2",
"doctoc": "^1.4.0",
"husky": "^1.3.1",
"karma": "^3.1.4",
"lint-staged": "^8.2.1",
"not-prerelease": "^1.0.1",
"npm-merge-driver-install": "^1.1.1",
"npm-run-all": "^4.1.5",
"pkg-ok": "^2.3.1",
"rollup": "^2.61.1",
"shx": "^0.3.3",
"sinon": "^6.3.5",
"videojs-generate-karma-config": "^5.3.1",
"videojs-generate-rollup-config": "^7.0.0",
"videojs-generator-verify": "^4.0.1",
"videojs-standard": "^9.0.1"
},
"engines": {
"node": ">=4.4.0"
},
"generator-videojs-plugin": {
"version": "7.3.2"
},
"vjsstandard": {
"ignore": [
"dist",
"docs",
"test/dist"
]
},
"lint-staged": {
"*.js": [
"vjsstandard --fix",
"git add"
],
"README.md": [
"npm run docs:toc",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}