forked from Blizzard/node-rdkafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 899 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
{
"name": "node-rdkafka",
"version": "2.3.4",
"description": "Node.js bindings for librdkafka",
"main": "lib/index.js",
"scripts": {
"configure": "node-gyp configure",
"build": "node-gyp build",
"test": "make test",
"install": "node-gyp rebuild"
},
"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": {
"jshint": "2.x",
"jsdoc": "^3.4.0",
"toolkit-jsdoc": "^1.0.0",
"mocha": "2.x",
"node-gyp": "3.x"
},
"dependencies": {
"bindings": "1.x",
"nan": "2.x"
},
"engines": {
"npm": "^2.7.3"
}
}