{
  "name": "graphql-mqtt-subscriptions",
  "version": "1.2.0",
  "description": "A graphql-subscriptions PubSub Engine using mqtt protocol",
  "main": "dist/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/davidyaha/graphql-mqtt-subscriptions.git"
  },
  "keywords": [
    "graphql",
    "mqtt",
    "apollo",
    "subscriptions"
  ],
  "author": "David Yahalomi",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/davidyaha/graphql-mqtt-subscriptions/issues"
  },
  "homepage": "https://github.com/davidyaha/graphql-mqtt-subscriptions",
  "scripts": {
    "compile": "tsc --noUnusedParameters --noUnusedLocals",
    "pretest": "npm run compile",
    "test": "npm run testonly --",
    "posttest": "npm run lint",
    "lint": "tslint ./src/**/*.ts",
    "watch": "tsc -w",
    "testonly": "mocha --reporter spec --full-trace ./dist/test/tests.js ",
    "integration": "npm run compile && mocha --reporter spec --full-trace ./dist/test/integration-tests.js ",
    "benchmark": "npm run compile && mocha --reporter spec --full-trace ./dist/test/benchmark.js ",
    "coverage": "node ./node_modules/istanbul/lib/cli.js cover _mocha -- --full-trace ./dist/test/tests.js",
    "postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info",
    "prepublish": "npm run test"
  },
  "dependencies": {
    "graphql-subscriptions": "^0.4.2",
    "iterall": "^1.1.1",
    "mqtt": "^2.3.0"
  },
  "devDependencies": {
    "@types/chai": "^3.4.34",
    "@types/chai-as-promised": "0.0.30",
    "@types/graphql": "^0.9.0",
    "@types/mocha": "^2.2.33",
    "@types/node": "7.0.18",
    "@types/simple-mock": "0.0.27",
    "chai": "^3.5.0",
    "chai-as-promised": "^6.0.0",
    "graphql": "^0.10.1",
    "istanbul": "1.0.0-alpha.2",
    "mocha": "^3.0.0",
    "remap-istanbul": "^0.9.5",
    "simple-mock": "^0.7.0",
    "tslint": "^5.2.0",
    "typescript": "^2.3.4"
  },
  "typings": "dist/index.d.ts",
  "typescript": {
    "definition": "dist/index.d.ts"
  }
}
