package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "name": "eslint-webpack-plugin",
  3. "version": "2.7.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": ">= 10.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": "^4.0.0 || ^5.0.0"
  47. },
  48. "dependencies": {
  49. "@types/eslint": "^7.29.0",
  50. "arrify": "^2.0.1",
  51. "jest-worker": "^27.5.1",
  52. "micromatch": "^4.0.5",
  53. "normalize-path": "^3.0.0",
  54. "schema-utils": "^3.1.1"
  55. },
  56. "devDependencies": {
  57. "@babel/cli": "^7.17.10",
  58. "@babel/core": "^7.17.10",
  59. "@babel/preset-env": "^7.17.10",
  60. "@commitlint/cli": "^12.1.4",
  61. "@commitlint/config-conventional": "^12.1.4",
  62. "@types/fs-extra": "^9.0.13",
  63. "@types/micromatch": "^4.0.2",
  64. "@types/normalize-path": "^3.0.0",
  65. "@types/webpack": "^5.28.0",
  66. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  67. "babel-eslint": "^10.1.0",
  68. "babel-jest": "^27.5.1",
  69. "chokidar": "^3.5.2",
  70. "cross-env": "^7.0.3",
  71. "del": "^6.0.0",
  72. "del-cli": "^3.0.1",
  73. "eslint": "^8.14.0",
  74. "eslint-config-prettier": "^8.5.0",
  75. "eslint-plugin-import": "^2.26.0",
  76. "fs-extra": "^9.1.0",
  77. "husky": "^6.0.0",
  78. "jest": "^27.5.1",
  79. "lint-staged": "^10.5.4",
  80. "npm-run-all": "^4.1.5",
  81. "prettier": "^2.6.2",
  82. "standard-version": "^9.3.2",
  83. "typescript": "^4.6.4",
  84. "webpack": "^5.72.0"
  85. },
  86. "keywords": [
  87. "eslint",
  88. "lint",
  89. "linter",
  90. "plugin",
  91. "webpack"
  92. ],
  93. "jest": {
  94. "testTimeout": 60000
  95. }
  96. }