-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 1.79 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
{
"name": "videojs-generate-rollup-config",
"version": "7.0.2",
"description": "Generate a standard rollup config, so that plugins don't need the same script in every repository.",
"main": "index.js",
"scripts": {
"lint": "vjsstandard",
"test": "npm run test:unit && npm run test:verify",
"test:unit": "npm run lint",
"test:verify": "vjsverify --skip-es-check --verbose",
"preversion": "npm test",
"version": "is-prerelease || npm run update-changelog && git add CHANGELOG.md",
"update-changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s",
"prepublishOnly": "npm run test:verify"
},
"lint-staged": {
"*.js": [
"vjsstandard --fix"
],
"README.md": [
"doctoc"
]
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/videojs/videojs-generate-rollup-config"
},
"author": "Brandon Casey <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/videojs/videojs-generate-rollup-config/issues"
},
"homepage": "https://github.com/videojs/videojs-generate-rollup-config",
"dependencies": {
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@videojs/babel-config": "^1.0.2",
"rollup-plugin-external-globals": "^0.6.1",
"rollup-plugin-istanbul": "^3.0.0",
"rollup-plugin-terser": "^7.0.2"
},
"peerDependencies": {
"rollup": "^2.26.11"
},
"devDependencies": {
"@videojs/generator-helpers": "^3.2.0",
"rollup": "^2.79.1",
"videojs-generator-verify": "^4.0.1",
"videojs-standard": "^9.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}