{
  "name": "kafkajs-lz4",
  "version": "2.0.0-beta.0",
  "description": "LZ4 compression codec for the KafkaJS library",
  "keywords": [
    "kafka",
    "kafkajs",
    "compression",
    "lz4",
    "codec"
  ],
  "homepage": "https://oss.indix.com/",
  "bugs": {
    "url": "https://github.com/indix/kafkajs-lz4/issues",
    "email": "opensource@indix.com"
  },
  "license": "MIT",
  "author": {
    "name": "GP",
    "email": "gp@indix.com",
    "url": "https://github.com/paambaati"
  },
  "files": [
    "lib/**"
  ],
  "main": "lib/index.js",
  "repository": "https://github.com/indix/kafkajs-lz4",
  "scripts": {
    "build": "tsc --project './tsconfig.json'",
    "build:test": "tsc --project './tsconfig.test.json'",
    "lint": "eslint \"./src/**/*.ts\" \"./test/**/*.ts\" --ext ts --cache --report-unused-disable-directives",
    "lint:format": "npm run lint -- --fix",
    "test:local": "ts-node test/*.test.ts",
    "test": "./scripts/testWithKafka.sh \"yarn test:local --ci --maxWorkers=4 --no-watchman\"",
    "precommit": "yarn lint && yarn lint:test",
    "prepublishOnly": "rm -rf lib/ && yarn build"
  },
  "dependencies": {
    "lz4-asm": "0.4.2"
  },
  "devDependencies": {
    "@types/node": "^14.14.10",
    "@types/tape": "^4.2.33",
    "@typescript-eslint/eslint-plugin": "4.9.0",
    "@typescript-eslint/parser": "4.9.0",
    "eslint": "7.14.0",
    "eslint-config-prettier": "6.15.0",
    "eslint-plugin-import": "2.22.1",
    "eslint-plugin-prettier": "3.2.0",
    "kafkajs": "^1.15.0",
    "prettier": "^2.2.1",
    "tape": "^5.0.1",
    "ts-node": "^9.1.0",
    "typescript": "4.1.2"
  },
  "engines": {
    "node": ">=8.0.0"
  }
}
