UNPKG

async-await-retry

Version:

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

54 lines (53 loc) 1.17 kB
{ "name": "async-await-retry", "version": "2.1.0", "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/**", "index.d.ts" ], "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": "^8.54.0", "jest": "^29.7.0", "typescript": "^5.3.2" } }