-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.06 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@anolilab/renovate-config",
"version": "0.0.0",
"private": true,
"description": "Shareable config for Renovate (renovatebot.com)",
"keywords": [
"renovate",
"config",
"anolilab",
"javascript",
"github",
"actions",
"github-actions"
],
"homepage": "https://anolilab.com/nodejs/packages/renovate-config",
"repository": {
"type": "git",
"url": "https://github.com/anolilab/renovate-config.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/prisis"
},
{
"type": "consulting",
"url": "https://anolilab.com/support"
}
],
"license": "MIT",
"author": {
"name": "Daniel Bannert",
"email": "[email protected]"
},
"type": "module",
"files": [
"default.json",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"scripts": {
"audit": "audit-ci --config ./audit-ci.jsonc",
"preinstall": "node verify-node-version.cjs && npx only-allow pnpm",
"lint:prettier": "prettier --config=.prettierrc.cjs --check '*.{json,yml,yaml,js,ts}'",
"lint:prettier:fix": "prettier --config=.prettierrc.cjs --write '*.{json,yml,yaml,js,ts}'",
"lint:secrets": "secretlint **/*",
"lint:staged": "lint-staged --verbose --concurrent false --debug",
"lint:text": "textlint ./.github/ ./README.md ./UPGRADE.md --parallel --experimental --cache --dry-run",
"lint:text:fix": "textlint ./.github/ ./README.md ./UPGRADE.md --parallel --experimental --fix",
"prepare": "is-ci || husky || exit 0",
"sort-package-json": "sort-package-json ./package.json",
"test": "renovate-config-validator default.json",
"update:deps": "taze"
},
"devDependencies": {
"@anolilab/commitlint-config": "^5.0.3",
"@anolilab/lint-staged-config": "^2.1.7",
"@anolilab/prettier-config": "^5.0.14",
"@anolilab/semantic-release-preset": "^9.0.0",
"@anolilab/textlint-config": "^8.0.16",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@secretlint/secretlint-rule-preset-recommend": "^8.2.4",
"audit-ci": "^7.1.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"renovate": "^38.80.0",
"secretlint": "8.2.4",
"semantic-release": "^24.1.3",
"sort-package-json": "^2.10.1",
"taze": "^0.17.2",
"textlint": "^14.2.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "restricted",
"provenance": true
},
"pnpm": {
"overrides": {
"braces@<3.0.3": ">=3.0.3",
"chrono-node@<2.2.4": ">=2.2.4",
"tar@<6.2.1": ">=6.2.1",
"micromatch@<4.0.8": ">=4.0.8"
}
}
}