-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
56 lines (56 loc) · 1.17 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
48
49
50
51
52
53
54
55
56
{
"name": "lapidus",
"description": "Stream database changes fast, in order, with little to no performance penalty.",
"version": "0.1.2",
"keywords": [
"postgresql",
"postgres",
"mysql",
"live",
"streaming",
"logical",
"decoding",
"binlog",
"listener"
],
"maintainers": [
{
"name": "Jeffrey Mealo",
"email": "[email protected]",
"web": "http://jeffreymealo.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/JarvusInnovations/lapidus.git"
},
"license": "MIT",
"scripts": {
"test": "mocha ./test/*",
"test-travis": "istanbul cover _mocha -- -R spec ./test/*"
},
"devDependencies": {
"coveralls": "^2.11.4",
"istanbul": "^0.3.20",
"mocha": "^2.3.2",
"pg": "^6.0.2"
},
"dependencies": {
"async": "^1.5.2",
"errno": "^0.1.4",
"jsonlint": "^1.6.2",
"ldjson-stream": "^1.2.1",
"mongodb": "^3.6.1",
"yargs": "^3.32.0"
},
"optionalDependencies": {
"mongo-oplog": "^1.0.1",
"nats": "^0.4.4",
"pg-config": "0.0.1",
"zongji": "jmealo/zongji#master"
},
"preferGlobal": true,
"bin": {
"lapidus": "./index.js"
}
}