forked from Blizzard/node-rdkafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1014 Bytes
/
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": "node-rdkafka",
"version": "v2.18.0",
"description": "Node.js bindings for librdkafka",
"librdkafka": "2.3.0",
"main": "lib/index.js",
"scripts": {
"configure": "node-gyp configure",
"build": "node-gyp build",
"test": "make test",
"install": "node-gyp rebuild",
"prepack": "node ./ci/prepublish.js"
},
"keywords": [
"kafka",
"librdkafka"
],
"repository": {
"type": "git",
"url": "git@github.com:Blizzard/node-rdkafka.git"
},
"contributors": [
{
"name": "Stephen Parente",
"email": "webmakersteve@gmail.com"
},
{
"name": "Matt Gollob",
"email": "mattness@users.noreply.github.com"
}
],
"license": "MIT",
"devDependencies": {
"bluebird": "^3.5.3",
"jsdoc": "^3.4.0",
"jshint": "^2.10.1",
"mocha": "^10.2.0",
"node-gyp": "^9.3.1",
"toolkit-jsdoc": "^1.0.0"
},
"dependencies": {
"bindings": "^1.3.1",
"nan": "^2.17.0"
},
"engines": {
"node": ">=6.0.0"
}
}