package.json 1.1 KB

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