{
  "name": "@chasdevs/avro-to-typescript",
  "version": "1.4.0",
  "description": "Package for converting Avro schema files (.avsc) to TypeScript class files",
  "repository": "git@github.com:chasdevs/avro-to-typescript.git",
  "keywords": [
    "avro",
    "avro schemas",
    "typescript",
    "compiler",
    "converter"
  ],
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "bin": {
    "avro-to-typescript": "./dist/src/cli.js"
  },
  "directories": {
    "doc": "docs",
    "dist": "dist",
    "src": "src",
    "test": "test"
  },
  "scripts": {
    "start": "npm run build && node ./dist/src/index.js",
    "build": "rm -rf dist && tsc",
    "prepublishOnly": "npm run test && npm run generate-barrels",
    "generate-barrels": "barrelsby --directory src/ --delete --include components src/interfaces --exclude base Avro/compression Avro/schema_registry",
    "test": "npm run tslint & npm run mocha",
    "tslint": "tslint --project tsconfig.json --format stylish",
    "tslint-jenkins": "tslint --project tsconfig.json -o tslint.xml -t checkstyle",
    "mocha": "mocha dist/test --reporter=nyan --recursive",
    "travis:test": "npm run build && npm run test",
    "premocha": "npm run build"
  },
  "author": "chasdevs@gmail.com",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/chasdevs/avro-to-typescript/issues"
  },
  "homepage": "https://github.com/chasdevs/avro-to-typescript#readme",
  "dependencies": {
    "avsc": "^5.4.13",
    "command-line-args": "^5.0.2",
    "command-line-usage": "^5.0.5",
    "fs-extra": "^5.0.0"
  },
  "devDependencies": {
    "@degordian/standards": "^1.0.8",
    "@degordian/testing-toolkit": "^1.0.18",
    "@types/args": "^3.0.0",
    "@types/command-line-args": "^4.0.3",
    "@types/command-line-usage": "^5.0.1",
    "@types/fs-extra": "^5.0.3",
    "@types/node": "^9.6.21",
    "mocha-typescript": "^1.1.16",
    "tslint": "^5.10.0",
    "typescript": "^2.9.1"
  }
}
