-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "quality-docs",
"version": "3.2.0",
"description": "A CLI tool to evaluate the quality of writing in your project's markdown files.",
"main": "index.js",
"bin": {
"quality-docs": "./index.js"
},
"scripts": {
"test": "node index.js {,**/}*.md --config default-config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SparkartGroupInc/quality-docs.git"
},
"keywords": [
"readability",
"documentation",
"quality",
"CI"
],
"author": "Josiah Sprague ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/SparkartGroupInc/quality-docs/issues"
},
"homepage": "https://github.com/SparkartGroupInc/quality-docs#readme",
"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": "^7.0.0",
"remark-lint": "^6.0.0",
"remark-message-control": "^4.0.0",
"remark-retext": "^3.0.0",
"retext": "^5.0.0",
"retext-equality": "^3.0.0",
"retext-intensify": "^3.0.0",
"retext-readability": "^4.0.0",
"retext-simplify": "^4.0.0",
"retext-spell": "^2.0.0",
"to-vfile": "^2.1.1",
"unist-util-visit": "^1.1.0",
"vfile-reporter": "^3.0.0"
}
}