-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.56 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
{
"name": "avrokado",
"version": "0.5.3",
"description": "A Kafka client and Avro (de)serializer library based on node-rdkafka",
"keywords": [
"Kafka",
"Avro",
"librdkafka",
"Apache",
"stream",
"consumer",
"producer",
"serde"
],
"repository": "git@github.com:macabu/avrokado.git",
"bugs": {
"url": "https://github.com/macabu/avrokado/issues"
},
"homepage": "https://github.com/macabu/avrokado#readme",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"author": "Matheus Macabu <mkbu95@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"lint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts' 'tests/**/*.ts'",
"test": "jest --verbose --runInBand",
"coverage": "codecov",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"preversion": "yarn lint",
"postversion": "git push && git push --tags"
},
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"testEnvironment": "node",
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"testMatch": [
"**/tests/**/*.test.ts"
]
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"@types/got": "9.6.9",
"@types/jest": "24.0.23",
"codecov": "3.7.1",
"jest": "24.9.0",
"nock": "11.7.0",
"ts-jest": "24.2.0",
"tslint": "5.20.1",
"tslint-config-airbnb": "5.11.2",
"typescript": "3.7.2"
},
"dependencies": {
"avsc": "5.4.16",
"got": "10.0.1",
"node-rdkafka": "2.7.4"
}
}