-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "venus-protocol-documentation",
"version": "0.0.0",
"description": "Venus Protocol Documentation",
"repository": "git@github.com:VenusProtocol/venus-protocol-documentation.git",
"author": "Venus",
"license": "ISC",
"scripts": {
"format": "remark . --output",
"format:check": "remark . -f"
},
"devDependencies": {
"remark-cli": "^11.0.0",
"remark-preset-lint-consistent": "^5.1.2",
"remark-preset-lint-recommended": "^6.1.3",
"remark-toc": "^8.0.1"
},
"remarkConfig": {
"settings": {
"bullet": "*",
"listItemIndent": "one",
"strong": "*",
"emphasis": "*",
"rule": "-"
},
"plugins": [
"remark-preset-lint-consistent",
"remark-preset-lint-recommended",
[
"remark-lint-list-item-indent",
"space"
],
[
"remark-lint-code-block-style",
"fenced"
],
[
"remark-lint-no-consecutive-blank-lines",
false
],
[
"remark-toc",
{
"heading": "contents"
}
]
]
}
}