-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
{
"name": "semantic-commitlint",
"version": "0.0.0-semantic-release",
"description": "",
"main": "dist/lint-commits.plugin.js",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "echo \"Error: no test specified\"",
"build": "tsc",
"semantic-release": "semantic-release",
"semantic-commitlint": "node ./dist/cli.js"
},
"bin": {
"semantic-commitlint": "./dist/cli.js"
},
"author": "Adrian Carriger <[email protected]> (http://adriancarriger.com)",
"license": "MIT",
"dependencies": {
"@commitlint/cli": "^6.0.2",
"@commitlint/config-conventional": "^6.0.2",
"@commitlint/core": "^6.0.2",
"@commitlint/is-ignored": "^6.1.0",
"@semantic-release/error": "^2.1.0",
"@semantic-release/git": "^2.0.2",
"@semantic-release/github": "^4.0.2",
"commander": "^2.17.1",
"read-pkg-up": "^3.0.0",
"semantic-release": "^12.2.4"
},
"devDependencies": {
"@types/node": "^12.0.8",
"condition-circle": "^2.0.2",
"husky": "^2.4.1",
"tslint": "^5.17.0",
"typescript": "^3.5.2"
},
"repository": {
"type": "git",
"url": "https://github.com/adriancarriger/semantic-commitlint.git"
},
"release": {
"verifyConditions": [
"@semantic-release/git",
"@semantic-release/github",
"condition-circle"
],
"getLastRelease": "@semantic-release/git",
"verifyRelease": [
"./dist/lint-commits.plugin.js"
]
},
"publishConfig": {
"tag": "next"
},
"husky": {
"hooks": {
"prepare-commit-msg": "yarn run semantic-commitlint -h"
}
}
}