dependabot-preview[bot] adc7b7dc0f
Bump @types/jest from 24.0.22 to 24.0.23
Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 24.0.22 to 24.0.23.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-11-13 20:32:16 +00:00

90 lines
2.6 KiB
JSON

{
"name": "openapi-typescript-codegen",
"version": "0.0.1",
"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",
"dist/**/*.js",
"src/templates/javascript/*.hbs",
"src/templates/typescript/*.hbs"
],
"scripts": {
"clean": "rimraf \"./dist\" \"./test/tmp\"",
"build": "tsc",
"start": "tsc && node ./test/index.js",
"test": "jest ./src",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"eslint": "eslint \"./src/**/*.ts\"",
"eslint:fix": "eslint \"./src/**/*.ts\" --fix",
"prettier": "prettier \"./src/**/*.ts\" --check",
"prettier:fix": "prettier \"./src/**/*.ts\" --write"
},
"devDependencies": {
"@babel/core": "7.7.2",
"@babel/preset-env": "7.7.1",
"@babel/preset-typescript": "7.7.2",
"@types/jest": "24.0.23",
"@types/js-yaml": "3.12.1",
"@types/mkdirp": "0.5.2",
"@types/node": "12.12.6",
"@types/rimraf": "2.0.3",
"@types/yup": "0.26.24",
"@typescript-eslint/eslint-plugin": "2.6.1",
"@typescript-eslint/parser": "2.6.1",
"camelcase": "5.3.1",
"chalk": "2.4.2",
"commander": "4.0.0",
"eslint": "6.6.0",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-prettier": "3.1.1",
"glob": "7.1.6",
"handlebars": "4.5.1",
"jest": "24.9.0",
"jest-cli": "24.9.0",
"js-yaml": "3.13.1",
"mkdirp": "0.5.1",
"path": "0.12.7",
"prettier": "1.18.2",
"rimraf": "3.0.0",
"typescript": "3.7.2",
"yup": "0.27.0"
}
}