b5821f77e7
Bumps the dependencies group with 3 updates: [axios-retry](https://github.com/softonic/axios-retry), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [typescript](https://github.com/Microsoft/TypeScript). Updates `axios-retry` from 4.4.0 to 4.4.1 - [Changelog](https://github.com/softonic/axios-retry/blob/master/CHANGELOG.md) - [Commits](https://github.com/softonic/axios-retry/compare/v4.4.0...v4.4.1) Updates `@types/node` from 20.14.6 to 20.14.7 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `typescript` from 5.4.5 to 5.5.2 - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](https://github.com/Microsoft/TypeScript/compare/v5.4.5...v5.5.2) --- updated-dependencies: - dependency-name: axios-retry dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
74 lines
1.9 KiB
JSON
74 lines
1.9 KiB
JSON
{
|
|
"name": "@furality/nestjs-http-promise",
|
|
"version": "0.0.0-semantically-released",
|
|
"private": false,
|
|
"keywords": [
|
|
"nestjs",
|
|
"http",
|
|
"promise",
|
|
"retry",
|
|
"retries",
|
|
"axios"
|
|
],
|
|
"description": "promise implementation of nestjs http module with retries feature using axios-retry and axios",
|
|
"author": "furality",
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"url": "https://github.com/furality/nestjs-http-promise#readme",
|
|
"scripts": {
|
|
"build": "rimraf -rf dist && tsc -p tsconfig.json",
|
|
"format": "prettier --write \"{lib}/**/*.ts\"",
|
|
"lint": "eslint 'lib/**/*.ts' --fix",
|
|
"prepare": "npm run build"
|
|
},
|
|
"dependencies": {
|
|
"axios-retry": "^4.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/common": "^10.3.9",
|
|
"@nestjs/core": "^10.3.9",
|
|
"@nestjs/platform-express": "^10.3.9",
|
|
"@types/node": "^20.14.7",
|
|
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
|
"@typescript-eslint/parser": "^7.13.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-no-type-assertion": "^1.3.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"eslint-plugin-simple-import-sort": "^12.1.0",
|
|
"eslint-plugin-sonarjs": "^0.25.1",
|
|
"eslint-plugin-unused-imports": "^3.2.0",
|
|
"husky": "^9.0.11",
|
|
"lint-staged": "^15.2.7",
|
|
"prettier": "^3.3.2",
|
|
"rimraf": "^5.0.7",
|
|
"typescript": "^5.5.2"
|
|
},
|
|
"peerDependencies": {
|
|
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
|
|
"axios": "^1.6.5"
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/furality/nestjs-http-promise"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://npm.pkg.github.com"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|