{
  "name": "markdownlint-cli",
  "version": "0.41.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": "~10.4.1",
    "ignore": "~5.3.1",
    "js-yaml": "^4.1.0",
    "jsonc-parser": "~3.2.1",
    "jsonpointer": "5.0.1",
    "markdownlint": "~0.34.0",
    "minimatch": "~9.0.4",
    "run-con": "~1.3.2",
    "smol-toml": "~1.2.0"
  },
  "devDependencies": {
    "ava": "^6.1.3",
    "execa": "^9.1.0",
    "markdownlint-cli-local-test-rule": "./test/custom-rules/markdownlint-cli-local-test-rule",
    "xo": "^0.58.0"
  },
  "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
  }
}
