-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
39 lines (39 loc) · 891 Bytes
/
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
{
"name": "commitlint-circle",
"version": "1.0.0",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": "src/cli.js",
"author": "Fathy Boundjadj <[email protected]>",
"description": "Lint all relevant commits for a change or PR on Circle CI",
"license": "MIT",
"files": [
"build",
"src"
],
"scripts": {
"build": "tsc",
"commitmsg": "commitlint -E GIT_PARAMS"
},
"peerDependencies": {
"@commitlint/cli": "^7.0.0"
},
"dependencies": {
"@octokit/rest": "^15.9.4",
"execa": "^0.10.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@types/execa": "^0.9.0",
"@types/node": "^10.5.4",
"husky": "^0.14.3",
"typescript": "^2.9.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}