{
  "name": "kafkajs-async-retry",
  "version": "1.0.0",
  "description": "A helper intended for use with KafkaJS that assists with retrying failed messages an an async manner",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/index.js",
    "dist/index.d.ts",
    "README.md"
  ],
  "author": {
    "name": "Brian Phillips",
    "email": "bphillips@shutterstock.com"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.0.3",
    "@jest/globals": "^28.1.2",
    "@types/ip": "^1.1.0",
    "@types/node": "^18.0.3",
    "@typescript-eslint/eslint-plugin": "^5.30.6",
    "@typescript-eslint/parser": "^5.30.6",
    "@vidavidorra/commitlint-config": "^4.0.4",
    "eslint": "^8.19.0",
    "eslint-config-prettier": "^8.5.0",
    "husky": "^8.0.1",
    "ip": "^1.1.5",
    "jest": "^28.1.2",
    "kafkajs": "^2.1.0",
    "lint-staged": "^13.0.3",
    "prettier": "^2.6.2",
    "semantic-release": "^19.0.3",
    "ts-jest": "^28.0.2",
    "ts-node": "^10.8.2",
    "typescript": "^4.6.3"
  },
  "peerDependencies": {
    "kafkajs": "^2.1.0"
  },
  "scripts": {
    "build": "tsc --project ./tsconfig-dist.json",
    "clean": "tsc --build ./tsconfig-dist.json --clean && rm -rf dist coverage *.tsbuildinfo",
    "test": "jest",
    "test:integration": "INTEGRATION_KAFKA_BROKER=localhost:9092 jest --coverage=false src/integration.test.ts",
    "lint": "eslint --ext .mjs,.cjs,.js,.ts .",
    "format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json|md)\"",
    "prepare": "husky install",
    "semantic-release": "semantic-release"
  },
  "lint-staged": {
    "*.{?js,?ts}": [
      "eslint --cache --fix",
      "npm run format"
    ],
    "*.{md,json}": "npm run format"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/shutterstock/kafkajs-async-retry.git"
  }
}
