advanced-retry
Version:
A retry library with advanced features
119 lines (118 loc) • 2.97 kB
JSON
{
"name": "advanced-retry",
"version": "1.2.1",
"description": "A retry library with advanced features",
"main": "./lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf ./lib/",
"cm": "cz",
"lint": "eslint ./src/ --fix",
"prepare": "husky",
"semantic-release": "semantic-release",
"test:watch": "jest --watch",
"test": "jest --coverage",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schaier-io/advanced-retry.git"
},
"license": "MIT",
"author": {
"name": "Sandro Schaier",
"email": "npm@schaier.io",
"url": "https://github.com/schaier-io"
},
"engines": {
"node": ">=12.0"
},
"keywords": [
"retry",
"advanced-retry",
"retry-strategy",
"retry-library",
"async-retry"
],
"bugs": {
"url": "https://github.com/schaier-io/advanced-retry/issues"
},
"homepage": "https://github.com/schaier-io/advanced-retry#readme",
"devDependencies": {
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"semantic-release": "^24.2.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.2.1",
"typescript": "^5.7.3"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslintcache --fix"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "build",
"section": "Dependencies and Other Build Updates",
"hidden": false
}
]
}
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}