-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "dupe-code-savings",
"version": "0.0.0",
"description": "Determine wether code is duplicated in a browser bundle",
"main": "src/index.js",
"bin": {
"dupe-code-savings": "src/cli.js"
},
"scripts": {
"lint": "vjsstandard",
"prepublishOnly": "vjsverify --verbose --skip-es-check",
"test": "npm run lint",
"preversion": "npm test",
"version": "is-prerelease || npm run update-changelog && git add CHANGELOG.md",
"update-changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"vjsstandard --fix",
"git add"
],
"README.md": [
"doctoc --notitle",
"git add"
]
},
"engines": {
"node": "^10.16.0",
"npm": "^6.4.1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"acorn-walk": "8.2.0",
"brotli-size": "^4.0.0",
"gzip-size": "^5.1.1",
"source-map": "^0.7.3",
"terser": "^5.3.0"
},
"devDependencies": {
"@videojs/generator-helpers": "~1.1.1",
"videojs-generator-verify": "~1.2.0",
"videojs-standard": "^8.0.4"
}
}