-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.11 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
{
"scripts": {
"postinstall": "husky install",
"check:markdown": "remark *.md .github/**/*.md --quiet --frail",
"format:markdown": "remark *.md .github/**/*.md --quiet --frail --output",
"commit": "commit"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@commitlint/prompt-cli": "^17.6.1",
"husky": "^8.0.3",
"remark-cli": "^11.0.0",
"remark-lint-emphasis-marker": "^3.1.1",
"remark-lint-strong-marker": "^3.1.1",
"remark-preset-lint-consistent": "^5.1.1",
"remark-preset-lint-recommended": "^6.1.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"remarkConfig": {
"settings": {
"emphasis": "*",
"strong": "*",
"listItemIndent": "one"
},
"plugins": [
"remark-preset-lint-consistent",
"remark-preset-lint-recommended",
[
"remark-lint-list-item-indent",
"space"
],
[
"remark-lint-emphasis-marker",
"*"
],
[
"remark-lint-strong-marker",
"*"
]
]
}
}