-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 875 Bytes
/
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
{
"name": "@Omochice/renovate-config",
"version": "3.2.0",
"private": true,
"description": "Shareable configuration for Renovate within Deno project",
"keywords": ["renovate"],
"license": "zlib",
"author": "Omochice",
"scripts": {
"test": "npm-run-all test:validate test:regex",
"test:validate": "renovate-config-validator --strict deno.json deno/*.json",
"test:regex": "vitest run",
"fmt": "npm-run-all fmt:package fmt:json",
"fmt:package": "sort-package-json",
"fmt:json": "biome format ./ --write"
},
"devDependencies": {
"@biomejs/biome": "^1.2.2",
"dedent": "^1.5.3",
"npm-run-all2": "^7.0.0",
"re2": "^1.21.3",
"renovate": "^39.0.0",
"sort-package-json": "^2.6.0",
"vitest": "^3.0.0"
},
"packageManager": "[email protected]",
"pnpm": {
"onlyBuiltDependencies": ["re2", "@biomejs/biome"]
}
}