-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.09 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.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
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
{
"name": "@w5s/renovate-config",
"version": "1.0.0-alpha.0",
"private": true,
"description": "Renovate configuration presets",
"keywords": [
"renovate",
"config",
"dependencies"
],
"homepage": "https://github.com/w5s/renovate-config/blob/main#readme",
"bugs": {
"url": "https://github.com/w5s/renovate-config.git/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/w5s/renovate-config.git"
},
"license": "MIT",
"author": "Julien Polo <julien.polo@gmail.com>",
"type": "module",
"scripts": {
"build": "pnpm run \"/build:.*/\"",
"build:empty": ":",
"clean": ":",
"code-analysis": ":",
"develop": ":",
"docs": "md-magic --path '**/*.md' --ignore='node_modules'",
"format": "eslint . --cache --fix",
"lint": "eslint . --cache",
"prepare": "pnpm run \"/prepare:.*/\"",
"prepare:githooks": "[ -n \"${CI:-}\" ] || git config core.hooksPath .githooks",
"release": ":",
"rescue": "git clean -fdx;pnpm install",
"spellcheck": "npm dlx cspell --no-progress '**'",
"test": "pnpm run \"/test:.*/\"",
"test:renovate-config": "test/test.sh",
"test:unit": "vitest run",
"validate": "pnpm run build && pnpm run lint && pnpm run test"
},
"commitlint": {
"extends": [
"@w5s/commitlint-config"
]
},
"lint-staged": {
"*.js?(x)": [
"eslint"
],
"*.yml": [
"eslint"
],
"*.{json,jsonc,json5}": [
"eslint"
],
"*.ts?(x)": [
"eslint"
]
},
"devDependencies": {
"@w5s/commitlint-config": "3.1.3",
"@w5s/cspell-config": "3.1.3",
"@w5s/eslint-config": "3.5.3",
"@w5s/tsconfig": "3.1.4",
"cspell": "10.0.0",
"eslint": "10.2.1",
"markdown-magic": "4.8.0",
"markdown-magic-package-json": "2.0.2",
"markdown-magic-subpackage-list": "1.1.2",
"prettier": "3.8.3",
"renovate": "43.131.0",
"typescript": "6.0.3",
"vitest": "4.1.4"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0",
"pnpm": ">=10.0.0"
},
"publishConfig": {
"access": "public"
}
}