forked from Blizzard/node-rdkafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.55 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@triplewhale/node-rdkafka",
"version": "4.1.2",
"description": "Node.js bindings for librdkafka",
"librdkafka": "2.4.0",
"main": "lib/index.js",
"scripts": {
"test": "make test",
"configure": "node-gyp configure",
"build": "node-gyp build",
"package": "node-pre-gyp package",
"gyp-publish": "node-pre-gyp-github publish --release",
"install": "node-pre-gyp install --fallback-to-build",
"prepack": "node ./ci/prepublish.js"
},
"binary": {
"module_name": "node-librdkafka",
"module_path": "./build/{configuration}/",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{libc}-{arch}.tar.gz",
"host": "https://github.com/Triple-Whale/node-rdkafka/releases/download/",
"remote_path": "v{version}"
},
"keywords": [
"kafka",
"librdkafka"
],
"repository": {
"type": "git",
"url": "https://github.com/Triple-Whale/node-rdkafka.git"
},
"publishConfig": {
"access": "public"
},
"contributors": [
{
"name": "Stephen Parente",
"email": "[email protected]"
},
{
"name": "Matt Gollob",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"bluebird": "^3.5.3",
"jsdoc": "^4.0.2",
"jshint": "^2.10.1",
"mocha": "^10.2.0",
"node-gyp": "^10.1.0",
"node-pre-gyp-github": "^2.0.0",
"toolkit-jsdoc": "^1.0.0"
},
"dependencies": {
"bindings": "^1.3.1",
"nan": "^2.19.0",
"@mapbox/node-pre-gyp": "^1.0.11"
},
"engines": {
"node": ">=16"
}
}