This repository has been archived by the owner on Apr 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
112 lines (112 loc) · 4.28 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "markdown-language-server",
"version": "0.0.1",
"description": "Language server implementation for markdown files",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "nyc mocha --recursive dist/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onivim/markdown-language-server.git"
},
"keywords": [
"markdown",
"lsp",
"language-server",
"oni"
],
"files": [
"dist"
],
"author": "Bryan Phelps",
"license": "MIT",
"bugs": {
"url": "https://github.com/onivim/markdown-language-server/issues"
},
"homepage": "https://github.com/onivim/markdown-language-server#readme",
"dependencies": {
"remark": "^8.0.0",
"remark-lint": "^6.0.1",
"remark-lint-blockquote-indentation": "^1.0.1",
"remark-lint-checkbox-character-style": "^1.0.1",
"remark-lint-checkbox-content-indent": "^1.0.1",
"remark-lint-code-block-style": "^1.0.1",
"remark-lint-definition-case": "^1.0.1",
"remark-lint-definition-spacing": "^1.0.1",
"remark-lint-emphasis-marker": "^1.0.1",
"remark-lint-fenced-code-flag": "^1.0.1",
"remark-lint-fenced-code-marker": "^1.0.1",
"remark-lint-file-extension": "^1.0.1",
"remark-lint-final-definition": "^1.0.1",
"remark-lint-final-newline": "^1.0.1",
"remark-lint-first-heading-level": "^1.1.1",
"remark-lint-hard-break-spaces": "^1.0.2",
"remark-lint-heading-increment": "^1.0.1",
"remark-lint-heading-style": "^1.0.1",
"remark-lint-linebreak-style": "^1.0.1",
"remark-lint-link-title-style": "^1.0.1",
"remark-lint-list-item-bullet-indent": "^1.0.1",
"remark-lint-list-item-content-indent": "^1.0.1",
"remark-lint-list-item-indent": "^1.0.1",
"remark-lint-list-item-spacing": "^1.1.1",
"remark-lint-maximum-heading-length": "^1.0.1",
"remark-lint-maximum-line-length": "^1.0.2",
"remark-lint-no-auto-link-without-protocol": "^1.0.1",
"remark-lint-no-blockquote-without-marker": "^2.0.1",
"remark-lint-no-consecutive-blank-lines": "^1.0.1",
"remark-lint-no-duplicate-definitions": "^1.0.1",
"remark-lint-no-duplicate-headings": "^1.0.1",
"remark-lint-no-duplicate-headings-in-section": "^1.0.1",
"remark-lint-no-emphasis-as-heading": "^1.0.1",
"remark-lint-no-empty-url": "^1.0.2",
"remark-lint-no-file-name-articles": "^1.0.1",
"remark-lint-no-file-name-consecutive-dashes": "^1.0.1",
"remark-lint-no-file-name-irregular-characters": "^1.0.1",
"remark-lint-no-file-name-mixed-case": "^1.0.1",
"remark-lint-no-file-name-outer-dashes": "^1.0.2",
"remark-lint-no-heading-content-indent": "^1.0.1",
"remark-lint-no-heading-indent": "^1.0.1",
"remark-lint-no-heading-like-paragraph": "^1.0.1",
"remark-lint-no-heading-punctuation": "^1.0.1",
"remark-lint-no-html": "^1.0.1",
"remark-lint-no-inline-padding": "^1.0.1",
"remark-lint-no-literal-urls": "^1.0.1",
"remark-lint-no-missing-blank-lines": "^1.0.1",
"remark-lint-no-multiple-toplevel-headings": "^1.0.1",
"remark-lint-no-paragraph-content-indent": "^1.0.3",
"remark-lint-no-reference-like-url": "^1.0.1",
"remark-lint-no-shell-dollars": "^1.0.1",
"remark-lint-no-shortcut-reference-image": "^1.0.1",
"remark-lint-no-shortcut-reference-link": "^1.0.2",
"remark-lint-no-table-indentation": "^1.0.1",
"remark-lint-no-tabs": "^1.0.1",
"remark-lint-no-undefined-references": "^1.0.1",
"remark-lint-no-unused-definitions": "^1.0.1",
"remark-lint-ordered-list-marker-style": "^1.0.1",
"remark-lint-ordered-list-marker-value": "^1.0.1",
"remark-lint-rule-style": "^1.0.1",
"remark-lint-strong-marker": "^1.0.1",
"remark-lint-table-cell-padding": "^1.0.1",
"remark-lint-table-pipe-alignment": "^1.0.1",
"remark-lint-table-pipes": "^1.0.1",
"remark-lint-unordered-list-marker-style": "^1.0.1",
"remark-lint-write-good": "^1.0.1",
"remark-parse": "^4.0.0",
"remark-stringify": "^4.0.0",
"unified": "^6.1.6",
"unist-util-visit": "^1.3.0",
"vscode-languageserver": "^3.5.0",
"vscode-languageserver-types": "^3.5.0"
},
"devDependencies": {
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.51",
"@types/unist": "^1.0.0",
"@types/vfile": "^2.2.2",
"mocha": "^4.0.1",
"nyc": "^11.4.1",
"typescript": "^2.6.1"
}
}