-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 loc) · 1.6 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
{
"name": "kafka-connect",
"version": "4.0.0",
"description": "kafka-connect is a framework to move data via kafka",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"test": "istanbul cover _mocha -- --recursive --timeout 12500 --exit -R spec test && istanbul check-coverage --statements 60",
"test-ci": "istanbul cover _mocha -- --recursive --report lcovonly --exit -R spec test && 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/kafka-connect.git"
},
"keywords": [
"kafka",
"connect",
"framework",
"move",
"data",
"postgres",
"cassandra",
"bigquery",
"stream",
"fluent"
],
"author": "Chris Froehlingsdorf <chris@5cf.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodefluent/kafka-connect/issues"
},
"homepage": "https://github.com/nodefluent/kafka-connect#readme",
"dependencies": {
"async": "~3.2.0",
"bluebird": "~3.7.2",
"body-parser": "~1.19.0",
"debug": "~4.1.1",
"express": "~4.17.1",
"prom-client": "~12.0.0",
"sinek": "~9.0.0"
},
"devDependencies": {
"coveralls": "~3.0.9",
"istanbul": "~0.4.5",
"mocha": "~7.0.1",
"mocha-lcov-reporter": "~1.3.0",
"request": "~2.88.2"
}
}