{
  "name": "@inaiat/jsonschema-avro",
  "description": "Convert JSON Schema into Apache Avro schema",
  "license": "MIT",
  "author": "Inaiat",
  "homepage": "https://github.com/inaiat/jsonschema-avro#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/inaiat/jsonschema-avro.git"
  },
  "bugs": {
    "url": "https://github.com/inaiat/jsonschema-avro/issues"
  },
  "version": "1.0.5",
  "main": "dist/index.js",
  "bin": "dist/bin/cli.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "scripts": {
    "test": "NODE_ENV=test nyc mocha 'test/*.ts'",
    "prepare": "npm run build",
    "build": "rm -rf dist && tsc -p . --declaration",
    "lint": "tslint -p .",
    "lint:fix": "npm run lint -- --fix"
  },
  "dependencies": {
    "@types/json-schema": "^7.0.11",
    "ts-node": "^10.9.1",
    "yargs": "^17.7.1"
  },
  "devDependencies": {
    "@types/mocha": "^10.0.1",
    "@types/node": "^18.15.13",
    "@types/yargs": "^17.0.24",
    "husky": "^8.0.3",
    "lint-staged": "^13.2.1",
    "mocha": "^10.2.0",
    "nyc": "^15.1.0",
    "prettier": "^2.8.7",
    "source-map-support": "^0.5.21",
    "tslint": "^6.1.3",
    "typescript": "^5.0.4"
  },
  "peerDependencies": {
    "tslib": "^2.5.0"
  },
  "keywords": [
    "avro",
    "json-schema",
    "jsonschema"
  ],
  "husky": {
    "hooks": {
      "pre-push": "npm test",
      "pre-commit": "lint-staged"
    }
  },
  "licenses": [
    {
      "type": "MIT",
      "url": "https://github.com/inaiat/jsonschema-avro/blob/master/LICENSE"
    }
  ],
  "lint-staged": {
    "*.ts": [
      "prettier --parser typescript --write",
      "npm run lint:fix",
      "git add"
    ]
  },
  "nyc": {
    "extension": [
      ".ts",
      ".tsx"
    ],
    "exclude": [
      "**/*.d.ts",
      "**/*.spec.ts",
      "**/*.test.ts",
      "**/*.js",
      "node_modules",
      "test"
    ],
    "reporter": [
      "html",
      "text",
      "text-summary",
      "lcov"
    ],
    "all": true,
    "report-dir": "./coverage"
  }
}