{
  "name": "swagger-typescript-axios-codegen2",
  "main": "./lib/codegen.js",
  "version": "1.9.1",
  "description": "A Swagger Codegenerator tailored for typescript.",
  "scripts": {
    "pretest": "npm run build",
    "test": "grunt && jest",
    "clean": "rm -rf tmp-*",
    "build": "tsc --project tsconfig.json",
    "build:watch": "npm run build -- --watch",
    "test:watch": "jest --watch",
    "prepublishOnly": "npm run build",
    "prettier": "prettier --write \"src/**/*.ts\""
  },
  "bin": {
    "swagger2ts": "bin/swagger2ts.js"
  },
  "bugs": {
    "url": "https://github.com/mtennoe/swagger-typescript-codegen/issues"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/mtennoe/swagger-typescript-codegen.git"
  },
  "keywords": [
    "swagger",
    "rest"
  ],
  "author": {
    "name": "Marius Tennøe",
    "email": "mariust@outlook.com"
  },
  "license": "Apache-2.0",
  "homepage": "https://github.com/mtennoe/swagger-typescript-codegen",
  "dependencies": {
    "commander": "^2.19.0",
    "js-beautify": "^1.8.9",
    "jshint": "^2.9.7",
    "lodash": "^4.17.15",
    "mustache": "^3.0.1",
    "update-notifier": "^2.5.0"
  },
  "devDependencies": {
    "@types/commander": "^2.12.2",
    "@types/jest": "^23.3.10",
    "@types/js-beautify": "^1.8.0",
    "@types/lodash": "^4.14.119",
    "@types/mustache": "^0.8.32",
    "@types/node": "^10.12.18",
    "final-fs": "^1.6.0",
    "grunt": "^1.0.4",
    "grunt-contrib-jshint": "^2.0.0",
    "grunt-jsonlint": "^1.0.4",
    "grunt-vows": "^0.4.1",
    "husky": "^1.3.1",
    "jest": "^23.6.0",
    "lint-staged": "^8.1.0",
    "matchdep": "^2.0.0",
    "prettier": "1.15.3",
    "request": "^2.88.0",
    "superagent": "^4.0.0",
    "tmp": "0.0.33",
    "typescript": "^3.2.2",
    "vows": "^0.8.2"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{ts,md},": [
      "prettier --write",
      "git add"
    ]
  }
}
