{
  "author": {
    "email": "gajus@gajus.com",
    "name": "Gajus Kuizinas",
    "url": "http://gajus.com"
  },
  "dependencies": {
    "@es-joy/jsdoccomment": "~0.48.0",
    "are-docs-informative": "^0.0.2",
    "comment-parser": "1.4.1",
    "debug": "^4.3.6",
    "escape-string-regexp": "^4.0.0",
    "espree": "^10.1.0",
    "esquery": "^1.6.0",
    "parse-imports": "^2.1.1",
    "semver": "^7.6.3",
    "spdx-expression-parse": "^4.0.0",
    "synckit": "^0.9.1"
  },
  "description": "JSDoc linting rules for ESLint.",
  "devDependencies": {
    "@babel/cli": "^7.24.8",
    "@babel/core": "^7.25.2",
    "@babel/eslint-parser": "^7.25.1",
    "@babel/node": "^7.25.0",
    "@babel/plugin-syntax-class-properties": "^7.12.13",
    "@babel/plugin-transform-flow-strip-types": "^7.25.2",
    "@babel/preset-env": "^7.25.3",
    "@es-joy/escodegen": "^3.5.1",
    "@es-joy/jsdoc-eslint-parser": "^0.21.1",
    "@hkdobrev/run-if-changed": "^0.6.0",
    "@semantic-release/commit-analyzer": "^13.0.0",
    "@semantic-release/github": "^11.0.0",
    "@semantic-release/npm": "^12.0.1",
    "@types/chai": "^4.3.17",
    "@types/debug": "^4.1.12",
    "@types/eslint": "^9.6.0",
    "@types/espree": "^10.1.0",
    "@types/esquery": "^1.5.4",
    "@types/estree": "^1.0.5",
    "@types/json-schema": "^7.0.15",
    "@types/lodash.defaultsdeep": "^4.6.9",
    "@types/mocha": "^10.0.7",
    "@types/node": "^22.2.0",
    "@types/semver": "^7.5.8",
    "@types/spdx-expression-parse": "^3.0.5",
    "@typescript-eslint/types": "^8.1.0",
    "babel-plugin-add-module-exports": "^1.0.4",
    "babel-plugin-istanbul": "^7.0.0",
    "babel-plugin-transform-import-meta": "^2.2.1",
    "c8": "^10.1.2",
    "camelcase": "^8.0.0",
    "chai": "^5.1.1",
    "cross-env": "^7.0.3",
    "decamelize": "^6.0.0",
    "eslint": "9.9.0",
    "eslint-config-canonical": "~43.0.15",
    "gitdown": "^4.1.1",
    "glob": "^10.4.2",
    "globals": "^15.9.0",
    "husky": "^9.1.4",
    "jsdoc-type-pratt-parser": "^4.1.0",
    "json-schema": "^0.4.0",
    "lint-staged": "^15.2.9",
    "lodash.defaultsdeep": "^4.6.1",
    "mocha": "^10.7.3",
    "open-editor": "^5.0.0",
    "replace": "^1.2.2",
    "rimraf": "^5.0.7",
    "semantic-release": "^24.1.1",
    "typescript": "5.5.x",
    "typescript-eslint": "^8.1.0"
  },
  "engines": {
    "node": ">=18"
  },
  "keywords": [
    "eslint",
    "plugin",
    "jsdoc"
  ],
  "license": "BSD-3-Clause",
  "lint-staged": {
    ".eslintignore": [
      "npm run lint-fix",
      "git add ."
    ],
    "*.js": "npm run lint-arg -- --fix"
  },
  "type": "module",
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./src/index.js",
      "require": "./dist/index.cjs"
    },
    "./getJsdocProcessorPlugin.js": {
      "types": "./dist/getJsdocProcessorPlugin.d.ts",
      "import": "./dist/getJsdocProcessorPlugin.cjs",
      "require": "./src/getJsdocProcessorPlugin.js"
    }
  },
  "name": "eslint-plugin-jsdoc",
  "mocha": {
    "reporter": "dot",
    "recursive": true,
    "timeout": 12000
  },
  "c8": {
    "branches": 100,
    "check-coverage": true,
    "exclude": [
      "src/rules/checkExamples.js"
    ],
    "functions": 100,
    "include": [
      "src/"
    ],
    "instrument": false,
    "lines": 100,
    "reporter": "text-summary",
    "sourceMap": false,
    "statements": 100
  },
  "peerDependencies": {
    "eslint": "^7.0.0 || ^8.0.0 || ^9.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/gajus/eslint-plugin-jsdoc"
  },
  "run-if-changed": {
    "package-lock.json": "npm run install-offline"
  },
  "scripts": {
    "tsc": "tsc",
    "tsc-build": "tsc -p tsconfig-prod.json",
    "build": "rimraf ./dist && cross-env NODE_ENV=production babel ./src --out-file-extension .cjs --out-dir ./dist --copy-files --source-maps --ignore ./src/bin/*.js --no-copy-ignored && replace 'require\\(\"\\.(.*?)\\.[^.]*?\"\\)' 'require(\".$1.cjs\")' 'dist' -r --include=\"*.cjs\" && cp src/import-worker.mjs dist/import-worker.mjs && pnpm tsc-build",
    "check-docs": "babel-node ./src/bin/generateDocs.js --check",
    "create-docs": "npm run create-options && babel-node ./src/bin/generateDocs.js",
    "create-rule": "babel-node ./src/bin/generateRule.js",
    "create-options": "node ./src/bin/generateOptions.mjs",
    "install-offline": "pnpm install --prefer-offline --no-audit",
    "lint": "npm run lint-arg -- .",
    "lint-arg": "eslint",
    "lint-fix": "npm run lint-arg -- --fix .",
    "prepare": "husky",
    "test-no-cov": "cross-env BABEL_ENV=test mocha",
    "test": "c8 npm run test-no-cov",
    "test-cov": "cross-env TIMING=1 c8 --reporter text npm run test-no-cov",
    "test-index": "npm run test-no-cov -- test/rules/index.js"
  },
  "version": "50.3.1"
}
