dependabot[bot] cdcb0f2259
build(deps-dev): Bump @typescript-eslint/eslint-plugin (#1976)
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 6.18.0 to 6.18.1.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.18.1/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-10 21:58:53 +00:00

129 lines
4.3 KiB
JSON

{
"name": "openapi-typescript-codegen",
"version": "0.26.0",
"description": "Library that generates Typescript clients based on the OpenAPI specification.",
"author": "Ferdi Koomen",
"homepage": "https://github.com/ferdikoomen/openapi-typescript-codegen",
"repository": {
"type": "git",
"url": "git+https://github.com/ferdikoomen/openapi-typescript-codegen.git"
},
"bugs": {
"url": "https://github.com/ferdikoomen/openapi-typescript-codegen/issues"
},
"license": "MIT",
"keywords": [
"openapi",
"swagger",
"generator",
"typescript",
"yaml",
"json",
"fetch",
"xhr",
"axios",
"angular",
"node"
],
"maintainers": [
{
"name": "Ferdi Koomen",
"email": "info@madebyferdi.com"
}
],
"main": "dist/index.js",
"types": "types/index.d.ts",
"bin": {
"openapi": "bin/index.js"
},
"files": [
"bin/index.js",
"dist/index.js",
"types/index.d.ts"
],
"scripts": {
"clean": "rimraf ./dist ./test/generated ./test/e2e/generated ./samples/generated ./coverage ./node_modules/.cache",
"build": "rollup --config --environment NODE_ENV:development",
"build:watch": "rollup --config --environment NODE_ENV:development --watch",
"release": "rollup --config --environment NODE_ENV:production",
"validate": "tsc --project tsconfig.json --noEmit",
"run": "node ./test/index.js",
"test": "jest --selectProjects UNIT",
"test:update": "jest --selectProjects UNIT --updateSnapshot",
"test:watch": "jest --selectProjects UNIT --watch",
"test:coverage": "jest --selectProjects UNIT --coverage",
"test:e2e": "jest --selectProjects E2E --runInBand --verbose",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"prepare": "npm run clean && npm run release",
"codecov": "codecov --token=66c30c23-8954-4892-bef9-fbaed0a2e42b",
"docker": "docker build -t eeelenbaas/openapi-typescript-codegen ."
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.1.0",
"camelcase": "^6.3.0",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.0.9",
"@angular/animations": "17.0.8",
"@angular/cli": "17.0.9",
"@angular/common": "17.0.8",
"@angular/compiler": "17.0.8",
"@angular/compiler-cli": "17.0.8",
"@angular/core": "17.0.8",
"@angular/forms": "17.0.8",
"@angular/platform-browser": "17.0.8",
"@angular/platform-browser-dynamic": "17.0.8",
"@angular/router": "17.0.8",
"@babel/cli": "7.23.4",
"@babel/core": "7.23.7",
"@babel/preset-env": "7.23.8",
"@babel/preset-typescript": "7.23.3",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@types/cross-spawn": "6.0.6",
"@types/express": "4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/glob": "8.1.0",
"@types/jest": "29.5.11",
"@types/node": "20.10.8",
"@types/node-fetch": "2.6.10",
"@types/qs": "6.9.11",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"abort-controller": "3.0.0",
"axios": "1.6.5",
"codecov": "3.8.3",
"cross-spawn": "7.0.3",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-simple-import-sort": "10.0.0",
"express": "4.18.2",
"form-data": "4.0.0",
"glob": "10.3.10",
"jest": "29.7.0",
"jest-cli": "29.7.0",
"node-fetch": "2.7.0",
"prettier": "3.1.1",
"puppeteer": "21.7.0",
"qs": "6.11.2",
"rimraf": "5.0.5",
"rollup": "4.7.0",
"rxjs": "7.8.1",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.2.2",
"zone.js": "0.14.3"
},
"overrides": {
"node-fetch": "2.7.0",
"rollup": "4.7.0"
}
}