{
  "name": "redis-pubsub-rpc",
  "version": "1.1.6",
  "description": "This library provide lightweight RPC layer over Redis Pub/Sub.",
  "main": "lib/index.js",
  "repository": "https://github.com/dimailn/redis-pubsub-rpc",
  "scripts": {
    "build": "coffee -o lib/ -c src/",
    "pub": "npm run build && npm publish",
    "test": "jest --no-cache",
    "cov": "jest --coverage"
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-jest": "^23.2.0",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-preset-env": "^1.7.0",
    "babel-preset-es2015": "^6.24.1",
    "babel-preset-stage-0": "^6.24.1",
    "coffeescript": "^2.5.1",
    "jest": "^26.6.3"
  },
  "dependencies": {
    "is-circular": "^1.0.2",
    "redis": "^3.0.2",
    "uuid": "^8.3.1"
  },
  "jest": {
    "moduleFileExtensions": [
      "js",
      "coffee"
    ],
    "transform": {
      "^.+\\.coffee$": "./jest-preprocessor.js"
    },
    "testMatch": [
      "**/__tests__/**/*.js(x)",
      "**/__tests__/**/*.test.coffee",
      "*/?(*.)(spec|test).js(x)",
      "*/?(*.)(spec|test).coffee"
    ]
  }
}
