{
  "name": "json-to-avro",
  "version": "1.1.1",
  "description": "Helper functions to convert JSON objects to Avro according to your schema. And back to JSON.",
  "main": "index.js",
  "directories": {
    "test": "tests"
  },
  "scripts": {
    "test": "eslint . && jest --verbose --coverage",
    "tests": "jest --verbose --watchAll --coverage"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mycujoo/json-to-avro.git"
  },
  "keywords": [
    "avro",
    "json",
    "avsc",
    "kafka"
  ],
  "author": "Joeri Malmberg",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mycujoo/json-to-avro/issues"
  },
  "homepage": "https://github.com/mycujoo/json-to-avro#readme",
  "jest": {
    "testEnvironment": "node",
    "transform": {},
    "coveragePathIgnorePatterns": [
      "config"
    ],
    "modulePathIgnorePatterns": [
      "config"
    ],
    "watchPathIgnorePatterns": [
      "json"
    ]
  },
  "eslintConfig": {
    "parserOptions": {
      "ecmaVersion": 2017,
      "sourceType": "script"
    },
    "env": {
      "es6": true,
      "node": true,
      "jest": true
    },
    "extends": [
      "standard",
      "plugin:prettier/recommended"
    ],
    "rules": {
      "no-console": "warn",
      "strict": "error"
    }
  },
  "prettier": {
    "semi": false,
    "singleQuote": true,
    "trailingComma": "all"
  },
  "pre-commit": [
    "test"
  ],
  "devDependencies": {
    "eslint": "^5.9.0",
    "eslint-config-prettier": "^3.3.0",
    "eslint-config-standard": "^12.0.0",
    "eslint-plugin-import": "^2.14.0",
    "eslint-plugin-node": "^8.0.0",
    "eslint-plugin-prettier": "^3.0.1",
    "eslint-plugin-promise": "^4.0.1",
    "eslint-plugin-standard": "^4.0.0",
    "jest": "^23.6.0",
    "pre-commit": "^1.2.2",
    "prettier": "^1.15.3"
  },
  "dependencies": {
    "avsc": "^5.4.7",
    "debug": "^4.1.1",
    "lodash": "^4.17.11"
  }
}
