-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.63 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
{
"name": "bigtable-kafka-connect",
"version": "1.0.18",
"description": "kafka connect connector for Google BigTable",
"main": "index.js",
"scripts": {
"test": "istanbul cover _mocha && istanbul check-coverage --statements 80",
"test-ci": "istanbul cover _mocha --report lcovonly && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodefluent/bigtable-kafka-connect.git"
},
"keywords": [
"kafka",
"kafka-connect",
"connect",
"connector",
"google",
"bigtable"
],
"author": "yacut",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodefluent/bigtable-kafka-connect/issues"
},
"homepage": "https://github.com/nodefluent/bigtable-kafka-connect#readme",
"preferGlobal": true,
"bin": {
"nkc-bigtable-source": "bin/nkc-bigtable-source.js",
"nkc-bigtable-sink": "bin/nkc-bigtable-sink.js"
},
"dependencies": {
"@google-cloud/bigtable": "^0.11.1",
"async": "^2.6.0",
"commander": "^2.13.0",
"kafka-connect": "^3.2.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"istanbul": "^0.4.5",
"log4bro": "^3.4.0",
"mocha": "^5.0.0",
"mocha-lcov-reporter": "^1.3.0",
"sinek": "^6.14.0",
"testdouble": "^3.3.3",
"uuid": "^3.2.1"
}
}