-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
66 lines (66 loc) · 1.47 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "kafka-consumer-manager",
"version": "5.0.1",
"description": "Kafka consumer manager handles retries, offset issues and retries",
"main": "./index.js",
"scripts": {
"test": "./node_modules/.bin/nyc node_modules/.bin/_mocha ./test/* --exit"
},
"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"
],
"nyc": {
"check-coverage": true,
"lines": 92,
"statements": 92,
"functions": 87,
"branches": 88,
"include": [
"src"
],
"reporter": [
"text",
"html"
],
"cache": true,
"all": true,
"report-dir": "./.nyc_output"
},
"dependencies": {
"async": "^3.2.0",
"body-parser": "^1.18.3",
"bunyan": "2.0.2",
"express": "^4.16.4",
"kafka-node": "^5.0.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"should": "13.1.3",
"sinon": "^6.3.4",
"prom-client": "^11.2.1"
},
"peerDependencies": {
"prom-client": "11.x"
}
}