{
  "name": "eslint-webpack-plugin",
  "version": "6.0.0",
  "description": "A ESLint plugin for webpack",
  "keywords": [
    "eslint",
    "lint",
    "linter",
    "plugin",
    "webpack"
  ],
  "homepage": "https://github.com/webpack/eslint-webpack-plugin",
  "bugs": "https://github.com/webpack/eslint-webpack-plugin/issues",
  "repository": "webpack/eslint-webpack-plugin",
  "funding": {
    "type": "opencollective",
    "url": "https://opencollective.com/webpack"
  },
  "license": "MIT",
  "author": "Ricardo Gobbo de Souza <ricardogobbosouza@yahoo.com.br>",
  "main": "dist/index.js",
  "types": "types/index.d.ts",
  "files": [
    "dist",
    "types"
  ],
  "scripts": {
    "start": "npm run build -- -w",
    "clean": "del-cli dist types",
    "prebuild": "npm run clean",
    "build:types": "tsc --declaration --emitDeclarationOnly --outDir types && prettier \"types/**/*.ts\" --write",
    "build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files",
    "build": "npm-run-all -p \"build:**\"",
    "commitlint": "commitlint --from=main",
    "security": "npm audit --omit=dev",
    "lint:prettier": "prettier -w --list-different .",
    "lint:code": "eslint --cache .",
    "lint:spelling": "cspell \"**/*.*\"",
    "lint:types": "tsc --pretty --noEmit",
    "lint": "npm-run-all -l -p \"lint:**\"",
    "fix:code": "npm run lint:code -- --fix",
    "fix:prettier": "npm run lint:prettier -- --write",
    "fix": "npm-run-all -l fix:code fix:prettier",
    "test:only": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_ENV=test jest --testTimeout=60000",
    "test:watch": "npm run test:only -- --watch",
    "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
    "pretest": "npm run lint",
    "test": "npm run test:coverage",
    "prepare": "npm run build",
    "release": "standard-version"
  },
  "dependencies": {
    "@types/eslint": "^9.6.1",
    "micromatch": "^4.0.8",
    "normalize-path": "^3.0.0",
    "schema-utils": "^4.3.3"
  },
  "devDependencies": {
    "@babel/cli": "^7.28.6",
    "@babel/core": "^7.29.0",
    "@babel/preset-env": "^7.29.2",
    "@commitlint/cli": "^20.5.0",
    "@commitlint/config-conventional": "^20.5.0",
    "@types/fs-extra": "^11.0.4",
    "@types/micromatch": "^4.0.10",
    "@types/node": "^25.5.0",
    "@types/normalize-path": "^3.0.2",
    "chokidar": "^5.0.0",
    "cross-env": "^10.1.0",
    "cspell": "^9.7.0",
    "del": "^8.0.1",
    "del-cli": "^7.0.0",
    "eslint": "^9.39.4",
    "eslint-config-webpack": "^4.9.4",
    "fs-extra": "^11.3.4",
    "globals": "^17.4.0",
    "husky": "^9.1.7",
    "jest": "^30.3.0",
    "lint-staged": "^16.4.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.8.1",
    "standard-version": "^9.5.0",
    "typescript": "^5.9.3",
    "webpack": "^5.105.4"
  },
  "peerDependencies": {
    "eslint": "^9.0.0 || ^10.0.0",
    "webpack": "^5.0.0"
  },
  "engines": {
    "node": ">= 20.9.0"
  }
}
