{
  "name": "@deepsquads/graphql-redis-subscriptions",
  "version": "2.4.3",
  "description": "A graphql-subscriptions PubSub Engine using redis",
  "main": "dist/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/davidyaha/graphql-redis-subscriptions.git"
  },
  "keywords": [
    "graphql",
    "redis",
    "apollo",
    "subscriptions"
  ],
  "author": "David Yahalomi",
  "contributors": [
    {
      "name": "Michał Lytek",
      "url": "https://github.com/19majkel94"
    }
  ],
  "module": "dist/index.js",
  "typings": "dist/types/index.d.ts",
  "files": [
    "dist"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/davidyaha/graphql-redis-subscriptions/issues"
  },
  "homepage": "https://github.com/davidyaha/graphql-redis-subscriptions",
  "scripts": {
    "compile": "tsc",
    "test": "npm run coverage && npm run lint",
    "lint": "eslint src --ext ts",
    "watch": "tsc -w",
    "build": "rm -rf dist && tsc -p tsconfig.json && ncc build --quiet --minify",
    "testonly": "mocha --reporter spec src/test/tests.ts",
    "integration": "mocha --reporter spec src/test/integration-tests.ts",
    "coverage": "nyc --reporter=html --reporter=text mocha src/test/**/*.ts"
  },
  "dependencies": {
    "iterall": "^1.3.0"
  },
  "peerDependencies": {
    "graphql-subscriptions": "^1.0.0 || ^2.0.0"
  },
  "devDependencies": {
    "@istanbuljs/nyc-config-typescript": "^1.0.1",
    "@types/chai": "^4.3.1",
    "@types/chai-as-promised": "^7.1.5",
    "@types/ioredis": "^4.17.3",
    "@types/mocha": "^8.2.3",
    "@types/node": "16.11.7",
    "@types/simple-mock": "^0.8.1",
    "@typescript-eslint/eslint-plugin": "^4.0.0",
    "@typescript-eslint/parser": "^3.10.1",
    "@vercel/ncc": "^0.31.1",
    "chai": "^4.2.0",
    "chai-as-promised": "^7.1.1",
    "eslint": "^7.32.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.0.0",
    "graphql": "^15.7.2",
    "graphql-subscriptions": "^2.0.0",
    "ioredis": "^5.0.5",
    "mocha": "^10.4.0",
    "nyc": "^15.1.0",
    "prettier": "^2.6.2",
    "simple-mock": "^0.8.0",
    "ts-node": "^10.8.0",
    "typescript": "^4.0.2"
  },
  "optionalDependencies": {
    "ioredis": "^5.0.5"
  },
  "typescript": {
    "definition": "dist/index.d.ts"
  }
}
