forked from igorshubovych/markdownlint-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.01 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
{
"name": "markdownlint-cli",
"version": "0.22.0",
"description": "MarkdownLint Command Line Interface",
"main": "markdownlint.js",
"bin": {
"markdownlint": "markdownlint.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"invalid": "node ./markdownlint.js --config test/test-config.json -- test/incorrect.md",
"fix": "cp test/incorrect.md test/incorrect.copy.md && node ./markdownlint.js --fix test/incorrect.copy.md ; cat test/incorrect.copy.md && rm test/incorrect.copy.md",
"test": "ava",
"watch": "npm test -- --watch --tap | tap-growl",
"start": "node ./markdownlint.js",
"precommit": "xo && npm test"
},
"files": [
"markdownlint.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/igorshubovych/markdownlint-cli.git"
},
"keywords": [
"markdown",
"markdownlint",
"cli",
"cli-app"
],
"author": "Igor Shubovych <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/igorshubovych/markdownlint-cli/issues"
},
"homepage": "https://github.com/igorshubovych/markdownlint-cli#readme",
"dependencies": {
"commander": "~2.9.0",
"deep-extend": "~0.5.1",
"get-stdin": "~5.0.1",
"glob": "~7.1.2",
"ignore": "~5.1.4",
"js-yaml": "~3.13.1",
"jsonc-parser": "~2.2.0",
"lodash.differencewith": "~4.5.0",
"lodash.flatten": "~4.4.0",
"markdownlint": "~0.20.1",
"markdownlint-rule-helpers": "~0.8.0",
"minimatch": "~3.0.4",
"rc": "~1.2.7"
},
"devDependencies": {
"ava": "^2.2.0",
"execa": "^2.0.4",
"husky": "^3.0.4",
"tap-growl": "^3.0.0",
"test-rule-package": "./test/custom-rules/test-rule-package",
"xo": "*"
},
"xo": {
"space": true,
"rules": {
"linebreak-style": 0,
"no-var": 0,
"prefer-arrow-callback": 0,
"promise/prefer-await-to-then": 0,
"object-shorthand": 0
}
},
"ava": {
"files": [
"test/**/*.js",
"!test/custom-rules/**/*.js"
],
"failFast": true
}
}