package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "eslint-plugin-react-hooks",
  3. "description": "ESLint rules for React Hooks",
  4. "version": "4.3.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. "build-info.json",
  14. "index.js",
  15. "cjs"
  16. ],
  17. "keywords": [
  18. "eslint",
  19. "eslint-plugin",
  20. "eslintplugin",
  21. "react"
  22. ],
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/facebook/react/issues"
  26. },
  27. "engines": {
  28. "node": ">=10"
  29. },
  30. "homepage": "https://reactjs.org/",
  31. "peerDependencies": {
  32. "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
  33. },
  34. "devDependencies": {
  35. "@typescript-eslint/parser-v2": "npm:@typescript-eslint/parser@^2.26.0",
  36. "@typescript-eslint/parser-v3": "npm:@typescript-eslint/parser@^3.10.0",
  37. "@typescript-eslint/parser-v4": "npm:@typescript-eslint/parser@^4.1.0",
  38. "@typescript-eslint/parser-v5": "npm:@typescript-eslint/parser@^5.0.0-0"
  39. }
  40. }