-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "semantic-release-conventional-commits",
"version": "0.0.0-development",
"description": "Semantic release commit analyzer support for all of the conventional commit message types.",
"main": "index.js",
"scripts": {
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint .",
"test": "istanbul cover --print both nodeunit test/index.js",
"precommit": "npm run lint",
"prepush": "npm test",
"commitmsg": "validate-commit-msg",
"semantic-release": "semantic-release"
},
"keywords": [
"semantic-release",
"analyzeCommits",
"analyzer",
"commit",
"message"
],
"author": "Elliott Foster <[email protected]> (http://codebrew.com/)",
"license": "ISC",
"dependencies": {
"conventional-commits-parser": "^3.0.0"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.4.1",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"husky": "^0.14.3",
"istanbul": "^1.1.0-alpha.1",
"nodeunit": "^0.11.0",
"semantic-release": "^15.0.0",
"validate-commit-msg": "^2.11.1"
},
"repository": {
"type": "git",
"url": "https://github.com/elliotttf/semantic-release-conventional-commits.git"
}
}