UNPKG

2.16 kBJSONView Raw
1{
2 "name": "markdownlint-cli",
3 "version": "0.27.1",
4 "description": "MarkdownLint Command Line Interface",
5 "main": "markdownlint.js",
6 "bin": {
7 "markdownlint": "markdownlint.js"
8 },
9 "engines": {
10 "node": ">=10"
11 },
12 "scripts": {
13 "invalid": "node ./markdownlint.js --config test/test-config.json -- test/incorrect.md",
14 "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",
15 "test": "ava",
16 "watch": "npm test -- --watch --tap | tap-growl",
17 "start": "node ./markdownlint.js",
18 "precommit": "xo && npm test"
19 },
20 "files": [
21 "markdownlint.js"
22 ],
23 "repository": {
24 "type": "git",
25 "url": "git+https://github.com/igorshubovych/markdownlint-cli.git"
26 },
27 "keywords": [
28 "markdown",
29 "markdownlint",
30 "cli",
31 "cli-app"
32 ],
33 "author": "Igor Shubovych <igor.shubovych@gmail.com>",
34 "license": "MIT",
35 "bugs": {
36 "url": "https://github.com/igorshubovych/markdownlint-cli/issues"
37 },
38 "homepage": "https://github.com/igorshubovych/markdownlint-cli#readme",
39 "dependencies": {
40 "commander": "~7.1.0",
41 "deep-extend": "~0.6.0",
42 "get-stdin": "~8.0.0",
43 "glob": "~7.1.6",
44 "ignore": "~5.1.8",
45 "js-yaml": "^4.0.0",
46 "jsonc-parser": "~3.0.0",
47 "lodash.differencewith": "~4.5.0",
48 "lodash.flatten": "~4.4.0",
49 "markdownlint": "~0.23.1",
50 "markdownlint-rule-helpers": "~0.14.0",
51 "minimatch": "~3.0.4",
52 "minimist": "~1.2.5",
53 "rc": "~1.2.8"
54 },
55 "devDependencies": {
56 "ava": "^3.15.0",
57 "execa": "^5.0.0",
58 "husky": "^5.1.2",
59 "tap-growl": "^3.0.0",
60 "test-rule-package": "./test/custom-rules/test-rule-package",
61 "xo": "^0.38.2"
62 },
63 "xo": {
64 "space": true,
65 "rules": {
66 "linebreak-style": 0,
67 "no-var": 0,
68 "prefer-arrow-callback": 0,
69 "promise/prefer-await-to-then": 0,
70 "object-shorthand": 0,
71 "unicorn/prefer-ternary": 0
72 }
73 },
74 "ava": {
75 "files": [
76 "test/**/*.js",
77 "!test/custom-rules/**/*.js",
78 "!test/md043-config.js"
79 ],
80 "failFast": true
81 }
82}