forked from sourcebots/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 864 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 864 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
26
{
"name": "sourcebots-website",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"spellcheck": "mdspell --en-gb --report --ignore-acronyms --ignore-numbers --no-suggestions 'content/**/*.md'",
"broken-link-local": "blcl --recursive --ordered --exclude-external ./public/",
"broken-link-all": "blcl --recursive --ordered ./public/",
"test": "npm run spellcheck && npm run broken-link-local",
"ci-test": "npm run spellcheck && npm run broken-link-all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sourcebots/website.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/sourcebots/website/issues"
},
"homepage": "https://github.com/sourcebots/website#readme",
"dependencies": {
"broken-link-checker-local": "0.1.1",
"markdown-spellcheck": "1.0.0"
}
}