-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.39 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
{
"name": "rollup-plugin-worker-factory",
"version": "0.5.7",
"description": "Bundle web workers that work in nodejs and the browser, without a separate build target.",
"main": "src/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 --notitle"
},
"keywords": [
"rollup",
"rollup-plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/brandonocasey/rollup-plugin-worker-factory"
},
"author": "Brandon Casey <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/brandonocasey/rollup-plugin-worker-factory/issues"
},
"homepage": "https://github.com/brandonocasey/rollup-plugin-worker-factory",
"devDependencies": {
"@videojs/generator-helpers": "^2.0.1",
"videojs-generator-verify": "~3.0.1",
"videojs-standard": "^8.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"rollup": "^2.34.2"
}
}