-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 1.76 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "gitlogme",
"version": "1.1.1",
"description": "git --log your last month to a file",
"license": "MIT",
"main": "index.js",
"homepage": "https://ricardocasares.github.io/gitlogme/",
"author": {
"name": "Ricardo Casares",
"url": "https://analogic.al"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ricardocasares/gitlogme.git"
},
"bugs": {
"url": "https://github.com/ricardocasares/gitlogme/issues"
},
"bin": {
"gitlogme": "index.js"
},
"scripts": {
"commit": "npx git-cz",
"release": "npx semantic-release@beta",
"prettier": "npx prettier --write **/*.js"
},
"dependencies": {
"chalk": "^2.0.0",
"cli": "^1.0.0",
"cross-spawn-async": "^2.1.8",
"git-user-email": "^0.2.1",
"git-user-name": "^2.0.0",
"moment": "^2.11.1",
"open": "6.0.0",
"os-homedir": "^2.0.0",
"starwars": "^1.0.0"
},
"devDependencies": {
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0"
},
"release": {
"plugins": [
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/release-notes-generator"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run prettier",
"git add"
]
},
"contributors": [
{
"name": "Vadzim Yakushau",
"url": "https://github.com/rootical"
},
{
"name": "Andrii Lazurenko",
"url": "https://github.com/alazurenko"
}
],
"keywords": [
"git",
"log",
"pkup",
"changelog",
"work",
"samples",
"taxes",
"tax",
"pit"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}