package.json 4.0 KB

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