-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1004 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1004 Bytes
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
{
"name": "git-overview",
"version": "1.1.0",
"description": "A quick git repo insight at terminal",
"main": "git-overview",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"commit": "git-cz",
"transfer": "bash ./script/transfer.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hankchanocd/git-overview.git"
},
"keywords": [
"git",
"overview",
"calendar",
"git-stats"
],
"author": "Hank Chan <hankchanth@icloud.com> (https://github.com/hankchanocd)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hankchanocd/git-overview/issues"
},
"homepage": "https://github.com/hankchanocd/git-overview#readme",
"devDependencies": {
"commitizen": "^3.0.4",
"cz-conventional-changelog": "^2.1.0",
"ghooks": "^2.0.4"
},
"config": {
"ghooks": {
"post-commit": "npm run transfer"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}