-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
47 lines (47 loc) · 1.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"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
}
}
}