-
Notifications
You must be signed in to change notification settings - Fork 434
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 752 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"dependencies": {
"awesome-lint": "^1.2.0",
"remark": "^12.0.1",
"remark-cli": "^10.0.1",
"remark-lint": "^10.0.1",
"remark-lint-are-links-valid-alive": "^0.3.0",
"remark-preset-lint-recommended": "^7.0.1",
"remark-validate-links": "^13.1.0"
},
"scripts": {
"ci-lint": "node_modules/.bin/remark --frail --output /dev/null readme.md --rc-path .github/remarkrc-lint.yml",
"ci-link": "node_modules/.bin/remark --frail --output /dev/null readme.md --rc-path .github/remarkrc-linkchecker.yml",
"lint-md": "node_modules/.bin/remark readme.md"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
"remark-validate-links",
"remark-lint-are-links-valid-alive"
]
}
}