{
  "name": "mongo-oplog",
  "version": "2.1.4",
  "description": "Watch mongodb oplog in a simple way",
  "author": "Jonathan Brumley <cayasso@gmail.com>",
  "homepage": "https://github.com/cayasso/mongo-oplog",
  "main": "./index.js",
  "types": "./lib/index.d.ts",
  "scripts": {
    "test": "xo && mocha",
    "build": "npm run clean && ./node_modules/.bin/babel src -d lib && cp src/index.d.ts lib/",
    "prepare": "npm run build",
    "clean": "rm -rf lib/"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/cayasso/mongo-oplog.git"
  },
  "keywords": [ "data", "mongo", "mongodb", "watcher", "live", "oplog", "cursor" ],
  "license": "MIT",
  "dependencies": {
    "debug": "^3.1.0",
    "eventemitter3": "^2.0.3",
    "mongodb": "~2.2.x"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "babel-preset-env": "^1.6.1",
    "eslint-config-prettier": "^2.8.0",
    "mocha": "^4.0.1",
    "pre-commit": "1.2.2",
    "should": "^13.1.3",
    "xo": "^0.18.2"
  },
  "pre-commit": [ "test" ],
  "xo": {
    "extends": [ "prettier" ],
    "ignores": [ "test/**" ],
    "rules": {
      "object-curly-spacing": 0,
      "no-unused-expressions": 0,
      "no-negated-condition": 0,
      "new-cap": 0
    }
  }
}
