forked from ahmadawais/Emoji-Log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) Β· 1.3 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
{
"private": true,
"name": "emoji-log",
"version": "0.7.0",
"description": "πEmoji-Log β An Emoji Git commit log messages spec standard. [ π¦ππππβ
]",
"repository": {
"type": "git",
"url": "git+https://github.com/ahmadawais/Emoji-Log.git"
},
"keywords": [
"emoji",
"Emoji log",
"git commit",
"git commit log"
],
"author": "Ahmad Awais (https://twitter.com/MrAhmadAwais/)",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"auto-changelog": "^1.8.0",
"commitlint-config-emoji-log": "^0.4.0",
"husky": "^1.0.0-rc.14",
"lerna": "^3.4.0",
"release-it": "^7.6.1"
},
"commitlint": {
"extends": [
"emoji-log"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"log": "auto-changelog && git add . && git ci -m ' π DOC: Update the changelog' && git push",
"release": "lerna publish --no-git-tag-version && release-it",
"release-minor": "lerna publish && release-it minor",
"release-major": "lerna publish && release-it major",
"release-dry": "release-it --dry-run"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": ".clTemplate.hbs",
"commitLimit": false,
"package": true,
"replaceText": {
"FIX: ": "",
"NEW: ": "",
"IMPROVE: ": "",
"DOC: ": ""
}
}
}