mirror of
https://github.com/ferdikoomen/openapi-typescript-codegen.git
synced 2025-12-08 20:16:21 +00:00
123 lines
4.1 KiB
JSON
123 lines
4.1 KiB
JSON
{
|
|
"name": "openapi-typescript-codegen",
|
|
"version": "0.19.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",
|
|
"prepublishOnly": "npm run clean && npm run release",
|
|
"codecov": "codecov --token=66c30c23-8954-4892-bef9-fbaed0a2e42b"
|
|
},
|
|
"dependencies": {
|
|
"camelcase": "^6.3.0",
|
|
"commander": "^9.0.0",
|
|
"handlebars": "^4.7.6",
|
|
"json-schema-ref-parser": "^9.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/build-angular": "13.2.1",
|
|
"@angular/animations": "13.2.1",
|
|
"@angular/cli": "13.2.1",
|
|
"@angular/common": "13.2.1",
|
|
"@angular/compiler": "13.2.1",
|
|
"@angular/compiler-cli": "13.2.1",
|
|
"@angular/core": "13.2.1",
|
|
"@angular/forms": "13.2.1",
|
|
"@angular/platform-browser": "13.2.1",
|
|
"@angular/platform-browser-dynamic": "13.2.1",
|
|
"@angular/router": "13.2.1",
|
|
"@babel/cli": "7.16.8",
|
|
"@babel/core": "7.16.12",
|
|
"@babel/preset-env": "7.16.11",
|
|
"@babel/preset-typescript": "7.16.7",
|
|
"@rollup/plugin-commonjs": "21.0.1",
|
|
"@rollup/plugin-node-resolve": "13.1.3",
|
|
"@rollup/plugin-typescript": "8.3.0",
|
|
"@types/cross-spawn": "6.0.2",
|
|
"@types/express": "4.17.13",
|
|
"@types/glob": "7.2.0",
|
|
"@types/jest": "27.4.0",
|
|
"@types/node": "17.0.14",
|
|
"@types/node-fetch": "2.5.12",
|
|
"@types/qs": "6.9.7",
|
|
"@typescript-eslint/eslint-plugin": "5.10.2",
|
|
"@typescript-eslint/parser": "5.10.2",
|
|
"abort-controller": "3.0.0",
|
|
"axios": "0.25.0",
|
|
"codecov": "3.8.3",
|
|
"cross-spawn": "7.0.3",
|
|
"eslint": "8.8.0",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-plugin-prettier": "4.0.0",
|
|
"eslint-plugin-simple-import-sort": "7.0.0",
|
|
"express": "4.17.2",
|
|
"form-data": "4.0.0",
|
|
"glob": "7.2.0",
|
|
"jest": "27.4.7",
|
|
"jest-cli": "27.4.7",
|
|
"node-fetch": "2.6.6",
|
|
"prettier": "2.5.1",
|
|
"puppeteer": "13.1.3",
|
|
"qs": "6.10.3",
|
|
"rimraf": "3.0.2",
|
|
"rollup": "2.67.0",
|
|
"rollup-plugin-node-externals": "3.1.2",
|
|
"rollup-plugin-terser": "7.0.2",
|
|
"rxjs": "7.5.2",
|
|
"ts-node": "10.4.0",
|
|
"tslib": "2.3.1",
|
|
"typescript": "4.5.5",
|
|
"zone.js": "0.11.4"
|
|
}
|
|
}
|