package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "fetch-retry",
  3. "version": "5.0.6",
  4. "description": "Extend any fetch library with retry functionality",
  5. "repository": "https://github.com/jonbern/fetch-retry.git",
  6. "main": "index.js",
  7. "browser": "dist/fetch-retry.umd.js",
  8. "types": "index.d.ts",
  9. "scripts": {
  10. "lint": "eslint index.js ./test/**/*.js",
  11. "test": "nyc mocha test/**/**.js && npm run lint",
  12. "integration-test": "mocha test/integration/",
  13. "build": "rollup -c",
  14. "prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\""
  15. },
  16. "keywords": [
  17. "fetch",
  18. "retry",
  19. "http",
  20. "retry",
  21. "Fetch API"
  22. ],
  23. "author": "Jon K. Bernhardsen",
  24. "license": "MIT",
  25. "dependencies": {},
  26. "devDependencies": {
  27. "body-parser": "^1.19.0",
  28. "chai": "^4.2.0",
  29. "chai-as-promised": "^7.1.1",
  30. "eslint": "^6.8.0",
  31. "expectations": "^0.7.1",
  32. "express": "^4.17.1",
  33. "husky": "^7.0.0",
  34. "mocha": "^10.2.0",
  35. "node-fetch": "^2.6.9",
  36. "nyc": "^14.1.1",
  37. "rollup": "^2.52.3",
  38. "@rollup/plugin-commonjs": "^19.0.0",
  39. "sinon": "^6.3.5"
  40. }
  41. }