-
-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathpackage.json
More file actions
17 lines (17 loc) · 644 Bytes
/
Copy pathpackage.json
File metadata and controls
17 lines (17 loc) · 644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"devDependencies": {
"markdownlint-cli": "^0.26.0",
"markdown-link-check": "^3.11.2",
"textlint": "^11.6.3",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-filter-rule-whitelist": "^2.0.0",
"textlint-rule-terminology": "^2.1.4"
},
"scripts": {
"test": "npm run lint-markdown && npm run lint-terminology",
"lint-terminology": "textlint ./README.md",
"lint-markdown": "markdownlint ./README.md --ignore node_modules",
"link-check": "markdown-link-check -c markdown-link-check-config.json README.md",
"link-check-report": "bash scripts/check-links.sh"
}
}