async-retrier
Version:
Async retrier is a simple library that allows you to retry async functions with a delay between each retry.
44 lines (43 loc) • 1.13 kB
JSON
{
"name": "async-retrier",
"version": "1.1.3",
"description": "Async retrier is a simple library that allows you to retry async functions with a delay between each retry.",
"main": "build/index.js",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"build:watch": "tsc -w",
"start": "node build/index.js",
"start:watch": "nodemon build/index.js",
"prepare": "npm run build",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"async",
"async retrier",
"retrier",
"retry requests",
"retry async requests"
],
"author": "LyricalString",
"license": "MIT",
"files": [
"build/**/*"
],
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/LyricalString/Async-Retrier.git"
},
"homepage": "https://github.com/LyricalString/Async-Retrier",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.1.1",
"jest": "^29.5.0",
"typescript": "^5.0.4"
},
"dependencies": {
"ts-jest": "^29.1.0"
}
}