forked from rajsite/webvi-experiments
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 1.13 KB
/
package.json
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
26
27
28
29
30
31
{
"name": "webvi-experiments",
"version": "1.0.0",
"private": true,
"description": "A collection of experiments for WebVIs 🧪.",
"scripts": {
"link": "glob-exec --foreach \"{./*.md,./.github/*.md,./.github/**/*.md}\" -- \"npm run markdown-link-check -- -c .linkcheck.json {{file}}\"",
"markdown-link-check": "markdown-link-check",
"lint:markdown": "markdownlint {./*.md,./.github/*.md,./.github/**/*.md}",
"lint": "eslint .",
"spelling": "mdspell --en-us --ignore-numbers --report \"./*.md\" \"./.github/*.md\" \"./.github/**/*.md\"",
"test": "npm run lint && npm run lint:markdown && npm run spelling && npm run link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rajsite/webvi-experiments.git"
},
"author": "Milan Raj (@rajsite)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rajsite/webvi-experiments/issues"
},
"homepage": "https://github.com/rajsite/webvi-experiments#readme",
"dependencies": {
"eslint": "^6.8.0",
"glob-exec": "^0.1.1",
"markdown-link-check": "^3.8.0",
"markdown-spellcheck": "^1.3.1",
"markdownlint-cli": "^0.22.0"
}
}