-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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
{
"name": "picklog",
"version": "2.3.2",
"description": "Pickup the logs that you filter, so you can generation changelog from it.",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles",
"lint": "eslint **/*.js",
"changelog": "node ./bin/picklog.js -l -w CHANGELOG.md",
"preversion": "npm run lint && npm test",
"version": "npm run changelog && git add -A .",
"postversion": "npm publish . && git push && git push --tags"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"bin": {
"picklog": "./bin/picklog.js"
},
"author": "BearJ",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"object.values": "^1.1.0",
"ora": "^3.4.0",
"simple-git": "^1.107.0",
"yargs": "^13.2.4"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"husky": "^1.3.1",
"jest": "^24.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/BearJ/picklog.git"
},
"keywords": [
"changelog",
"git log",
"log",
"generate log"
]
}