package.json 918 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "retry-as-promised",
  3. "version": "5.0.0",
  4. "description": "Retry a failed promise",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "cross-env DEBUG=retry-as-promised* ./node_modules/.bin/mocha --check-leaks --colors -t 10000 --reporter spec test/promise.test.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/mickhansen/retry-as-promised.git"
  12. },
  13. "keywords": [
  14. "retry",
  15. "promise",
  16. "bluebird"
  17. ],
  18. "author": "Mick Hansen <maker@mhansen.io>",
  19. "license": "MIT",
  20. "bugs": {
  21. "url": "https://github.com/mickhansen/retry-as-promised/issues"
  22. },
  23. "homepage": "https://github.com/mickhansen/retry-as-promised",
  24. "dependencies": {},
  25. "files": [],
  26. "devDependencies": {
  27. "chai": "^4.2.0",
  28. "chai-as-promised": "^7.1.1",
  29. "cross-env": "^5.2.0",
  30. "mocha": "^9.1.3",
  31. "moment": "^2.10.6",
  32. "sinon": "^7.0.0",
  33. "sinon-chai": "^3.2.0"
  34. }
  35. }