-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 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
51
{
"name": "gcloud-pubsub-kafka-connect",
"version": "1.3.0",
"description": "kafka connect connector for Google Cloud's Pubsub",
"main": "index.js",
"scripts": {
"test": "istanbul cover _mocha -- --recursive --timeout 12500 -R spec test/int && istanbul check-coverage --statements 80",
"test-ci": "istanbul cover _mocha --report lcovonly -- --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/gcloud-pubsub-kafka-connect.git"
},
"keywords": [
"kafka",
"kafka-connect",
"connect",
"connector",
"google",
"pubsub",
"cloud",
"gcloud",
"publish",
"subscribe"
],
"author": "Holger Adam",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodefluent/glcoud-pubsub-kafka-connect/issues"
},
"homepage": "https://github.com/nodefluent/glcoud-pubsub-kafka-connect#readme",
"preferGlobal": true,
"bin": {
"nkc-pubsub-source": "bin/nkc-pubsub-source.js",
"nkc-pubsub-sink": "bin/nkc-pubsub-sink.js"
},
"dependencies": {
"@google-cloud/pubsub": "^0.20.0",
"async": "^2.6.1",
"kafka-connect": "^3.5.1"
},
"devDependencies": {
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"log4bro": "^3.7.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"testdouble": "^3.8.1",
"uuid": "^3.3.2"
}
}