-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.1 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
{
"name": "linters",
"description": "Linters and their configurations of D-ZERO Co., Ltd.",
"repository": "https://github.com/d-zero-dev/linters.git",
"author": "D-ZERO Co., Ltd.",
"license": "MIT",
"private": true,
"type": "module",
"workspaces": [
"packages/@d-zero/*"
],
"scripts": {
"test": "vitest run",
"build": "lerna run build",
"lint": "run-s lint:tsc lint:eslint lint:prettier lint:textlint lint:cspell lint:secretlint lint:actionlint",
"lint:ci": "run-s lint:tsc lint:eslint lint:prettier lint:textlint lint:cspell lint:secretlint",
"lint:cspell": "cspell --no-progress --show-suggestions \"{*,packages/@d-zero/*/{*,src/**/*}}/\"",
"lint:eslint": "eslint --fix \"{*,packages/@d-zero/*/{*,src/**/*}}.{js,cjs,mjs,jsx,ts,cts,mts,tsx}\"",
"lint:prettier": "prettier --write \"{*,**/*}.{md,json,js,cjs,mjs,jsx,ts,cts,mts,tsx}\"",
"lint:textlint": "textlint \"./{*,packages/@d-zero/*/{*,src/**/*}}.md\"",
"lint:tsc": "tsc",
"lint:secretlint": "secretlint \"**/*\"",
"lint:actionlint": "actionlint .github/workflows/*.yml",
"release": "lerna publish --exact --conventional-commits --conventional-graduate",
"release:alpha:latest": "lerna publish --exact --force-publish --conventional-commits --conventional-prerelease --preid alpha",
"release:next": "lerna publish --dist-tag next --exact --force-publish --conventional-commits --conventional-prerelease --preid alpha",
"release:canary": "lerna publish --preid dev --canary --exact --force-publish",
"commit": "cz",
"co": "cz",
"up": "npx npm-check-updates --interactive --workspaces --format group"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@d-zero/cz-config"
}
},
"devDependencies": {
"@d-zero/tsconfig": "0.4.1",
"@secretlint/secretlint-rule-preset-recommend": "9.0.0",
"execa": "9.5.2",
"husky": "9.1.7",
"lerna": "8.1.9",
"npm-run-all2": "7.0.1",
"prettier": "3.4.2",
"secretlint": "9.0.0",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"packageManager": "[email protected]",
"volta": {
"node": "22.12.0",
"npm": "10.9.2"
}
}