-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.84 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
{
"name": "npm-merge-driver-install",
"version": "3.0.0",
"description": "A package to install npm-merge-driver locally and automatically.",
"repository": {
"type": "git",
"url": "https://github.com/brandonocasey/npm-merge-driver-install"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/brandonocasey/npm-merge-driver-install/issues"
},
"main": "src/index.js",
"bin": {
"npm-merge-driver-install": "src/install.js",
"npm-merge-driver-uninstall": "src/uninstall.js",
"npm-merge-driver-merge": "src/merge.js",
"npm-merge-driver-is-installed": "src/is-installed.js"
},
"homepage": "https://github.com/brandonocasey/npm-merge-driver-install",
"keywords": [],
"engine": {
"node": ">=8"
},
"scripts": {
"lint": "vjsstandard",
"test": "npm-run-all -c -p lint test:*",
"test:unit": "nyc --reporter=json --reporter=text ava --timeout 1m './test/*.test.js'",
"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": "vjsverify --skip-syntax --verbose"
},
"devDependencies": {
"@brandonocasey/spawn-promise": "^0.2.0",
"ava": "^3.15.0",
"conventional-changelog-cli": "^2.1.1",
"conventional-changelog-videojs": "^3.0.2",
"doctoc": "^2.1.0",
"husky": "^4.3.8",
"install-local": "^3.0.1",
"lint-staged": "^12.1.2",
"not-prerelease": "^1.0.1",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"shelljs": "^0.8.4",
"uuid": "^8.3.2",
"videojs-generator-verify": "~4.0.1",
"videojs-standard": "^9.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "vjsstandard --fix",
"README.md": "doctoc --no-title"
}
}