undici-retry
Version:
Library for handling retry logic with undici HTTP client
59 lines (58 loc) • 1.28 kB
JSON
{
"name": "undici-retry",
"version": "6.0.0",
"license": "MIT",
"description": "Library for handling retry logic with undici HTTP client",
"maintainers": [
{
"name": "Igor Savin",
"email": "kibertoad@gmail.com"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome check index.ts lib test biome.json",
"lint:fix": "biome check --write index.ts lib test biome.json",
"prepublishOnly": "npm run build"
},
"dependencies": {
},
"peerDependencies": {
"undici": ">=7.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@kibertoad/biome-config": "^1.2.1",
"@types/node": "^20.17.9",
"@vitest/coverage-v8": "^2.1.8",
"mockttp": "^3.15.5",
"typescript": "^5.7.2",
"undici": "^7.1.0",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git://github.com/kibertoad/undici-retry.git"
},
"keywords": [
"undici",
"retry",
"error",
"http",
"client",
"https"
],
"homepage": "https://github.com/kibertoad/undici-retry",
"files": [
"README.md",
"LICENSE",
"dist/*"
]
}