package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "eslint-plugin-react-hooks",
  3. "description": "ESLint rules for React Hooks",
  4. "version": "4.6.0",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/facebook/react.git",
  8. "directory": "packages/eslint-plugin-react-hooks"
  9. },
  10. "files": [
  11. "LICENSE",
  12. "README.md",
  13. "index.js",
  14. "cjs"
  15. ],
  16. "keywords": [
  17. "eslint",
  18. "eslint-plugin",
  19. "eslintplugin",
  20. "react"
  21. ],
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/facebook/react/issues"
  25. },
  26. "engines": {
  27. "node": ">=10"
  28. },
  29. "homepage": "https://reactjs.org/",
  30. "peerDependencies": {
  31. "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
  32. },
  33. "devDependencies": {
  34. "@typescript-eslint/parser-v2": "npm:@typescript-eslint/parser@^2.26.0",
  35. "@typescript-eslint/parser-v3": "npm:@typescript-eslint/parser@^3.10.0",
  36. "@typescript-eslint/parser-v4": "npm:@typescript-eslint/parser@^4.1.0",
  37. "@typescript-eslint/parser-v5": "npm:@typescript-eslint/parser@^5.0.0-0"
  38. }
  39. }