forked from enudler/kafka-consumer-manager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.23 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": "kafka-consumer-manager",
"version": "3.0.3",
"description": "Kafka consumer manager handles retries, offset issues and retries",
"main": "./index.js",
"scripts": {
"test": "./node_modules/.bin/istanbul cover node_modules/.bin/_mocha ./test/*"
},
"author": "Eli Nudler",
"license": "MIT",
"homepage": "https://github.com/enudler/kafka-consumer-manager",
"repository": {
"type": "git",
"url": "https://github.com/enudler/kafka-consumer-manager"
},
"keywords": [
"kafka",
"consumer",
"manager",
"retries",
"offset",
"throttling",
"autocommit"
],
"dependencies": {
"async": "^2.6.0",
"body-parser": "^1.18.2",
"bunyan": "2.0.2",
"express": "^4.16.2",
"istanbul": "1.0.0-alpha.2",
"kafka-node": "3.0.1",
"lodash": "^4.17.10",
"request": "^2.83.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"eslint": "4.13.1",
"eslint-config-standard": "11.0.0-beta.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"mocha": "4.0.1",
"mochawesome": "2.3.1",
"rewire": "3.0.2",
"should": "13.1.3",
"sinon": "^6.3.4"
}
}