-
Notifications
You must be signed in to change notification settings - Fork 204
/
Copy pathpackage.json
32 lines (32 loc) · 878 Bytes
/
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
{
"devDependencies": {
"remark-cli": "11.0.0",
"remark-lint": "9.1.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": "^5.1.1",
"remark-preset-lint-recommended": "^6.1.2",
"remark-validate-links": "12.1.0"
},
"dependencies": {
"showdown": "2.1.0"
},
"scripts": {
"lint": "remark -u validate-links README.md --frail",
"lintfix": "npm run lint -- -o",
"build": "mkdir -p build/ && showdown makehtml -i README.md -o build/index.html"
},
"remarkConfig": {
"settings": {
"bullet": "-",
"emphasis": "_",
"strong": "*"
},
"plugins": [
"remark-preset-lint-consistent",
"remark-preset-lint-recommended"
]
}
}