This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.46 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
{
"name": "common-markup-state-machine",
"version": "0.0.0",
"license": "MIT",
"repository": "wooorm/common-markup-state-machine",
"devDependencies": {
"github-slugger": "^1.0.0",
"mdast-util-to-string": "^1.0.0",
"prettier": "^2.0.0",
"remark-cli": "^8.0.0",
"remark-parse": "^8.0.0",
"remark-preset-wooorm": "^7.0.0",
"remark-slug": "^6.0.0",
"remark-stringify": "^8.0.0",
"remark-toc": "^7.0.0",
"to-vfile": "^6.0.0",
"unified": "^9.0.0",
"unist-util-visit-parents": "^3.0.0",
"vfile-reporter": "^6.0.0",
"xo": "^0.33.0"
},
"scripts": {
"build": "node build",
"format": "remark . -qo && prettier . --write && xo --fix",
"test": "npm run build && npm run format"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"esnext": false
},
"remarkConfig": {
"settings": {
"commonmark": true
},
"plugins": [
"preset-wooorm",
[
"lint-no-unneeded-full-reference-link",
false
],
[
"lint-no-html",
false
],
[
"lint-maximum-line-length",
false
],
[
"lint-maximum-heading-length",
false
],
[
"lint-no-undefined-references",
false
],
[
"validate-links",
false
]
]
}
}