-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 953 Bytes
/
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
{
"name": "kafkajs-snappy",
"version": "1.1.0",
"description": "Snappy codec for KafkaJS",
"main": "src/index.js",
"scripts": {
"test:local": "NODE_ENV=test ./node_modules/.bin/jest src/ --forceExit --detectOpenHandles",
"test:local:watch": "yarn test:local --watch",
"test": "./scripts/testWithKafka.sh \"yarn test:local --ci --maxWorkers=4 --no-watchman\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/tulios/kafkajs-snappy.git"
},
"keywords": [
"kafka",
"kafkajs",
"snappyjs",
"codec"
],
"author": "Tulio Ornelas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tulios/kafkajs-snappy/issues"
},
"engines": {
"node": ">=8.0.0"
},
"homepage": "https://github.com/tulios/kafkajs-snappy#readme",
"dependencies": {
"snappyjs": "^0.6.0"
},
"devDependencies": {
"jest": "^23.5.0",
"kafkajs": "^1.4.4"
}
}