-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 937 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": "@bluecateng/git-checks",
"version": "1.0.0",
"description": "Validation commands for Git hooks",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:bluecatengineering/git-checks.git"
},
"scripts": {
"prepare": "husky install"
},
"keywords": [
"git"
],
"bin": {
"check-git-commits": "bin/check-git-commits.js",
"check-git-commits-story": "bin/check-git-commits-story.js",
"check-git-msg": "bin/check-git-msg.js",
"check-git-msg-story": "bin/check-git-msg-story.js"
},
"devDependencies": {
"@bluecateng/prettier-config": "^1.0.0",
"eslint": "^8.11.0",
"husky": "^7.0.2",
"lint-staged": "^12.3.7",
"prettier": "^2.4.0"
},
"prettier": "@bluecateng/prettier-config",
"lint-staged": {
"*.js": [
"eslint --fix --max-warnings 0",
"prettier --write"
],
"*.{md,yml}": [
"prettier --write"
]
}
}