-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.62 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
{
"name": "kafkajs-lz4",
"version": "2.0.0-beta.0",
"description": "LZ4 compression codec for the KafkaJS library",
"keywords": [
"kafka",
"kafkajs",
"compression",
"lz4",
"codec"
],
"homepage": "https://oss.indix.com/",
"bugs": {
"url": "https://github.com/indix/kafkajs-lz4/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "GP",
"email": "[email protected]",
"url": "https://github.com/paambaati"
},
"files": [
"lib/**"
],
"main": "lib/index.js",
"repository": "https://github.com/indix/kafkajs-lz4",
"scripts": {
"build": "tsc --project './tsconfig.json'",
"build:test": "tsc --project './tsconfig.test.json'",
"lint": "eslint \"./src/**/*.ts\" \"./test/**/*.ts\" --ext ts --cache --report-unused-disable-directives",
"lint:format": "npm run lint -- --fix",
"test:local": "ts-node test/*.test.ts",
"test": "./scripts/testWithKafka.sh \"yarn test:local --ci --maxWorkers=4 --no-watchman\"",
"precommit": "yarn lint && yarn lint:test",
"prepublishOnly": "rm -rf lib/ && yarn build"
},
"dependencies": {
"lz4-asm": "0.4.2"
},
"devDependencies": {
"@types/node": "^14.14.10",
"@types/tape": "^4.2.33",
"@typescript-eslint/eslint-plugin": "4.9.0",
"@typescript-eslint/parser": "4.9.0",
"eslint": "7.14.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.2.0",
"kafkajs": "^1.15.0",
"prettier": "^2.2.1",
"tape": "^5.0.1",
"ts-node": "^9.1.0",
"typescript": "4.1.2"
},
"engines": {
"node": ">=8.0.0"
}
}