-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.79 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.79 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
{
"name": "@w5s/actions",
"version": "1.0.0-alpha.0",
"private": true,
"description": "",
"repository": {
"type": "git",
"url": "git@github.com:w5s/actions.git"
},
"license": "MIT",
"type": "module",
"files": [],
"scripts": {
"build": "pnpm run \"/build:.*/\"",
"build:empty": ":",
"clean": "pnpm run \"/clean:.*/\"",
"code-analysis": ":",
"configure": "npm run mrm -- configure",
"coverage": ":",
"format": "pnpm run \"/format:.*/\"",
"format:root": "eslint . --fix",
"lint": "pnpm run \"/lint:.*/\"",
"lint:root": "eslint .",
"mrm": "npm exec --package=mrm -- mrm --preset @w5s/mrm-preset",
"prepare": "pnpm run \"/prepare:.*/\"",
"prepare:githooks": "if [ -z \"${CI:-}\" ]; then git config core.hooksPath .githooks; fi",
"release": ":",
"rescue": "git clean -fdx;npm install",
"spellcheck": "pnpm run \"/spellcheck:.*/\"",
"spellcheck:root": "cspell --no-progress '**' ",
"test": "pnpm run \"/test:.*/\"",
"test:empty": ":",
"validate": "turbo run build lint test spellcheck"
},
"commitlint": {
"extends": [
"@w5s/commitlint-config"
]
},
"lint-staged": {
"!(**/dist/**)*.js?(x)": [
"eslint"
],
"!(**/dist/**)*.ts?(x)": [
"eslint"
],
"*.{json,jsonc,json5}": [
"eslint"
],
"*.{yml,yaml}": [
"eslint"
],
"*.js?(x)": [
"eslint"
],
"*.ts?(x)": [
"eslint"
]
},
"devDependencies": {
"@types/node": "20.19.39",
"@w5s/commitlint-config": "3.1.3",
"@w5s/eslint-config": "3.5.3",
"cspell": "10.0.0",
"eslint": "10.2.0",
"typescript": "6.0.2"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20.0.0",
"npm": ">=6.0.0",
"pnpm": ">=10.0.0"
},
"sideEffect": false
}