forked from sparkartgroup/quality-docs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 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
{
"name": "quality-docs-fork",
"version": "1.0.0",
"description": "A CLI tool to evaluate the quality of writing in your project's markdown files.",
"author": "",
"main": "index.js",
"bin": {
"quality-docs": "./index.js"
},
"scripts": {
"test": "node index.js {,**/}*.md --config default-config.json",
"lint-md": "remark ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/markcmurphy/quality-docs-fork.git"
},
"license": "MIT",
"dependencies": {
"async": "^2.0.1",
"chalk": "^1.1.3",
"dictionary-en-us": "^1.0.2",
"lodash": "^4.14.0",
"meow": "^3.7.0",
"minimist": "^1.2.0",
"nlcst-to-string": "^2.0.0",
"remark": "^13.0.0",
"remark-lint-no-dead-urls": "^1.1.0",
"remark-lint-write-good": "^1.2.0",
"remark-message-control": "^4.0.0",
"remark-preset-lint-markdown-style-guide": "^4.0.0",
"remark-retext": "^3.0.0",
"remark-validate-links": "^10.0.4",
"retext": "^5.0.0",
"retext-assuming": "^1.0.0",
"retext-equality": "^3.0.0",
"retext-google-styleguide": "^1.0.0",
"retext-indefinite-article": "^2.0.3",
"retext-intensify": "^3.0.0",
"retext-readability": "^4.0.0",
"retext-repeated-words": "^3.0.0",
"retext-simplify": "^4.0.0",
"retext-spell": "^2.0.0",
"retext-syntax-urls": "^2.0.0",
"to-vfile": "^2.1.1",
"unist-util-visit": "^1.1.0",
"vfile-reporter": "^3.0.0"
},
"devDependencies": {
"remark-cli": "^9.0.0",
"remark-preset-lint-recommended": "^5.0.0"
}
}