{
    "name": "rtx-openapi-typescript-codegen",
    "version": "0.1.41",
    "description": "NodeJS library that generates Typescript or Javascript clients based on the OpenAPI specification.",
    "author": "Paden Portillo",
    "homepage": "https://github.com/Paden/rtx-openapi-typescript-codegen",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/Paden/rtx-openapi-typescript-codegen.git"
    },
    "bugs": {
        "url": "https://github.com/Paden/rtx-openapi-typescript-codegen/issues"
    },
    "license": "MIT",
    "keywords": [
        "openapi",
        "swagger",
        "codegen",
        "generator",
        "client",
        "typescript",
        "javascript",
        "yaml",
        "json",
        "fetch",
        "xhr",
        "node"
    ],
    "maintainers": [
        {
            "name": "Paden Portillo",
            "email": "padenportillo@gmail.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",
        "pushVersion": "npm run build && npm publish",
        "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": "6.0.0",
        "commander": "5.1.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.6",
        "@babel/preset-env": "7.9.6",
        "@babel/preset-typescript": "7.9.0",
        "@types/jest": "25.2.2",
        "@types/js-yaml": "3.12.4",
        "@types/mkdirp": "1.0.0",
        "@types/node": "14.0.1",
        "@types/rimraf": "3.0.0",
        "@typescript-eslint/eslint-plugin": "2.33.0",
        "@typescript-eslint/parser": "2.33.0",
        "codecov": "3.6.5",
        "eslint": "7.0.0",
        "eslint-config-prettier": "6.11.0",
        "eslint-plugin-prettier": "3.1.3",
        "eslint-plugin-simple-import-sort": "5.0.3",
        "glob": "7.1.6",
        "jest": "26.0.1",
        "jest-cli": "26.0.1",
        "prettier": "2.0.5",
        "typescript": "3.9.2"
    }
}
