95 lines
2.8 KiB
JSON

{
"name": "openapi-typescript-codegen",
"version": "0.1.14",
"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/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": "4.1.1",
"glob": "7.1.6",
"handlebars": "4.7.3",
"js-yaml": "3.13.1",
"mkdirp": "1.0.3",
"path": "0.12.7",
"rimraf": "3.0.2"
},
"devDependencies": {
"@babel/core": "7.8.4",
"@babel/preset-env": "7.8.4",
"@babel/preset-typescript": "7.8.3",
"@types/jest": "25.1.2",
"@types/js-yaml": "3.12.2",
"@types/mkdirp": "0.5.2",
"@types/node": "13.7.0",
"@types/rimraf": "2.0.3",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.0",
"codecov": "3.6.5",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-sort-imports-es6-autofix": "0.5.0",
"jest": "25.1.0",
"jest-cli": "25.1.0",
"prettier": "1.19.1",
"typescript": "3.7.5"
}
}