{
  "name": "mongoose-schema-to-typescript-interface",
  "version": "1.13.2",
  "description": "Generates TypeScript interfaces from Mongoose Schemas",
  "main": "./dist/generate-interface.js",
  "scripts": {
    "commit": "./node_modules/.bin/git-cz",
    "test": "npm run build:single && ./node_modules/.bin/mocha ./dist/test/*.spec.js -w",
    "test:single": "npm run build:single && ./node_modules/.bin/mocha ./dist/test/*.spec.js",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post",
    "typings-install": "./node_modules/.bin/typings install",
    "lint": "./node_modules/.bin/tslint ./src/**/*.ts",
    "build": "./node_modules/.bin/tsc -w --outDir ./dist",
    "build:single": "./node_modules/.bin/tsc --outDir ./dist",
    "prepublish": "npm run build:single"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/JamesHenry/mongoose-schema-to-typescript-interface.git"
  },
  "keywords": [
    "mongoose",
    "typescript",
    "schema",
    "interface"
  ],
  "author": "James Henry <james@henry.sc>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/JamesHenry/mongoose-schema-to-typescript-interface/issues"
  },
  "homepage": "https://github.com/JamesHenry/mongoose-schema-to-typescript-interface#readme",
  "devDependencies": {
    "chai": "3.5.0",
    "commitizen": "2.5.0",
    "cz-conventional-changelog": "1.1.5",
    "ghooks": "1.0.3",
    "mocha": "2.4.5",
    "semantic-release": "^4.3.5",
    "tslint": "3.2.1",
    "tslint-eslint-rules": "1.0.1",
    "typescript": "2.0.3",
    "typings": "0.8.1"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    },
    "ghooks": {
      "pre-commit": "npm run lint"
    }
  },
  "bin": {
    "ms2tsi": "./bin/ms2tsi"
  },
  "dependencies": {
    "babel-preset-es2015": "6.6.0",
    "babel-register": "6.8.0",
    "commander": "2.9.0",
    "lodash.camelcase": "4.1.0",
    "lodash.upperfirst": "4.1.1",
    "mongoose": "4.4.14"
  }
}