-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
67 lines (67 loc) · 1.88 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
63
64
65
66
67
{
"name": "@confluentinc/kafka-javascript",
"version": "1.0.0",
"description": "Node.js bindings for librdkafka",
"librdkafka": "2.6.1",
"librdkafka_win": "2.6.1",
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"configure": "node-gyp configure",
"build": "node-gyp build",
"test": "make test",
"install": "node-pre-gyp install --fallback-to-build",
"install-from-source": "npm ci && node-pre-gyp install --build-from-source=@confluentinc/kafka-javascript --fallback-to-build",
"prepack": "node ./ci/prepublish.js",
"test:types": "tsc -p ."
},
"binary": {
"module_name": "confluent-kafka-javascript",
"module_path": "./build/{configuration}/",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{libc}-{arch}.tar.gz",
"host": "https://github.com/confluentinc/confluent-kafka-javascript/releases/download/",
"remote_path": "v{version}"
},
"keywords": [
"kafka",
"librdkafka"
],
"repository": {
"type": "git",
"url": "git@github.com:confluentinc/confluent-kafka-javascript.git"
},
"license": "MIT",
"devDependencies": {
"@bufbuild/buf": "^1.37.0",
"@bufbuild/protoc-gen-es": "^2.0.0",
"@eslint/js": "^9.9.0",
"@hapi/boom": "^10.0.1",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.1",
"axios-mock-adapter": "^2.1.0",
"bluebird": "^3.5.3",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^28.6.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"mocha": "^10.7.0",
"node-gyp": "^9.3.1",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.11",
"bindings": "^1.3.1",
"nan": "^2.22.0"
},
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
".",
"schemaregistry",
"schemaregistry-examples"
]
}