mirror of
https://github.com/ferdikoomen/openapi-typescript-codegen.git
synced 2025-12-08 20:16:21 +00:00
Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.10.4 to 7.11.0. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.11.0/packages/babel-preset-env) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
96 lines
3.0 KiB
JSON
96 lines
3.0 KiB
JSON
{
|
|
"name": "openapi-typescript-codegen",
|
|
"version": "0.4.9",
|
|
"description": "NodeJS library that generates Typescript or Javascript 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",
|
|
"codegen",
|
|
"generator",
|
|
"client",
|
|
"typescript",
|
|
"javascript",
|
|
"yaml",
|
|
"json",
|
|
"fetch",
|
|
"xhr",
|
|
"node"
|
|
],
|
|
"maintainers": [
|
|
{
|
|
"name": "Ferdi Koomen",
|
|
"email": "info@madebyferdi.com"
|
|
}
|
|
],
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.js",
|
|
"bin": {
|
|
"openapi": "bin/index.js"
|
|
},
|
|
"files": [
|
|
"bin/index.js",
|
|
"dist/index.js",
|
|
"src/templates/**/*.ts"
|
|
],
|
|
"scripts": {
|
|
"clean": "rimraf ./dist ./test/result ./coverage ./samples/examples",
|
|
"build": "rollup --config",
|
|
"run": "node ./test/index.js",
|
|
"test": "jest",
|
|
"test:update": "jest --updateSnapshot",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"eslint": "eslint \"./src/**/*.ts\" \"./bin/index.js\"",
|
|
"eslint:fix": "eslint \"./src/**/*.ts\" \"./bin/index.js\" --fix",
|
|
"prettier": "prettier \"./src/**/*.ts\" \"./bin/index.js\" --check",
|
|
"prettier:fix": "prettier \"./src/**/*.ts\" \"./bin/index.js\" --write",
|
|
"codecov": "codecov --token=66c30c23-8954-4892-bef9-fbaed0a2e42b"
|
|
},
|
|
"dependencies": {
|
|
"camelcase": "5.3.1",
|
|
"commander": "6.0.0",
|
|
"handlebars": "4.7.6",
|
|
"js-yaml": "3.14.0",
|
|
"mkdirp": "1.0.4",
|
|
"path": "0.12.7",
|
|
"rimraf": "3.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.10.5",
|
|
"@babel/preset-env": "7.11.0",
|
|
"@babel/preset-typescript": "7.10.4",
|
|
"@rollup/plugin-commonjs": "14.0.0",
|
|
"@rollup/plugin-node-resolve": "8.4.0",
|
|
"@types/jest": "26.0.7",
|
|
"@types/js-yaml": "3.12.5",
|
|
"@types/mkdirp": "1.0.1",
|
|
"@types/node": "14.0.26",
|
|
"@types/rimraf": "3.0.0",
|
|
"@typescript-eslint/eslint-plugin": "3.7.0",
|
|
"@typescript-eslint/parser": "3.7.0",
|
|
"codecov": "3.7.2",
|
|
"eslint": "7.5.0",
|
|
"eslint-config-prettier": "6.11.0",
|
|
"eslint-plugin-prettier": "3.1.4",
|
|
"eslint-plugin-simple-import-sort": "5.0.3",
|
|
"glob": "7.1.6",
|
|
"jest": "26.1.0",
|
|
"jest-cli": "26.1.0",
|
|
"prettier": "2.0.5",
|
|
"rollup": "2.23.0",
|
|
"rollup-plugin-terser": "6.1.0",
|
|
"rollup-plugin-typescript2": "0.27.1",
|
|
"typescript": "3.9.7"
|
|
}
|
|
}
|