nestjs-resilience
Version:
A module for improving the reliability and fault-tolerance of your NestJS applications
90 lines (89 loc) • 2.28 kB
JSON
{
"name": "nestjs-resilience",
"description": "A module for improving the reliability and fault-tolerance of your NestJS applications",
"version": "3.1.2",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"prepublish:npm": "npm run build",
"publish:npm": "release-it",
"prepublish:dev": "npm run build",
"publish:dev": "npm publish --access public --tag dev",
"prepare": "husky",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ignore-pattern .gitignore src/**/*.ts",
"test": "jest"
},
"lint-staged": {
"*.ts": "npm run format"
},
"directories": {
"lib": "src",
"test": "test"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"nestjs",
"resilience",
"fault-tolerance",
"reliability",
"retry",
"timeout",
"bulkhead",
"circuit-breaker",
"rate-limiting",
"cache",
"nest",
"hystrix"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SocketSomeone/nestjs-resilience"
},
"bugs": {
"url": "https://github.com/SocketSomeone/nestjs-resilience"
},
"author": "Alexey Filippov <socket.someone@gmail.com>",
"contributors": [
"Alexey Filippov <socket.someone@gmail.com>"
],
"dependencies": {
"cache-manager": "6.4.1"
},
"devDependencies": {
"@commitlint/cli": "19.8.0",
"@commitlint/config-angular": "19.8.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@favware/npm-deprecate": "2.0.0",
"@nestjs/common": "10.4.15",
"@nestjs/core": "10.4.15",
"@nestjs/testing": "10.4.15",
"@types/jest": "29.5.14",
"@types/node": "22.13.10",
"eslint": "^9.18.0",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "5.2.3",
"globals": "^16.0.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.5.0",
"prettier": "3.5.3",
"reflect-metadata": "0.2.2",
"release-it": "18.1.2",
"rimraf": "6.0.1",
"rxjs": "7.8.2",
"ts-jest": "29.2.6",
"ts-node": "10.9.2",
"typescript": "5.8.2",
"typescript-eslint": "^8.21.0"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"reflect-metadata": "^0.1.13 || ^0.2.0",
"rxjs": "^7.2.0"
}
}