You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
134 lines
4.1 KiB
JSON
134 lines
4.1 KiB
JSON
{
|
|
"_from": "eslint-webpack-plugin@^3.1.0",
|
|
"_id": "eslint-webpack-plugin@3.2.0",
|
|
"_inBundle": false,
|
|
"_integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==",
|
|
"_location": "/eslint-webpack-plugin",
|
|
"_phantomChildren": {
|
|
"@types/json-schema": "7.0.15",
|
|
"@types/node": "20.9.4",
|
|
"ajv-formats": "2.1.1",
|
|
"fast-deep-equal": "3.1.3",
|
|
"merge-stream": "2.0.0",
|
|
"require-from-string": "2.0.2",
|
|
"uri-js": "4.4.1"
|
|
},
|
|
"_requested": {
|
|
"type": "range",
|
|
"registry": true,
|
|
"raw": "eslint-webpack-plugin@^3.1.0",
|
|
"name": "eslint-webpack-plugin",
|
|
"escapedName": "eslint-webpack-plugin",
|
|
"rawSpec": "^3.1.0",
|
|
"saveSpec": null,
|
|
"fetchSpec": "^3.1.0"
|
|
},
|
|
"_requiredBy": [
|
|
"/@vue/cli-plugin-eslint"
|
|
],
|
|
"_resolved": "https://registry.npmmirror.com/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz",
|
|
"_shasum": "1978cdb9edc461e4b0195a20da950cf57988347c",
|
|
"_spec": "eslint-webpack-plugin@^3.1.0",
|
|
"_where": "D:\\xyProject\\cacfrontend\\node_modules\\@vue\\cli-plugin-eslint",
|
|
"author": {
|
|
"name": "Ricardo Gobbo de Souza",
|
|
"email": "ricardogobbosouza@yahoo.com.br"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/webpack-contrib/eslint-webpack-plugin/issues"
|
|
},
|
|
"bundleDependencies": false,
|
|
"dependencies": {
|
|
"@types/eslint": "^7.29.0 || ^8.4.1",
|
|
"jest-worker": "^28.0.2",
|
|
"micromatch": "^4.0.5",
|
|
"normalize-path": "^3.0.0",
|
|
"schema-utils": "^4.0.0"
|
|
},
|
|
"deprecated": false,
|
|
"description": "A ESLint plugin for webpack",
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.17.10",
|
|
"@babel/core": "^7.17.10",
|
|
"@babel/preset-env": "^7.17.10",
|
|
"@commitlint/cli": "^16.2.4",
|
|
"@commitlint/config-conventional": "^16.2.4",
|
|
"@types/fs-extra": "^9.0.13",
|
|
"@types/micromatch": "^4.0.2",
|
|
"@types/normalize-path": "^3.0.0",
|
|
"@types/webpack": "^5.28.0",
|
|
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
|
"babel-eslint": "^10.1.0",
|
|
"babel-jest": "^28.0.3",
|
|
"chokidar": "^3.5.3",
|
|
"cross-env": "^7.0.3",
|
|
"del": "^6.0.0",
|
|
"del-cli": "^4.0.1",
|
|
"eslint": "^8.14.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"fs-extra": "^10.1.0",
|
|
"husky": "^7.0.4",
|
|
"jest": "^28.0.3",
|
|
"lint-staged": "^12.4.1",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^2.6.2",
|
|
"standard-version": "^9.3.2",
|
|
"typescript": "^4.6.4",
|
|
"webpack": "^5.72.0"
|
|
},
|
|
"engines": {
|
|
"node": ">= 12.13.0"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"types"
|
|
],
|
|
"funding": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/webpack"
|
|
},
|
|
"homepage": "https://github.com/webpack-contrib/eslint-webpack-plugin",
|
|
"keywords": [
|
|
"eslint",
|
|
"lint",
|
|
"linter",
|
|
"plugin",
|
|
"webpack"
|
|
],
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"name": "eslint-webpack-plugin",
|
|
"peerDependencies": {
|
|
"eslint": "^7.0.0 || ^8.0.0",
|
|
"webpack": "^5.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/webpack-contrib/eslint-webpack-plugin.git"
|
|
},
|
|
"scripts": {
|
|
"build": "npm-run-all -p \"build:**\"",
|
|
"build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files",
|
|
"build:types": "tsc --declaration --emitDeclarationOnly --outDir types && prettier \"types/**/*.ts\" --write",
|
|
"clean": "del-cli dist types",
|
|
"commitlint": "commitlint --from=master",
|
|
"lint": "npm-run-all -l -p \"lint:**\"",
|
|
"lint:js": "eslint --cache .",
|
|
"lint:prettier": "prettier -w --list-different .",
|
|
"lint:types": "tsc --pretty --noEmit",
|
|
"prebuild": "npm run clean",
|
|
"prepare": "npm run build",
|
|
"pretest": "npm run lint",
|
|
"release": "standard-version",
|
|
"security": "npm audit",
|
|
"start": "npm run build -- -w",
|
|
"test": "npm run test:coverage",
|
|
"test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
|
|
"test:only": "cross-env NODE_ENV=test jest --testTimeout=60000",
|
|
"test:watch": "npm run test:only -- --watch"
|
|
},
|
|
"types": "types/index.d.ts",
|
|
"version": "3.2.0"
|
|
}
|