forked from nevill/zongji
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 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
{
"name": "@vlasky/zongji",
"version": "0.5.9",
"description": "A MySQL 8.0-compatible fork of ZongJi - a MySQL binlog listener for 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/vlasky/zongji"
},
"keywords": [
"mysql",
"binlog"
],
"author": "Vlad Lasky <[email protected]> (https://github.com/vlasky)",
"contributors": [
"Nevill <[email protected]> (https://github.com/nevill)",
"numtel <[email protected]> (https://github.com/numtel)",
"rfanth <[email protected]> (https://github.com/rfanth)",
"Alexander Radyushin <[email protected]> (https://github.com/fjedi)",
"Yousef El-Dardiry <[email protected]> (https://github.com/YousefED)",
"Roopendra Talekar <[email protected]> (https://github.com/roopen219)",
"Juan Ferrer Toribio (https://github.com/juan-ferrer-toribio)"
],
"license": "MIT",
"engines": {
"node": ">= 8.0"
},
"devDependencies": {
"eslint": "6.8.0",
"tap": "14.10.7"
},
"dependencies": {
"big-integer": "1.6.51",
"iconv-lite": "0.6.3",
"@vlasky/mysql": "^2.18.6"
}
}