nestjs-http-promise/package.json
dependabot[bot] c6234e30bb
build(deps-dev): bump the dependencies group with 5 updates
Bumps the dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@nestjs/common](https://github.com/nestjs/nest/tree/HEAD/packages/common) | `10.3.8` | `10.3.9` |
| [@nestjs/core](https://github.com/nestjs/nest/tree/HEAD/packages/core) | `10.3.8` | `10.3.9` |
| [@nestjs/platform-express](https://github.com/nestjs/nest/tree/HEAD/packages/platform-express) | `10.3.8` | `10.3.9` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.13.0` | `20.14.0` |
| [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.3.0` |


Updates `@nestjs/common` from 10.3.8 to 10.3.9
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v10.3.9/packages/common)

Updates `@nestjs/core` from 10.3.8 to 10.3.9
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v10.3.9/packages/core)

Updates `@nestjs/platform-express` from 10.3.8 to 10.3.9
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v10.3.9/packages/platform-express)

Updates `@types/node` from 20.13.0 to 20.14.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `prettier` from 3.2.5 to 3.3.0
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/prettier/compare/3.2.5...3.3.0)

---
updated-dependencies:
- dependency-name: "@nestjs/common"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@nestjs/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@nestjs/platform-express"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-03 14:39:17 +00:00

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.3.0"
},
"devDependencies": {
"@nestjs/common": "^10.3.9",
"@nestjs/core": "^10.3.9",
"@nestjs/platform-express": "^10.3.9",
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"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.5",
"prettier": "^3.3.0",
"rimraf": "^5.0.7",
"typescript": "^5.4.5"
},
"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"
]
}