@bernierllc/retry-policy
Version:
Atomic retry policy utilities with exponential backoff and jitter
50 lines • 1.2 kB
JSON
{
"name": "@bernierllc/retry-policy",
"version": "0.1.6",
"description": "Atomic retry policy utilities with exponential backoff and jitter",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"retry",
"backoff",
"exponential",
"jitter",
"policy",
"bernierllc"
],
"author": "Bernier LLC",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bernier-llc/tools"
},
"dependencies": {
"cosmiconfig": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.4.0",
"typescript": "^5.0.0",
"zod": "^3.22.0"
},
"peerDependencies": {
"p-retry": "^5.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:run": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"clean": "rimraf dist",
"config:init": "node scripts/config-init.js",
"config:validate": "node scripts/config-validate.js",
"config:print": "node scripts/config-print.js"
}
}