-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
89 lines (89 loc) · 2.11 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
{
"name": "@brightcove/player-loader-webpack-plugin",
"version": "1.2.0",
"description": "The official webpack plugin for the Brightcove Player.",
"repository": "github:brightcove/player-loader-webpack-plugin",
"main": "src/index.js",
"scripts": {
"clean": "rm -f ./demo/dist.js",
"predemo": "npm run clean",
"demo": "webpack --config ./demo/webpack.config.js",
"docs": "npm-run-all docs:*",
"docs:toc": "doctoc README.md",
"test": "vjsstandard",
"lint": "vjsstandard",
"start": "npm run demo && npm run server",
"server": "http-server demo -p 9999",
"update-changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s",
"version": "is-prerelease || npm run update-changelog && git add CHANGELOG.md",
"prepublish": "not-in-install && pkg-ok || in-install"
},
"keywords": [
"brightcove",
"player",
"plugin",
"video",
"webpack"
],
"vjsstandard": {
"ignore": [
"demo/dist.js"
]
},
"author": "Brightcove, Inc.",
"license": "Apache-2.0",
"dependencies": {
"@brightcove/player-url": "^1.1.1",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"webpack": "^4.16.2"
},
"devDependencies": {
"conventional-changelog-cli": "^2.0.1",
"conventional-changelog-videojs": "^3.0.0",
"doctoc": "^1.3.1",
"global": "^4.3.2",
"http-server": "^0.11.1",
"husky": "^1.0.0-rc.13",
"in-publish": "^2.0.0",
"lint-staged": "^7.2.2",
"not-prerelease": "^1.0.1",
"npm-run-all": "^4.1.3",
"pkg-ok": "^2.2.0",
"shx": "^0.3.2",
"videojs-standard": "^8.0.2",
"webpack-cli": "^3.1.0",
"npm-merge-driver-install": "^1.0.0"
},
"generator-videojs-plugin": {
"version": "7.2.4"
},
"browserslist": [
"defaults",
"ie 11"
],
"files": [
"CONTRIBUTING.md",
"dist/",
"docs/",
"index.html",
"scripts/",
"src/",
"test/"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"vjsstandard --fix",
"git add"
],
"README.md": [
"npm run docs:toc",
"git add"
]
}
}