-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.24 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.24 KB
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": "@danielbayerlein/git-pick",
"version": "1.1.1",
"description": "git cherry-pick to multiple branches",
"main": "lib/index.js",
"bin": {
"git-pick": "bin/cli.js"
},
"scripts": {
"lint": "standard --verbose | snazzy",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielbayerlein/git-pick.git"
},
"keywords": [
"Git",
"git-cherry-pick",
"cherry-pick"
],
"author": "Daniel Bayerlein",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielbayerlein/git-pick/issues"
},
"homepage": "https://github.com/danielbayerlein/git-pick#readme",
"devDependencies": {
"husky": "^4.2.3",
"jest": "^27.0.1",
"snazzy": "^9.0.0",
"standard": "^16.0.2"
},
"dependencies": {
"commander": "^6.0.0",
"log-symbols": "^4.0.0",
"shelljs": "^0.8.3",
"update-notifier": "^5.0.0"
},
"jest": {
"bail": true,
"collectCoverage": true,
"collectCoverageFrom": [
"**/{lib,bin}/*.js"
]
},
"standard": {
"env": [
"jest"
]
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}