-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.58 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
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
{
"name": "philcrockett.com",
"version": "1.0.0",
"description": "My personal website",
"main": "index.js",
"scripts": {
"build": "npx @11ty/eleventy",
"serve": "npx @11ty/eleventy --serve",
"clean": "rm --recursive --force _site",
"remark-lint": "remark . --frail --quiet",
"remark-format": "bin/md-format"
},
"author": "Philip Crockett",
"license": "CC BY-SA 4.0",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-footnote": "^4.0.0",
"remark-cli": "^12.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-lint-emphasis-marker": "^4.0.0",
"remark-lint-list-item-indent": "^4.0.0",
"remark-lint-maximum-line-length": "^4.0.1",
"remark-lint-strong-marker": "^4.0.0",
"remark-preset-lint-consistent": "^6.0.0",
"remark-preset-lint-recommended": "^7.0.0"
},
"remarkConfig": {
"settings": {
"emphasis": "_",
"strong": "*",
"rule": "-"
},
"plugins": [
"remark-lint",
"remark-gfm",
"remark-frontmatter",
"remark-lint-final-newline",
"remark-lint-hard-break-spaces",
"remark-lint-list-item-bullet-indent",
[
"remark-lint-list-item-indent",
"one"
],
[
"remark-lint-maximum-line-length",
120
],
"remark-lint-no-blockquote-without-marker",
"remark-lint-no-duplicate-definitions",
"remark-lint-no-heading-content-indent",
"remark-lint-no-literal-urls",
"remark-lint-no-shortcut-reference-image",
"remark-lint-no-shortcut-reference-link",
"remark-lint-no-unused-definitions",
[
"remark-lint-ordered-list-marker-style",
"."
],
[
"remark-lint-blockquote-indentation",
"consistent"
],
[
"remark-lint-checkbox-character-style",
"consistent"
],
[
"remark-lint-code-block-style",
"consistent"
],
[
"remark-lint-emphasis-marker",
"consistent"
],
[
"remark-lint-fenced-code-marker",
"consistent"
],
[
"remark-lint-heading-style",
"consistent"
],
[
"remark-lint-link-title-style",
"consistent"
],
[
"remark-lint-ordered-list-marker-style",
"consistent"
],
[
"remark-lint-rule-style",
"consistent"
],
[
"remark-lint-strong-marker",
"consistent"
],
[
"remark-lint-table-cell-padding",
"consistent"
]
]
}
}