{
  "name": "json-schema-to-typescript-cli",
  "version": "3.0.0",
  "description": "compile json schema to typescript typings",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "scripts": {
    "build": "npm run build-sources && npm test && npm run lint",
    "build-sources": "tsc -p ./tsconfig.json",
    "build-tests": "rm -rf ./dist_tests && tsc -p ./tsconfig.test.json",
    "watch": "tsc -p ./tsconfig.json --watch & tsc -p ./tsconfig.test.json --watch",
    "lint": "tslint -c tslint.json src/*.ts",
    "test": "npm run build-tests && ava",
    "tdd": "npm run watch & ava --watch",
    "prepublish": "npm run build"
  },
  "bin": {
    "json-schema-to-typescript": "./bin/json-schema-to-typescript.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bcherny/json-schema-to-typescript.git"
  },
  "keywords": [
    "json",
    "schema",
    "typescript",
    "compile",
    "transpile",
    "api",
    "interface",
    "typing",
    "share"
  ],
  "author": "Boris Cherny <boris@performancejs.com> (http://performancejs.com/)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/bcherny/json-schema-to-typescript/issues"
  },
  "homepage": "https://github.com/bcherny/json-schema-to-typescript#readme",
  "dependencies": {
    "commander": "^2.9.0",
    "lodash": "^4.6.1"
  },
  "devDependencies": {
    "@types/lodash": "0.0.28",
    "@types/node": "^4.0.30",
    "ava": "^0.16.0",
    "tslint": "^3.15.1",
    "typescript": "^2.0.0"
  },
  "ava": {
    "files": ["./dist_tests/test/test.js"],
    "source": [
      "./dist_tests/test/cases/*.js",
      "./dist_tests/src/*.js"
    ],
    "vebose": true
  }
}
