-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.51 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
{
"name": "remark-language-server",
"version": "3.0.0",
"description": "Language server for markdown using remark",
"license": "MIT",
"keywords": [
"languageserver",
"language server",
"lsp",
"cli",
"markdown",
"mdast",
"remark",
"unified"
],
"repository": "remarkjs/remark-language-server",
"bugs": "https://github.com/remarkjs/remark-language-serve/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"author": "Remco Haszing <remcohaszing@gmail.com>",
"contributors": [
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
],
"type": "module",
"bin": "index.js",
"files": [
"index.js"
],
"dependencies": {
"remark": "^15.0.0",
"unified-language-server": "^4.0.0"
},
"devDependencies": {
"prettier": "^3.0.0",
"remark-cli": "^12.0.0",
"remark-preset-wooorm": "^10.0.0",
"type-coverage": "^2.0.0",
"xo": "^0.58.0"
},
"scripts": {
"build": "tsc && type-coverage",
"format": "remark . -qfo && prettier . -w --log-level warn && 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
},
"remarkConfig": {
"plugins": [
"preset-wooorm"
]
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true,
"ignoreCatch": true
}
}