-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
91 lines (91 loc) · 2.31 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
{
"name": "markdownlint-cli",
"version": "0.42.0",
"description": "MarkdownLint Command Line Interface",
"main": "markdownlint.js",
"bin": {
"markdownlint": "markdownlint.js"
},
"engines": {
"node": ">=18"
},
"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",
"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 <igor.shubovych@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/igorshubovych/markdownlint-cli/issues"
},
"homepage": "https://github.com/igorshubovych/markdownlint-cli#readme",
"dependencies": {
"commander": "~12.1.0",
"get-stdin": "~9.0.0",
"glob": "~11.0.0",
"ignore": "~6.0.2",
"js-yaml": "^4.1.0",
"jsonc-parser": "~3.3.1",
"jsonpointer": "5.0.1",
"markdownlint": "~0.36.1",
"minimatch": "~10.0.1",
"run-con": "~1.3.2",
"smol-toml": "~1.3.0"
},
"devDependencies": {
"ava": "^6.2.0",
"markdownlint-cli-local-test-rule": "./test/custom-rules/markdownlint-cli-local-test-rule",
"nano-spawn": "^0.2.0",
"xo": "^0.59.3"
},
"xo": {
"prettier": true,
"space": true,
"rules": {
"comma-dangle": 0,
"linebreak-style": 0,
"no-var": 0,
"prefer-arrow-callback": 0,
"promise/prefer-await-to-then": 0,
"object-shorthand": 0,
"unicorn/prefer-module": 0,
"unicorn/prefer-ternary": 0,
"unicorn/prefer-top-level-await": 0
}
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": false,
"endOfLine": "auto",
"printWidth": 1000,
"singleQuote": true,
"trailingComma": "none"
},
"ava": {
"files": [
"test/**/*.js",
"!test/custom-rules/**/*.js",
"!test/md043-config.js"
],
"failFast": true,
"timeout": "1m",
"workerThreads": false
}
}