forked from SOHU-Co/kafka-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 769 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 769 Bytes
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
{
"name": "kafka-node",
"description": "node client for Apache kafka, only support kafka 0.8 and above",
"version": "0.3.2",
"main": "kafka.js",
"dependencies": {
"async": ">0.9 <2.0",
"binary": "~0.3.0",
"buffer-crc32": "~0.2.5",
"buffermaker": "~1.2.0",
"debug": "^2.1.3",
"lodash": ">3.0 <4.0",
"node-uuid": "~1.4.3",
"node-zookeeper-client": "~0.2.2",
"optional": "^0.1.3",
"retry": "~0.6.1"
},
"optionalDependencies": {
"snappy": "^4.0.1"
},
"devDependencies": {
"mocha": "^2.2.1",
"should": "^5.2.0",
"sinon": "~1.17.2",
"optimist": "^0.6.1"
},
"repository": {
"type": "git",
"url": "git@github.com:SOHU-Co/kafka-node.git"
},
"scripts": {
"test": "make test"
}
}