package.json 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. {
  2. "_from": "eslint-webpack-plugin@^3.1.0",
  3. "_id": "eslint-webpack-plugin@3.2.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==",
  6. "_location": "/eslint-webpack-plugin",
  7. "_phantomChildren": {
  8. "@types/estree": "1.0.7",
  9. "@types/json-schema": "7.0.15",
  10. "@types/node": "22.15.24",
  11. "ajv-formats": "2.1.1",
  12. "fast-deep-equal": "3.1.3",
  13. "fast-uri": "3.0.6",
  14. "has-flag": "4.0.0",
  15. "merge-stream": "2.0.0",
  16. "require-from-string": "2.0.2"
  17. },
  18. "_requested": {
  19. "type": "range",
  20. "registry": true,
  21. "raw": "eslint-webpack-plugin@^3.1.0",
  22. "name": "eslint-webpack-plugin",
  23. "escapedName": "eslint-webpack-plugin",
  24. "rawSpec": "^3.1.0",
  25. "saveSpec": null,
  26. "fetchSpec": "^3.1.0"
  27. },
  28. "_requiredBy": [
  29. "/@vue/cli-plugin-eslint"
  30. ],
  31. "_resolved": "https://registry.npmmirror.com/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz",
  32. "_shasum": "1978cdb9edc461e4b0195a20da950cf57988347c",
  33. "_spec": "eslint-webpack-plugin@^3.1.0",
  34. "_where": "E:\\vue_project\\el-table-column\\node_modules\\@vue\\cli-plugin-eslint",
  35. "author": {
  36. "name": "Ricardo Gobbo de Souza",
  37. "email": "ricardogobbosouza@yahoo.com.br"
  38. },
  39. "bugs": {
  40. "url": "https://github.com/webpack-contrib/eslint-webpack-plugin/issues"
  41. },
  42. "bundleDependencies": false,
  43. "dependencies": {
  44. "@types/eslint": "^7.29.0 || ^8.4.1",
  45. "jest-worker": "^28.0.2",
  46. "micromatch": "^4.0.5",
  47. "normalize-path": "^3.0.0",
  48. "schema-utils": "^4.0.0"
  49. },
  50. "deprecated": false,
  51. "description": "A ESLint plugin for webpack",
  52. "devDependencies": {
  53. "@babel/cli": "^7.17.10",
  54. "@babel/core": "^7.17.10",
  55. "@babel/preset-env": "^7.17.10",
  56. "@commitlint/cli": "^16.2.4",
  57. "@commitlint/config-conventional": "^16.2.4",
  58. "@types/fs-extra": "^9.0.13",
  59. "@types/micromatch": "^4.0.2",
  60. "@types/normalize-path": "^3.0.0",
  61. "@types/webpack": "^5.28.0",
  62. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  63. "babel-eslint": "^10.1.0",
  64. "babel-jest": "^28.0.3",
  65. "chokidar": "^3.5.3",
  66. "cross-env": "^7.0.3",
  67. "del": "^6.0.0",
  68. "del-cli": "^4.0.1",
  69. "eslint": "^8.14.0",
  70. "eslint-config-prettier": "^8.5.0",
  71. "eslint-plugin-import": "^2.26.0",
  72. "fs-extra": "^10.1.0",
  73. "husky": "^7.0.4",
  74. "jest": "^28.0.3",
  75. "lint-staged": "^12.4.1",
  76. "npm-run-all": "^4.1.5",
  77. "prettier": "^2.6.2",
  78. "standard-version": "^9.3.2",
  79. "typescript": "^4.6.4",
  80. "webpack": "^5.72.0"
  81. },
  82. "engines": {
  83. "node": ">= 12.13.0"
  84. },
  85. "files": [
  86. "dist",
  87. "types"
  88. ],
  89. "funding": {
  90. "type": "opencollective",
  91. "url": "https://opencollective.com/webpack"
  92. },
  93. "homepage": "https://github.com/webpack-contrib/eslint-webpack-plugin",
  94. "keywords": [
  95. "eslint",
  96. "lint",
  97. "linter",
  98. "plugin",
  99. "webpack"
  100. ],
  101. "license": "MIT",
  102. "main": "dist/index.js",
  103. "name": "eslint-webpack-plugin",
  104. "peerDependencies": {
  105. "eslint": "^7.0.0 || ^8.0.0",
  106. "webpack": "^5.0.0"
  107. },
  108. "repository": {
  109. "type": "git",
  110. "url": "git+https://github.com/webpack-contrib/eslint-webpack-plugin.git"
  111. },
  112. "scripts": {
  113. "build": "npm-run-all -p \"build:**\"",
  114. "build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files",
  115. "build:types": "tsc --declaration --emitDeclarationOnly --outDir types && prettier \"types/**/*.ts\" --write",
  116. "clean": "del-cli dist types",
  117. "commitlint": "commitlint --from=master",
  118. "lint": "npm-run-all -l -p \"lint:**\"",
  119. "lint:js": "eslint --cache .",
  120. "lint:prettier": "prettier -w --list-different .",
  121. "lint:types": "tsc --pretty --noEmit",
  122. "prebuild": "npm run clean",
  123. "prepare": "npm run build",
  124. "pretest": "npm run lint",
  125. "release": "standard-version",
  126. "security": "npm audit",
  127. "start": "npm run build -- -w",
  128. "test": "npm run test:coverage",
  129. "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
  130. "test:only": "cross-env NODE_ENV=test jest --testTimeout=60000",
  131. "test:watch": "npm run test:only -- --watch"
  132. },
  133. "types": "types/index.d.ts",
  134. "version": "3.2.0"
  135. }