mirror of
https://github.com/ferdikoomen/openapi-typescript-codegen.git
synced 2025-12-08 20:16:21 +00:00
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 2.28.0 to 2.29.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v2.29.0/packages/eslint-plugin) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
96 lines
2.8 KiB
JSON
96 lines
2.8 KiB
JSON
{
|
|
"name": "openapi-typescript-codegen",
|
|
"version": "0.2.7",
|
|
"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",
|
|
"types": "dist/index.d.ts",
|
|
"bin": {
|
|
"openapi": "bin/index.js"
|
|
},
|
|
"files": [
|
|
"bin/index.js",
|
|
"dist/index.js",
|
|
"dist/index.d.ts",
|
|
"dist/**/*.js",
|
|
"dist/**/*.d.ts",
|
|
"src/templates/**/*.hbs",
|
|
"src/templates/**/*.ts"
|
|
],
|
|
"scripts": {
|
|
"clean": "rimraf ./dist ./test/result ./coverage",
|
|
"build": "tsc",
|
|
"run": "tsc && node ./test/index.js",
|
|
"test": "tsc && jest",
|
|
"test:update": "tsc && jest --updateSnapshot",
|
|
"test:watch": "tsc && jest --watch",
|
|
"test:coverage": "tsc && jest --coverage",
|
|
"eslint": "eslint \"./src/**/*.ts\"",
|
|
"eslint:fix": "eslint \"./src/**/*.ts\" --fix",
|
|
"prettier": "prettier \"./src/**/*.ts\" --check",
|
|
"prettier:fix": "prettier \"./src/**/*.ts\" --write",
|
|
"codecov": "codecov --token=66c30c23-8954-4892-bef9-fbaed0a2e42b"
|
|
},
|
|
"dependencies": {
|
|
"camelcase": "5.3.1",
|
|
"commander": "5.0.0",
|
|
"handlebars": "4.7.6",
|
|
"js-yaml": "3.13.1",
|
|
"mkdirp": "1.0.4",
|
|
"path": "0.12.7",
|
|
"rimraf": "3.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.9.0",
|
|
"@babel/preset-env": "7.9.5",
|
|
"@babel/preset-typescript": "7.9.0",
|
|
"@types/jest": "25.2.1",
|
|
"@types/js-yaml": "3.12.3",
|
|
"@types/mkdirp": "1.0.0",
|
|
"@types/node": "13.13.0",
|
|
"@types/rimraf": "3.0.0",
|
|
"@typescript-eslint/eslint-plugin": "2.29.0",
|
|
"@typescript-eslint/parser": "2.28.0",
|
|
"codecov": "3.6.5",
|
|
"eslint": "6.8.0",
|
|
"eslint-config-prettier": "6.10.1",
|
|
"eslint-plugin-prettier": "3.1.3",
|
|
"eslint-plugin-simple-import-sort": "5.0.2",
|
|
"glob": "7.1.6",
|
|
"jest": "25.4.0",
|
|
"jest-cli": "25.4.0",
|
|
"prettier": "2.0.4",
|
|
"typescript": "3.8.3"
|
|
}
|
|
}
|