This repository has been archived by the owner on Aug 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
76 lines (76 loc) · 1.65 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
{
"name": "npm-merge-driver",
"version": "2.3.6",
"description": "git merge driver for automatically merging lockfiles",
"bin": "index.js",
"main": "index.js",
"files": [
"*.js",
"npm-merge-driver.1"
],
"man": "./npm-merge-driver.1",
"scripts": {
"precommit": "lint-staged",
"docs": "tail -n +2 README.md | marked-man --manual 'User Commands' --version \"$npm_package_name@$npm_package_version\" > npm-merge-driver.1",
"prerelease": "npm t",
"postrelease": "npm publish && git push --follow-tags",
"pretest": "standard",
"release": "standard-version -s",
"test": "tap -J --coverage test/*.js"
},
"repository": "https://github.com/npm/npm-merge-driver",
"keywords": [
"npm",
"lockfiles",
"package-lock.json",
"npm-shrinkwrap.json",
"shrinkwrap",
"pkglock",
"git",
"merge",
"driver",
"conflict",
"merge conflict",
"resolve conflict",
"automerge",
"autoresolve"
],
"author": {
"name": "Kat Marchán",
"email": "[email protected]",
"twitter": "maybekatz"
},
"license": "ISC",
"dependencies": {
"mkdirp": "^0.5.1",
"yargs": "^10.0.3"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"marked-man": "^0.2.1",
"nyc": "^11.3.0",
"prettier-standard": "^7.0.3",
"standard": "^10.0.3",
"standard-version": "^4.1.0",
"tap": "^11.0.0"
},
"config": {
"nyc": {
"exclude": [
"node_modules/**",
"test/**"
]
}
},
"lint-staged": {
"*.js": [
"prettier-standard",
"git add"
]
},
"bundleDependencies": [
"yargs",
"mkdirp"
]
}