-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
32 lines (32 loc) · 1.16 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
32
{
"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 -- --verbose -c .linkcheck.json {{file}}\"",
"lint": "npm run lint:markdown && npm run lint:js && npm run lint:spelling",
"lint:markdown": "markdownlint {./*.md,./.github/*.md,./.github/**/*.md}",
"lint:js": "eslint .",
"lint:spelling": "cspell --verbose --exclude \"**/node_modules/**\" \"**/*.md\"",
"test": "npm run lint && npm run link",
"markdown-link-check": "markdown-link-check"
},
"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": {
"@ni/eslint-config-javascript": "^4.3.0",
"cspell": "^8.15.2",
"glob-exec": "^0.1.1",
"markdown-link-check": "3.12.2",
"markdownlint-cli": "^0.42.0"
}
}