forked from TimBeyer/commitlint-circle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
61
62
{
"name": "@rewired/commitlint-circle",
"version": "3.1.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "src/cli.js",
"author": "Fathy Boundjadj <[email protected]>",
"contributors": [
{
"name": "Benjamin Chrobot",
"email": "[email protected]",
"url": "https://benjaminchrobot.com"
}
],
"description": "Lint all relevant commits for a change or PR on Circle CI",
"license": "MIT",
"files": [
"dist",
"src"
],
"scripts": {
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"build": "tsc",
"release": "standard-version"
},
"peerDependencies": {
"@commitlint/cli": ">=9 <14"
},
"dependencies": {
"@octokit/rest": "^18.12.0",
"execa": "^5.1.1",
"tslib": "^2.3.1"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/execa": "^2.0.0",
"@types/node": "^16.11.1",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.0.1",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"pinst": "^2.1.6",
"prettier": "^2.4.1",
"standard-version": "^9.3.2",
"typescript": "^4.4.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"./**/*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}