{
  "name": "@benbria/openapi-typescript-generator",
  "version": "1.0.2",
  "description": "Generate typescript types from an openapi document",
  "main": "dist/generator.js",
  "types": "dist/generator.d.ts",
  "files": [
    "dist/**/*",
    "bin/**/*"
  ],
  "bin": {
    "benbria-openapi-generator": "bin/cli.js"
  },
  "scripts": {
    "test": "npm run build && npm run lint && npm run test:unittest",
    "precommit:test": "npm run build && lint-staged && npm run precommit:unittest",
    "build": "tsc",
    "clean": "rm -rf dist types coverage",
    "test:unittest": "tsc -p test && nyc mocha 'test/**/*.@(ts|tsx|js|jsx)'",
    "precommit:unittest": "tsc -p test && mocha --reporter progress 'test/**/*.@(ts|tsx|js|jsx)'",
    "lint": "npm run lint:source && npm run lint:tests",
    "lint:source": "eslint --ext .ts --ext .tsx src",
    "lint:tests": "eslint --ext .ts --ext .tsx test",
    "prepare": "npm run build",
    "prepublishOnly": "npm run build && npm test",
    "semantic-release": "semantic-release"
  },
  "lint-staged": {
    "src/**/*.ts": [
      "eslint --ext ts --ext tsx"
    ],
    "test/**/*.ts": [
      "eslint --ext ts --ext tsx"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/benbria/openapi-typescript-generator.git"
  },
  "keywords": [
    "openapi"
  ],
  "author": {
    "name": "Jason Walton",
    "email": "jwalton@benbria.ca",
    "url": "https://benbria.ca"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/exegesis-js/benbria/openapi-typescript-generator/issues"
  },
  "homepage": "https://github.com/benbria/openapi-typescript-generator#readme",
  "devDependencies": {
    "@types/chai": "^4.2.11",
    "@types/fancy-log": "^1.3.1",
    "@types/glob": "^7.1.1",
    "@types/json-schema-traverse": "^0.4.0",
    "@types/lodash": "^4.14.152",
    "@types/mocha": "^7.0.2",
    "@types/node": "^12.0.0",
    "@types/prettier": "^2.0.0",
    "@types/yargs": "^15.0.5",
    "@typescript-eslint/eslint-plugin": "^3.0.0",
    "@typescript-eslint/parser": "^3.0.0",
    "chai": "^4.2.0",
    "chai-as-promised": "^7.1.1",
    "coveralls": "^3.1.0",
    "eslint": "^7.0.0",
    "eslint-config-prettier": "^6.11.0",
    "husky": "^4.2.5",
    "mocha": "^7.1.2",
    "nyc": "^15.0.1",
    "prettier": "^2.0.5",
    "pretty-quick": "^2.0.1",
    "semantic-release": "^17.0.7",
    "ts-node": "^8.10.1",
    "typescript": "^3.9.3"
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged && npm run test:pre-commit"
    }
  },
  "dependencies": {
    "fancy-log": "^1.3.3",
    "glob": "^7.1.6",
    "json-schema-ref-parser": "^9.0.1",
    "json-schema-to-typescript": "^9.1.0",
    "json-schema-traverse": "^0.4.1",
    "lodash": "^4.17.15",
    "openapi3-ts": "^1.3.0",
    "promise-breaker": "^5.0.0",
    "promise-tools": "^2.1.0",
    "yargs": "^15.3.1"
  }
}
