eslint-webpack-plugin
Version:
A ESLint plugin for webpack
106 lines (105 loc) • 3.4 kB
JSON
{
"name": "eslint-webpack-plugin",
"version": "5.0.3",
"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",
"flatted": "^3.3.3",
"jest-worker": "^29.7.0",
"micromatch": "^4.0.8",
"normalize-path": "^3.0.0",
"schema-utils": "^4.3.2"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.33.0",
"@eslint/markdown": "^7.0.0",
"@stylistic/eslint-plugin": "^5.2.3",
"@types/fs-extra": "^11.0.4",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.15.30",
"@types/normalize-path": "^3.0.2",
"chokidar": "^4.0.3",
"cross-env": "^7.0.3",
"cspell": "^8.19.4",
"del": "^8.0.0",
"del-cli": "^6.0.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-webpack": "^4.6.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jsdoc": "^54.0.0",
"eslint-plugin-n": "^17.21.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-unicorn": "^60.0.0",
"fs-extra": "^11.3.0",
"husky": "^9.1.7",
"jest": "^30.0.0",
"lint-staged": "^15.5.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"standard-version": "^9.5.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.39.1",
"webpack": "^5.99.9"
},
"peerDependencies": {
"eslint": "^8.0.0 || ^9.0.0",
"webpack": "^5.0.0"
},
"engines": {
"node": ">= 18.12.0"
}
}