{
  "name": "@deepstream/storage-mongodb",
  "version": "2.0.8",
  "description": "Connects deepstream.io to mongodb",
  "main": "dist/src/connector.js",
  "scripts": {
    "tsc": "tsc",
    "lint": "tslint --project .",
    "lint:fix": "npm run lint -- --fix",
    "test": "mocha --opts mocha.opts 'test/*.spec.ts' --exit",
    "coverage": "nyc mocha 'test/*.spec.ts' --exit",
    "ci": "npm run tsc && npm run coverage",
    "docker": "docker run -p 27017:27017 mongo"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/deepstreamIO/deepstream.io-storage-mongodb.git"
  },
  "author": "deepstreamHub GmbH",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/deepstreamIO/deepstream.io-storage-mongodb/issues"
  },
  "homepage": "http://deepstream.io",
  "dependencies": {
    "@deepstream/types": "^2.0.9",
    "mongodb": "~3.5"
  },
  "devDependencies": {
    "@deepstream/protobuf": "^1.0.1",
    "@types/chai": "^4.2.11",
    "@types/mocha": "^7.0.2",
    "@types/mongodb": "^3.5.5",
    "@types/node": "^13.11.1",
    "chai": "^4.2.0",
    "coveralls": "^3.0.11",
    "mocha": "^7.1.1",
    "nyc": "^15.0.1",
    "ts-node": "^8.8.2",
    "tslint": "^6.1.1",
    "typescript": "^3.8.3"
  },
  "nyc": {
    "include": [
      "src/*.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register/transpile-only"
    ],
    "reporter": [
      "lcov"
    ],
    "sourceMap": true,
    "instrument": true
  }
}
