package.json 1.0 KB

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