forked from superhub-host/wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 2.78 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "hosting-wiki",
"version": "1.0.0",
"description": "Wiki contents for superhub.host",
"scripts": {
"check": "remark pages --use remark-frontmatter --quiet --frail"
},
"repository": {
"type": "git",
"url": "git+https://github.com/superhub-host/wiki.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/superhub-host/wiki/issues"
},
"homepage": "https://github.com/superhub-host/wiki#readme",
"devDependencies": {
"eslint": "^8.7.0",
"eslint-plugin-json": "^3.1.0",
"remark": "^14.0.2",
"remark-cli": "^10.0.1",
"remark-frontmatter": "^4.0.1",
"remark-lint-emphasis-marker": "^3.1.1",
"remark-lint-fenced-code-marker": "^3.1.1",
"remark-lint-file-extension": "^2.1.1",
"remark-lint-first-heading-level": "^3.1.1",
"remark-lint-heading-increment": "^3.1.1",
"remark-lint-list-item-content-indent": "^3.1.1",
"remark-lint-list-item-indent": "^3.1.1",
"remark-lint-no-file-name-consecutive-dashes": "^2.1.1",
"remark-lint-no-file-name-mixed-case": "^2.1.1",
"remark-lint-no-file-name-outer-dashes": "^2.1.1",
"remark-lint-no-paragraph-content-indent": "^4.1.1",
"remark-lint-no-tabs": "^3.1.1",
"remark-lint-ordered-list-marker-style": "^3.1.1",
"remark-lint-strikethrough-marker": "^2.1.1",
"remark-lint-strong-marker": "^3.1.1",
"remark-lint-unordered-list-marker-style": "^3.1.1",
"remark-preset-lint-consistent": "^5.1.1",
"remark-preset-lint-recommended": "^6.1.2"
},
"remarkConfig": {
"plugins": [
[
"remark-preset-lint-consistent"
],
[
"remark-lint-file-extension"
],
[
"remark-lint-list-item-content-indent"
],
[
"remark-preset-lint-recommended"
],
[
"remark-lint-no-tabs"
],
[
"remark-lint-no-paragraph-content-indent"
],
[
"remark-lint-no-file-name-consecutive-dashes"
],
[
"remark-lint-no-file-name-mixed-case"
],
[
"remark-lint-no-file-name-outer-dashes"
],
[
"remark-lint-heading-style",
"atx"
],
[
"remark-lint-first-heading-level",
2
],
[
"remark-lint-list-item-indent",
"space"
],
[
"remark-lint-emphasis-marker",
"*"
],
[
"remark-lint-strong-marker",
"*"
],
[
"remark-lint-strikethrough-marker",
"~~"
],
[
"remark-lint-ordered-list-marker-style",
"."
],
[
"remark-lint-heading-increment",
1
],
[
"remark-lint-fenced-code-marker",
"`"
],
[
"remark-lint-unordered-list-marker-style",
"-"
]
]
}
}