-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.66 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.66 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@captive/renovate-config",
"version": "1.0.0-alpha.0",
"private": true,
"description": "Renovate configuration presets",
"keywords": [
"renovate",
"config",
"dependencies"
],
"homepage": "https://github.com/Captive-Studio/renovate-config/blob/main#readme",
"bugs": {
"url": "https://github.com/Captive-Studio/renovate-config.git/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:Captive-Studio/renovate-config.git"
},
"license": "MIT",
"author": "Julien Polo <julien.polo@gmail.com>",
"type": "module",
"scripts": {
"build": "npx run-p \"build:*\"",
"build:empty": ":",
"clean": "npx run-p \"clean:*\"",
"clean:empty": ":",
"code-analysis": ":",
"configure": "npm run mrm -- configure",
"develop": ":",
"docs": "md-magic --path '**/*.md' --ignore='node_modules'",
"format": "npx run-p \"format:*\"",
"format:src": "eslint . --cache --fix --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
"lint": "npx run-p \"lint:*\"",
"lint:src": "eslint . --cache --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
"mrm": "npm exec --package=mrm --package=@w5s/mrm-preset@latest -- mrm --preset @w5s/mrm-preset",
"postinstall": "npx run-p \"postinstall:*\"",
"postinstall:githooks": "[ -n \"${CI:-}\" ] || git config core.hooksPath .githooks",
"prepare": "npx run-p \"prepare:*\"",
"prepare:empty": ":",
"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": [
"@captive/commitlint-config"
]
},
"lint-staged": {
"*.js?(x)": [
"eslint"
],
"*.{json,jsonc,json5}": [
"eslint"
],
"*.{yml,yaml}": [
"eslint"
],
"*.ts?(x)": [
"eslint"
]
},
"eslintConfig": {
"extends": [
"@captive/eslint-config"
],
"root": true
},
"devDependencies": {
"@captive/commitlint-config": "2.1.15",
"@captive/cspell-config": "2.4.21",
"@captive/eslint-config": "2.0.32",
"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",
"npm-run-all2": "8.0.4",
"prettier": "3.8.3",
"renovate": "43.129.0",
"vitest": "4.1.4"
},
"packageManager": "yarn@4.14.1",
"engines": {
"node": ">=16.0.0",
"npm": ">=6.0.0",
"yarn": ">=1.0.0"
},
"publishConfig": {
"access": "public"
}
}