UNPKG

async-await-retry

Version:

Simple module to retry a function with async/await syntax !

53 lines (52 loc) 1.15 kB
{ "name": "async-await-retry", "version": "1.2.3", "description": "Simple module to retry a function with async/await syntax !", "main": "index.js", "bin": "./index.js", "types": "./index.d.ts", "exports": { "require": "./index.js", "import": "./index.js" }, "files": [ "src/**" ], "engines": { "node": ">=7.6.0" }, "keywords": [ "retry", "backoff", "repeat", "replay", "async", "await", "promises", "retries", "error" ], "homepage": "https://github.com/VoodooTeam/async-await-retry", "repository": { "type": "git", "url": "git+https://github.com/VoodooTeam/async-await-retry.git" }, "scripts": { "types": "tsc -p tsconfig.json", "test": "./node_modules/.bin/jest", "linter": "./node_modules/.bin/eslint -c ./.eslintrc ./", "all": "npm run lint && npm run test" }, "author": { "name": "Vincent Vallet", "email": "wallet77@gmail.com", "url": "https://github.com/wallet77" }, "license": "MIT", "dependencies": {}, "devDependencies": { "eslint": "^7.32.0", "jest": "^27.1.0", "typescript": "^4.3.2" } }