-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.87 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
{
"name": "stac-api-extension-fields-spec",
"fields": "0.1.0",
"description": "STAC API helpers to generate, serve and check the API spec.",
"repository": "https://github.com/stac-api-extensions/fields",
"license": "Apache-2.0",
"scripts": {
"check": "npm run check-markdown && npm run check-openapi",
"check-markdown": "remark . --frail",
"check-openapi": "spectral lint openapi.yaml --ruleset .circleci/.spectral.yml"
},
"dependencies": {
"remark-cli": "^11.0.0",
"remark-lint": "^9.1.1",
"remark-gfm": "^3.0.1",
"remark-lint-no-html": "^3.1.1",
"remark-preset-lint-consistent": "^5.1.1",
"remark-preset-lint-markdown-style-guide": "^5.1.2",
"remark-preset-lint-recommended": "^6.1.2",
"remark-validate-links": "^12.1.0",
"@stoplight/spectral-cli": "^6.6.0"
},
"remarkConfig": {
"plugins": [
"remark-gfm",
"validate-links",
"remark-preset-lint-consistent",
"remark-preset-lint-markdown-style-guide",
"remark-preset-lint-recommended",
"lint-no-html",
[
"remark-lint-emphasis-marker",
"*"
],
"remark-lint-hard-break-spaces",
"remark-lint-blockquote-indentation",
"remark-lint-no-consecutive-blank-lines",
[
"remark-lint-maximum-line-length",
150
],
"remark-lint-fenced-code-flag",
"remark-lint-fenced-code-marker",
"remark-lint-no-shell-dollars",
[
"remark-lint-code-block-style",
"fenced"
],
"remark-lint-heading-increment",
"remark-lint-no-multiple-toplevel-headings",
"remark-lint-no-heading-punctuation",
[
"remark-lint-maximum-heading-length",
70
],
[
"remark-lint-heading-style",
"atx"
],
[
"remark-lint-no-shortcut-reference-link",
false
],
"remark-lint-list-item-bullet-indent",
"remark-lint-ordered-list-marker-style",
"remark-lint-ordered-list-marker-value",
"remark-lint-checkbox-character-style",
[
"remark-lint-unordered-list-marker-style",
"-"
],
[
"remark-lint-list-item-indent",
"space"
],
"remark-lint-table-pipes",
"remark-lint-no-literal-urls",
[
"remark-lint-no-file-name-irregular-characters",
false
],
[
"remark-lint-list-item-spacing",
false
]
]
}
}