-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.58 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
{
"name": "bigquery-kafka-connect",
"version": "3.9.0",
"description": "kafka connect connector for Google BigQuery",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodefluent/bigquery-kafka-connect.git"
},
"keywords": [
"kafka",
"kafka-connect",
"connect",
"connector",
"google",
"bigquery"
],
"author": "Holger Adam",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodefluent/bigquery-kafka-connect/issues"
},
"homepage": "https://github.com/nodefluent/bigquery-kafka-connect#readme",
"preferGlobal": true,
"bin": {
"nkc-bigquery-source": "bin/nkc-bigquery-source.js",
"nkc-bigquery-sink": "bin/nkc-bigquery-sink.js"
},
"dependencies": {
"@google-cloud/bigquery": "^4.2.1",
"async": "^3.1.0",
"kafka-connect": "^3.8.0",
"npm": "^6.11.3"
},
"devDependencies": {
"coveralls": "^3.0.6",
"istanbul": "^0.4.5",
"log4bro": "^3.11.0",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"sinek": "^7.30.1",
"testdouble": "^3.12.4",
"uuid": "^3.3.3"
}
}