1{ 2 "name": "promise-retry", 3 "version": "2.0.1", 4 "description": "Retries a function that returns a promise, leveraging the power of the retry module.", 5 "main": "index.js", 6 "scripts": { 7 "test": "mocha --bail -t 10000" 8 }, 9 "bugs": { 10 "url": "https://github.com/IndigoUnited/node-promise-retry/issues/" 11 }, 12 "repository": { 13 "type": "git", 14 "url": "git://github.com/IndigoUnited/node-promise-retry.git" 15 }, 16 "keywords": [ 17 "retry", 18 "promise", 19 "backoff", 20 "repeat", 21 "replay" 22 ], 23 "author": "IndigoUnited <hello@indigounited.com> (http://indigounited.com)", 24 "license": "MIT", 25 "devDependencies": { 26 "expect.js": "^0.3.1", 27 "mocha": "^8.0.1", 28 "sleep-promise": "^8.0.1" 29 }, 30 "dependencies": { 31 "err-code": "^2.0.2", 32 "retry": "^0.12.0" 33 }, 34 "engines": { 35 "node": ">=10" 36 } 37} 38