-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.24 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
{
"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": "npx run-p \"build:*\"",
"build:empty": ":",
"clean": ":",
"code-analysis": ":",
"develop": ":",
"docs": "md-magic --path '**/*.md' --ignore='node_modules'",
"format": "eslint . --cache --fix --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
"lint": "eslint . --cache --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
"postinstall": "npx run-p \"postinstall:*\"",
"postinstall:githooks": "[ -n \"${CI:-}\" ] || git config core.hooksPath .githooks",
"release": ":",
"rescue": "git clean -fdx;yarn install",
"spellcheck": "npx cspell --no-progress '**'",
"test": "npx run-p \"test:*\"",
"test:renovate-config": "test/test.sh",
"test:unit": "vitest run",
"validate": "npm run build && npm run lint && npm test"
},
"commitlint": {
"extends": [
"@w5s/commitlint-config"
]
},
"lint-staged": {
"*.js?(x)": [
"eslint"
],
"*.yml": [
"eslint"
],
"*.{json,jsonc,json5}": [
"eslint"
],
"*.ts?(x)": [
"eslint"
]
},
"eslintConfig": {
"extends": [
"@w5s/eslint-config"
]
},
"devDependencies": {
"@w5s/commitlint-config": "2.1.3",
"@w5s/cspell-config": "2.3.15",
"@w5s/eslint-config": "2.2.3",
"cspell": "8.16.0",
"eslint": "8.57.1",
"markdown-magic": "2.6.1",
"markdown-magic-package-json": "2.0.2",
"markdown-magic-subpackage-list": "1.1.2",
"npm-run-all2": "7.0.1",
"prettier": "3.3.3",
"renovate": "39.20.6",
"vitest": "2.1.5"
},
"packageManager": "yarn@4.5.1",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0",
"yarn": ">=1.0.0"
},
"publishConfig": {
"access": "public"
}
}