-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 984 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 984 Bytes
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
{
"name": "@bluecateng/git-checks",
"version": "1.0.0",
"description": "Validation commands for Git hooks",
"license": "ISC",
"repository": {
"type": "git",
"url": "git@github.com:bluecatengineering/git-checks.git"
},
"scripts": {
"prepare": "husky"
},
"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/js": "^9.19.0",
"eslint": "^9.19.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.4.2"
},
"prettier": "@bluecateng/prettier-config",
"lint-staged": {
"*.js": [
"eslint --fix --max-warnings 0",
"prettier --write"
],
"*.{md,yml}": [
"prettier --write"
]
}
}