forked from waldophotos/kafka-avro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "kafka-avro",
"version": "3.0.3",
"main": "./lib/kafka-avro",
"description": "Node.js bindings for librdkafka with Avro schema serialization.",
"homepage": "https://github.com/waldophotos/kafka-avro",
"bugs": "https://github.com/waldophotos/kafka-avro/issues",
"author": {
"name": "Thanasis Polychronakis",
"email": "thanpolas@gmail.com"
},
"contributors": [
{
"name": "Ricardo Bin",
"email": "ricardohbin@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/waldophotos/kafka-avro"
},
"license": "MIT",
"engines": {
"node": ">=0.12"
},
"scripts": {
"test": "eslint lib && mocha -b test/spec && eslint lib/**",
"coverage": "nyc npm run test"
},
"dependencies": {
"avsc": "^5.2.3",
"axios": "^0.15.3",
"bluebird": "^3.4.6",
"bunyan": "^1.8.5",
"bunyan-format": "^0.2.1",
"cip": "^1.0.0",
"node-rdkafka": "~2.7.1"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.12.2",
"grunt": "^1.0.1",
"grunt-release": "^0.14.0",
"mocha": "^5.0.5",
"nyc": "^14.1.1",
"sinon": "^4.4.9"
}
}