forked from kafkajs/zstd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "@emnify/kafkajs-zstd",
"version": "0.1.2",
"description": "A KafkaJS codec for ZStandard compression",
"main": "src/index.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "eslint .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "jest --watch",
"test:types": "tsc -p types/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kafkajs/zstd.git"
},
"keywords": [
"zstd",
"compression",
"kafka",
"kafkajs",
"zstandard"
],
"author": "Tommy Brunn <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kafkajs/zstd/issues"
},
"homepage": "https://github.com/kafkajs/zstd#readme",
"devDependencies": {
"@babel/preset-env": "^7.22.14",
"@types/node": "^14.18.56",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.1.4",
"execa": "^4.0.3",
"jest": "^26.6.3",
"kafkajs": "^2.2.4",
"prettier": "^2.1.2",
"typescript": "^4.9.5"
},
"dependencies": {
"cppzst": "2.0.12"
},
"funding": "https://github.com/sponsors/Nevon/",
"publishConfig": {
"access": "public"
}
}