-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
43 lines (43 loc) · 965 Bytes
/
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
{
"name": "zongji",
"version": "0.5.1",
"description": "A mysql binlog listener running on Node.js",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap --bail --no-coverage --jobs=1 test/*.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/nevill/zongji"
},
"keywords": [
"mysql",
"binlog"
],
"author": "Nevill <[email protected]>",
"contributors": [
"numtel <[email protected]> (https://github.com/numtel)",
"rfanth <[email protected]> (https://github.com/rfanth)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nevill/zongji/issues"
},
"homepage": "https://github.com/nevill/zongji",
"engines": {
"node": ">= 8.0"
},
"devDependencies": {
"eslint": "6.8.0",
"tap": "14.10.7"
},
"dependencies": {
"big-integer": "1.6.48",
"iconv-lite": "0.5.1",
"mysql": "2.18.1"
}
}