forked from reactioncommerce/reaction-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.15 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
{
"name": "reaction-docs",
"version": "1.5.0",
"description": "Documentation for Reaction Commerce",
"repository": {
"type": "git",
"url": "git+https://github.com/reactioncommerce/reaction-docs.git"
},
"bugs": {
"url": "https://github.com/reactioncommerce/reaction-docs/issues"
},
"keywords": [
"Reaction Commerce",
"Reaction"
],
"author": "hello@reactioncommerce.com",
"license": "GPL-3.0-only",
"scripts": {
"lint": "remark . --frail",
"lint-fix": "remark . -o"
},
"devDependencies": {
"eslint": "^4.2.0",
"remark-cli": "^4.0.0",
"remark-lint": "^6.0.0",
"remark-preset-lint-consistent": "^2.0.0",
"remark-preset-lint-recommended": "^3.0.0"
},
"dependencies": {
"remark-lint-list-item-bullet-indent": "^1.0.0",
"remark-lint-list-item-indent": "^1.0.0",
"remark-lint-maximum-heading-length": "^1.0.0",
"remark-lint-maximum-line-length": "^1.0.0",
"remark-lint-no-multiple-toplevel-headings": "^1.0.0",
"remark-lint-unordered-list-marker-style": "^1.0.0",
"remark-preset-lint-markdown-style-guide": "^2.0.0"
},
"remarkConfig": {
"plugins": [
"remark-lint",
"remark-preset-lint-recommended",
"remark-preset-lint-consistent",
"remark-preset-lint-markdown-style-guide",
[
"remark-lint-unordered-list-marker-style",
"-"
],
[
"remark-lint-list-item-indent",
"space"
],
"remark-lint-list-item-bullet-indent",
"remark-lint-no-multiple-toplevel-headings",
[
"remark-lint-maximum-line-length",
false
],
[
"remark-lint-maximum-heading-length",
180
],
[
"remark-lint-ordered-list-marker-value",
"ordered"
],
[
"remark-lint-no-duplicate-headings",
false
],
[
"remark-lint-emphasis-marker",
"_"
],
[
"remark-lint-list-item-bullet-indent",
false
],
[
"remark-lint-no-file-name-mixed-case",
false
],
[
"remark-lint-no-file-name-irregular-characters",
"\\.a-zA-Z0-9-_"
]
]
}
}