package.json 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "eslint-webpack-plugin",
  3. "version": "3.2.0",
  4. "description": "A ESLint plugin for webpack",
  5. "license": "MIT",
  6. "repository": "webpack-contrib/eslint-webpack-plugin",
  7. "author": "Ricardo Gobbo de Souza <ricardogobbosouza@yahoo.com.br>",
  8. "homepage": "https://github.com/webpack-contrib/eslint-webpack-plugin",
  9. "bugs": "https://github.com/webpack-contrib/eslint-webpack-plugin/issues",
  10. "funding": {
  11. "type": "opencollective",
  12. "url": "https://opencollective.com/webpack"
  13. },
  14. "main": "dist/index.js",
  15. "types": "types/index.d.ts",
  16. "engines": {
  17. "node": ">= 12.13.0"
  18. },
  19. "scripts": {
  20. "start": "npm run build -- -w",
  21. "clean": "del-cli dist types",
  22. "prebuild": "npm run clean",
  23. "build:types": "tsc --declaration --emitDeclarationOnly --outDir types && prettier \"types/**/*.ts\" --write",
  24. "build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files",
  25. "build": "npm-run-all -p \"build:**\"",
  26. "commitlint": "commitlint --from=master",
  27. "security": "npm audit",
  28. "lint:prettier": "prettier -w --list-different .",
  29. "lint:js": "eslint --cache .",
  30. "lint:types": "tsc --pretty --noEmit",
  31. "lint": "npm-run-all -l -p \"lint:**\"",
  32. "test:only": "cross-env NODE_ENV=test jest --testTimeout=60000",
  33. "test:watch": "npm run test:only -- --watch",
  34. "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
  35. "pretest": "npm run lint",
  36. "test": "npm run test:coverage",
  37. "prepare": "npm run build",
  38. "release": "standard-version"
  39. },
  40. "files": [
  41. "dist",
  42. "types"
  43. ],
  44. "peerDependencies": {
  45. "eslint": "^7.0.0 || ^8.0.0",
  46. "webpack": "^5.0.0"
  47. },
  48. "dependencies": {
  49. "@types/eslint": "^7.29.0 || ^8.4.1",
  50. "jest-worker": "^28.0.2",
  51. "micromatch": "^4.0.5",
  52. "normalize-path": "^3.0.0",
  53. "schema-utils": "^4.0.0"
  54. },
  55. "devDependencies": {
  56. "@babel/cli": "^7.17.10",
  57. "@babel/core": "^7.17.10",
  58. "@babel/preset-env": "^7.17.10",
  59. "@commitlint/cli": "^16.2.4",
  60. "@commitlint/config-conventional": "^16.2.4",
  61. "@types/fs-extra": "^9.0.13",
  62. "@types/micromatch": "^4.0.2",
  63. "@types/normalize-path": "^3.0.0",
  64. "@types/webpack": "^5.28.0",
  65. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  66. "babel-eslint": "^10.1.0",
  67. "babel-jest": "^28.0.3",
  68. "chokidar": "^3.5.3",
  69. "cross-env": "^7.0.3",
  70. "del": "^6.0.0",
  71. "del-cli": "^4.0.1",
  72. "eslint": "^8.14.0",
  73. "eslint-config-prettier": "^8.5.0",
  74. "eslint-plugin-import": "^2.26.0",
  75. "fs-extra": "^10.1.0",
  76. "husky": "^7.0.4",
  77. "jest": "^28.0.3",
  78. "lint-staged": "^12.4.1",
  79. "npm-run-all": "^4.1.5",
  80. "prettier": "^2.6.2",
  81. "standard-version": "^9.3.2",
  82. "typescript": "^4.6.4",
  83. "webpack": "^5.72.0"
  84. },
  85. "keywords": [
  86. "eslint",
  87. "lint",
  88. "linter",
  89. "plugin",
  90. "webpack"
  91. ]
  92. }