-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.42 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.42 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
{
"name": "patagonia",
"description": "Centralized workflows to standardize common tasks across projects (planning, implementation, docs, security, deployments, schema discovery, etc.). Use these via slash-commands in your IDE assistant.",
"private": false,
"devDependencies": {
"@eslint/js": "^9.35.0",
"cspell": "^9.2.1",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"markdown-link-check": "^3.13.7",
"markdownlint-cli2": "^0.18.1",
"prettier": "^3.6.2",
"shellcheck": "^4.1.0"
},
"scripts": {
"postinstall": "husky",
"format": "prettier --write \"**/*.{js,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,json,md,yml,yaml}\"",
"check-links": "find . -name '*.md' -not -path './node_modules/*' -print0 | xargs -0 -n1 npx markdown-link-check --verbose -c .markdown-link-check.json",
"fix:md": "markdownlint-cli2 --fix \"**/*.md\"",
"spell-check": "cspell \"**/*.md\"",
"lint:js": "eslint .",
"lint:shell": "find .husky -type f -not -path '*/_*' -exec shellcheck {} \\;",
"lint:all": "npm run format:check && npm run lint:js && npm run lint:shell && npm run fix:md && npm run spell-check"
},
"lint-staged": {
"*": "prettier --write",
"*.md": [
"markdownlint-cli2",
"cspell"
],
"*.js": "eslint --fix",
".husky/*": "shellcheck"
}
}