-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
56 lines (56 loc) · 1.87 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": "sequelize-kafka-connect",
"version": "4.0.0",
"description": "kafka-connect connector for mysql,postgres and sqlite",
"main": "index.js",
"scripts": {
"test": "istanbul cover _mocha -- --recursive --exit --timeout 12500 -R spec test/int && istanbul check-coverage --statements 80",
"test-ci": "istanbul cover _mocha --report lcovonly -- --exit --timeout 12500 -R spec test/int && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"yarn:openssl": "LDFLAGS='-L/usr/local/opt/openssl/lib' CPPFLAGS='-I/usr/local/opt/openssl/include' yarn"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodefluent/sequelize-kafka-connect.git"
},
"keywords": [
"kafka-connect",
"connector",
"mysql",
"postgres",
"sqlite",
"sequelize",
"mssql",
"kafka",
"connect"
],
"author": "Chris Froehlingsdorf <chris@5cf.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodefluent/sequelize-kafka-connect/issues"
},
"homepage": "https://github.com/nodefluent/sequelize-kafka-connect#readme",
"dependencies": {
"commander": "~4.1.1",
"kafka-connect": "~4.0.0",
"mysql2": "~2.1.0",
"pg": "~7.18.2",
"pg-hstore": "~2.3.3",
"sequelize": "~5.21.5",
"sequelize-auto": "~0.4.29",
"sqlite3": "~4.1.1",
"tedious": "~8.0.1"
},
"devDependencies": {
"coveralls": "~3.0.9",
"istanbul": "~0.4.5",
"log4bro": "~3.14.0",
"mocha": "~7.0.1",
"mocha-lcov-reporter": "~1.3.0",
"uuid": "~3.4.0"
},
"preferGlobal": true,
"bin": {
"nkc-sequelize-source": "bin/nkc-sequelize-source.js",
"nkc-sequelize-sink": "bin/nkc-sequelize-sink.js"
}
}