-
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) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.09 KB
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": "citrus-linting",
"private": true,
"description": "Linter configs used by CitRUS.",
"license": "MIT",
"author": "CitRUS",
"scripts": {
"commit": "git-cz",
"prettier": "prettier --check",
"prettier:fix": "pnpm prettier --write",
"prettier:all": "pnpm prettier \"**/*.{md,json,yml,js}\"",
"prettier:fix:all": "pnpm prettier:all --write",
"lint": "pnpm prettier:all",
"format": "pnpm prettier:fix:all",
"ci": "pnpm lint",
"prepare": "husky install"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"config": {
"commitizen": {
"path": "cz-customizable"
},
"cz-customizable": {
"config": "./commits/commitizen.js"
}
},
"lint-staged": {
"*.{md,json,yml,js}": "pnpm prettier:fix"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"commitizen": "4.3.0",
"cz-customizable": "7.0.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"prettier": "3.0.3"
}
}