-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1013 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 1013 Bytes
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
{
"name": "academic-map",
"private": true,
"version": "1.0.0",
"description": "An ecosystem map for academic OSS",
"scripts": {
"build": "jupyter-book build --all .",
"prebuild": "npm run check-toc",
"publish": "./scripts/build.sh",
"lint": "markdownlint . -i _build/ -i node_modules --rules markdownlint-custom-rules.js",
"lint-fix": "markdownlint --fix . -i _build/ -i node_modules",
"links": "markdown-link-check ./*.md -c mdlinkcheckconfig.json && markdown-link-check ./**/*.md -c mdlinkcheckconfig.json",
"links-ci": "markdown-link-check -q ./*.md -c mdlinkcheckconfig.json && markdown-link-check ./**/*.md -q -c mdlinkcheckconfig.json",
"check-toc": "./scripts/check-toc-completeness.sh",
"run-all": "npm run lint && npm run links-ci && npm run check-toc",
"pretest": "npm run lint-fix"
},
"devDependencies": {
"markdown-link-check": "^3.12.2",
"markdownlint": "^0.40.0"
},
"dependencies": {
"markdownlint-rule-helpers": "^0.28.0"
}
}