{
  "name": "avro-schema-builder",
  "description": "avro-schema-builder",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "version": "1.0.0",
  "files": [
    "lib/"
  ],
  "repository": "git@github.com:diogofcunha/avro-schema-builder.git",
  "author": "Diogo Cunha",
  "license": "MIT",
  "scripts": {
    "prebuild": "rm -rf lib",
    "postbuild": "rm -rf `find lib -name '__tests__'`",
    "build": "tsc",
    "lint": "eslint './src/**/*.{ts,tsx}'",
    "prettier:write": "prettier --ignore-path .gitignore --write './**/*.{md,json,yaml,js,jsx,ts,tsx}'",
    "prettier:check": "prettier --ignore-path .gitignore --list-different './**/*.{md,json,yaml,js,jsx,ts,tsx}'",
    "test": "jest",
    "ci:test": "jest --silent --maxWorkers=2"
  },
  "dependencies": {},
  "devDependencies": {
    "@commitlint/cli": "^17.4.2",
    "@threads/tsconfig": "^3.0.2",
    "@tsconfig/recommended": "^1.0.1",
    "@types/jest": "^29.1.2",
    "@typescript-eslint/eslint-plugin": "^5.40.0",
    "@typescript-eslint/parser": "^5.40.0",
    "eslint": "^8.25.0",
    "husky": "^3.0.8",
    "jest": "^29.2.0",
    "lint-staged": "^9.4.2",
    "prettier": "^1.18.2",
    "ts-jest": "^29.0.3",
    "typescript": "^4.8.4"
  },
  "jest": {
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx"
    ],
    "transform": {
      "^.+\\.tsx?$": [
        "ts-jest",
        {
          "isolatedModules": true
        }
      ]
    },
    "testEnvironment": "node",
    "testMatch": [
      "<rootDir>/src/**/__tests__/**/*.test.ts?(x)"
    ]
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "src/**/*.{ts,tsx}": [
      "prettier --write",
      "eslint ./src",
      "git add"
    ],
    "*.{md,json,yaml,js,jsx}": [
      "prettier --write",
      "git add"
    ]
  },
  "keywords": [
    "avro",
    "schema",
    "schema-builder",
    "javascript",
    "typescript",
    "data-processing",
    "serialization",
    "big-data",
    "data-serialization",
    "avro-schema",
    "nodejs",
    "data-modeling",
    "data-interchange",
    "type-safe",
    "data-structures"
  ]
}
