forked from undergroundwires/CEH-in-bullet-points
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
19 lines (19 loc) · 787 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "ceh-in-bullet-points",
"description": "🧑💻 Certified Ethical Hacker summary in bullet points",
"private": true,
"scripts": {
"lint": "npm run lint:md && npm run lint:relative-urls && npm run lint:external-urls && npm run lint:consistency",
"lint:md": "markdownlint **/*.md --ignore node_modules",
"lint:relative-urls": "remark . --frail --use remark-validate-links",
"lint:external-urls": "remark . --frail --use remark-lint-no-dead-urls",
"lint:consistency": "remark . --frail --use remark-preset-lint-consistent"
},
"devDependencies": {
"markdownlint-cli": "^0.27.1",
"remark-cli": "^9.0.0",
"remark-lint-no-dead-urls": "^1.1.0",
"remark-preset-lint-consistent": "^4.0.0",
"remark-validate-links": "^10.0.4"
}
}