-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.04 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.04 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "vscode-remark-lint",
"displayName": "vscode-remark-lint",
"description": "Use remark & retext to lint Markdown",
"version": "0.0.0",
"publisher": "drewbourne",
"homepage": "https://github.com/drewbourne/vscode-remark-lint",
"repository": {
"type": "git",
"url": "https://github.com/drewbourne/vscode-remark-lint.git"
},
"engines": {
"vscode": "^1.26.0"
},
"categories": [
"Linters"
],
"activationEvents": [
"onLanguage:markdown",
"onCommand:remark-lint.lint-markdown"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "remark-lint.show-output",
"title": "Markdown: Show Output"
},
{
"command": "remark-lint.lint-markdown",
"title": "Markdown: Lint Document"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"lint-md": "remark --frail --no-stdout \"*.md\"",
"lint-ts": "tslint --project .",
"format-md": "prettier --write --config .prettierrc --parser markdown \"**/*.md\"",
"format-ts": "prettier --write --config .prettierrc --parser typescript \"**/*.ts\""
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write --config .prettierrc",
"git add"
]
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"@types/vfile": "^2.2.2",
"dictionary-en-us": "^2.0.0",
"husky": "^1.0.0-rc.13",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2",
"remark-cli": "^5.0.0",
"remark-frontmatter": "^1.2.1",
"remark-lint": "^6.0.2",
"remark-parse": "^5.0.0",
"remark-preset-lint-consistent": "^2.0.2",
"remark-preset-lint-markdown-style-guide": "^2.1.2",
"remark-preset-lint-recommended": "^3.0.2",
"remark-retext": "^3.1.1",
"remark-stringify": "^5.0.0",
"retext": "^5.0.0",
"retext-contractions": "^2.1.2",
"retext-diacritics": "^1.2.1",
"retext-english": "^3.0.0",
"retext-indefinite-article": "^1.1.4",
"retext-quotes": "^2.0.1",
"retext-redundant-acronyms": "^1.2.1",
"retext-repeated-words": "^1.2.1",
"retext-sentence-spacing": "^2.0.1",
"retext-spell": "^2.3.1",
"retext-syntax-urls": "^1.0.0",
"retext-usage": "^0.5.0",
"to-vfile": "^5.0.1",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-semistandard": "^7.0.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.6.1",
"unified": "^7.0.0",
"vfile-location": "^2.0.3",
"vfile-message": "^1.0.1",
"vfile-messages-to-vscode-diagnostics": "^1.0.2",
"vfile-reporter": "^5.0.0"
},
"dependencies": {
"markdown-extensions": "^1.1.1",
"pretty-hrtime": "^1.0.3",
"remark": "^9.0.0",
"unified-engine": "^6.0.1",
"vfile": "^3.0.0",
"vscode": "^1.1.21"
}
}