forked from commonhaus/foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
15 lines (15 loc) · 806 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"scripts": {
"links": "find . -name '*.md' ! -path './node*' ! -path './output*' -print0 | xargs -0 npx markdown-link-check --config .mlc_config.json -q",
"linksv": "find . -name '*.md' ! -path './node*' ! -path './output*' -print0 | xargs -0 npx markdown-link-check --config .mlc_config.json",
"test": "npm run links && npm run yaml && npm run lint",
"tv": "npm run linksv && npm run yaml && npm run lint",
"lint": "npx markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#output\" \"#elections\" \"#agreements\" \"#.github\"",
"yaml": "node .github/validate.js ./SUPPORTERS.yaml ./CONTACTS.yaml ./PROJECTS.yaml ./agreements/membership/members.yaml"
},
"devDependencies": {
"markdown-link-check": "^3.11.2",
"markdownlint-cli2": "^0.12.1",
"yaml": "^2.3.4"
}
}