forked from myles/awesome-static-generators
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 668 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"devDependencies": {
"remark-cli": "^12.0.1",
"remark-lint": "^10.0.1",
"remark-lint-alphabetize-lists": "3.0.0",
"remark-lint-are-links-valid": "1.0.3",
"remark-lint-are-links-valid-alive": "0.3.0",
"remark-lint-are-links-valid-duplicate": "0.2.2",
"remark-preset-lint-consistent": "^6.0.1",
"remark-preset-lint-recommended": "^7.0.1",
"remark-validate-links": "^13.1.0"
},
"dependencies": {
"showdown": "2.1.0"
},
"scripts": {
"lint": "remark -u validate-links README.md --frail",
"lintfix": "remark README.md -o",
"build": "mkdir -p build/ && showdown makehtml -i README.md -o build/index.html"
}
}