forked from Blizzard/node-rdkafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.02 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": "node-rdkafka",
"version": "v2.12.0",
"description": "Node.js bindings for librdkafka",
"librdkafka": "1.8.2",
"main": "lib/index.js",
"scripts": {
"configure": "node-gyp configure",
"build": "node-gyp build",
"test": "make test",
"test:e2e": "make e2e",
"install": "node-gyp rebuild",
"prepack": "node ./ci/prepublish.js"
},
"keywords": [
"kafka",
"librdkafka"
],
"repository": {
"type": "git",
"url": "[email protected]:Blizzard/node-rdkafka.git"
},
"contributors": [
{
"name": "Stephen Parente",
"email": "[email protected]"
},
{
"name": "Matt Gollob",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"bluebird": "^3.5.3",
"jsdoc": "^3.4.0",
"jshint": "^2.10.1",
"mocha": "^5.2.0",
"node-gyp": "^5.1.0",
"toolkit-jsdoc": "^1.0.0"
},
"dependencies": {
"bindings": "^1.3.1",
"nan": "^2.14.0"
},
"engines": {
"node": ">=6.0.0"
}
}