forked from favoloso/conventional-changelog-emoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "@favoloso/conventional-changelog-emoji",
"version": "0.10.0",
"description": "Conventional Changelog with Emojis support",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/favoloso/conventional-changelog-emoji.git"
},
"author": "Leonardo Ascione <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest --runInBand",
"test:ci": "jest --ci --runInBand --coverage",
"release": "release-it"
},
"files": [
"/src",
"index.js"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"conventional-commits-parser": "^3.0.1",
"cosmiconfig": "^5.1.0",
"emoji-regex": "^7.0.3",
"git-semver-tags": "^2.0.2",
"q": "^1.5.1"
},
"devDependencies": {
"@favoloso/conventional-changelog-emoji": "file:./",
"conventional-changelog-cli": "^2.0.12",
"conventional-changelog-core": "^3.1.6",
"conventional-recommended-bump": "^4.0.4",
"coveralls": "^3.0.3",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lodash": "^4.17.11",
"prettier": "1.16.4",
"pretty-quick": "^1.10.0",
"release-it": "^10.1.0",
"shelljs": "^0.8.3"
},
"bin": {
"emoji-commit-lint": "./src/bin/emoji-commit-lint.js"
},
"favolosoEmoji": {},
"husky": {
"hooks": {
"commit-msg": "emoji-commit-lint",
"pre-commit": "pretty-quick --staged"
}
}
}