package.json 705 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "is-retry-allowed",
  3. "version": "2.2.0",
  4. "description": "Check whether a request can be retried based on the `error.code`",
  5. "license": "MIT",
  6. "repository": "sindresorhus/is-retry-allowed",
  7. "funding": {
  8. "url": "https://github.com/sponsors/sindresorhus"
  9. },
  10. "author": {
  11. "name": "Sindre Sorhus",
  12. "email": "sindresorhus@gmail.com",
  13. "url": "sindresorhus.com"
  14. },
  15. "engines": {
  16. "node": ">=10"
  17. },
  18. "scripts": {
  19. "test": "xo && ava && tsd"
  20. },
  21. "files": [
  22. "index.js",
  23. "index.d.ts"
  24. ],
  25. "keywords": [
  26. "retry",
  27. "retries",
  28. "allowed",
  29. "check",
  30. "http",
  31. "https",
  32. "request",
  33. "fetch"
  34. ],
  35. "devDependencies": {
  36. "ava": "^3.14.0",
  37. "tsd": "^0.14.0",
  38. "xo": "^0.36.1"
  39. }
  40. }