forked from Blizzard/node-rdkafka
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.56 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.56 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@makeomatic/node-rdkafka",
"version": "2.18.0",
"description": "Node.js bindings for librdkafka",
"librdkafka": "2.6.1",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"files": [
"deps/librdkafka.gyp",
"deps/librdkafka",
"!deps/librdkafka/examples",
"!deps/librdkafka/tests",
"!deps/librdkafka/.semaphore",
"!deps/librdkafka/.github",
"!deps/librdkafka/packaging",
"!deps/librdkafka/config.h",
"deps/windows-install.*",
"src/",
"lib/",
"util/",
"*.d.ts",
"librdkafka.js",
"*.gyp",
"configure",
"LICENSE.txt"
],
"scripts": {
"configure": "node-pre-gyp configure",
"build": "node-pre-gyp build",
"test": "make test",
"test:e2e": "make e2e",
"install": "node-pre-gyp install --fallback-to-build",
"prepack": "node ./ci/prepublish.js",
"binary:build": "node-pre-gyp rebuild",
"binary:package": "node-pre-gyp package",
"binary:test": "node-pre-gyp testpackage",
"binary:publish": "node-pre-gyp publish",
"semantic-release": "semantic-release",
"prepare": "mdep install"
},
"binary": {
"module_name": "node-librdkafka",
"module_path": "./build/binding/{configuration}/{node_abi}-{platform}-{libc}-{arch}/",
"remote_path": "./{module_name}/v{version}/{configuration}/",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{libc}-{arch}.tar.gz",
"host": "https://makeomatic-node-rdkafka.s3-us-west-2.amazonaws.com"
},
"keywords": [
"kafka",
"librdkafka"
],
"repository": {
"type": "git",
"url": "git@github.com:makeomatic/node-rdkafka.git"
},
"contributors": [
{
"name": "Stephen Parente",
"email": "webmakersteve@gmail.com"
},
{
"name": "Matt Gollob",
"email": "mattness@users.noreply.github.com"
}
],
"license": "MIT",
"devDependencies": {
"@makeomatic/deploy": "^13.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"aws-sdk": "^2.1692.0",
"bluebird": "^3.7.2",
"jsdoc": "^4.0.4",
"jshint": "^2.13.6",
"mocha": "^11.1.0",
"node-gyp": "^11.0.0",
"semantic-release": "^24.2.1",
"semver": "^7.6.3",
"toolkit-jsdoc": "^1.0.0"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.11",
"nan": "^2.22.0"
},
"engines": {
"node": ">=22.12"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}