{
  "name": "redis-streams-broker",
  "version": "0.0.15",
  "description": "This package is a broker to redis stream data type, This package provides guaranteed message delivery feature with acknowledgement.",
  "main": "index.js",
  "scripts": {
    "mocha": "mocha",
    "test": "npm run redisstart && npm run mocha && npm run redisstop && npm run redisstart && npm run redisstop",
    "redisstop": "docker stop streamz",
    "redisstart": "npm run redisstop || node -v && docker run --name streamz -p 6379:6379 -itd --rm redis:latest",
    "rediscli": "docker exec -it streamz redis-cli",
    "push": "npm whoami && npm version patch && npm test && npm publish && git push --tags"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/LRagji/redis-streams-broker.git"
  },
  "keywords": [
    "redis",
    "stream",
    "streams",
    "message",
    "broker",
    "message",
    "acknowledgement",
    "laukik"
  ],
  "author": "Laukik",
  "license": "SEE LICENSE IN license.md",
  "bugs": {
    "url": "https://github.com/LRagji/redis-streams-broker/issues"
  },
  "homepage": "https://github.com/LRagji/redis-streams-broker#readme",
  "dependencies": {
    "nanoid": "^3.1.25",
    "redis-scripto2": "^0.2.2",
    "relief-valve": "^0.0.1"
  },
  "devDependencies": {
    "ioredis": "^4.26.0",
    "mocha": "^7.1.1",
    "redis": "^3.1.2"
  }
}