-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.58 KB
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
{
"name": "@ovotech/kafka-avro-cli",
"description": "A CLI for inspecting the confluent schema-registry, produce and consume avro kafka events",
"version": "1.3.0",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"author": "Ivan Kerin <ikerin@gmail.com>",
"license": "Apache-2.0",
"bin": {
"kac": "./scripts/kac"
},
"dependencies": {
"@ovotech/avro-stream": "^1.0.6",
"@ovotech/config-file": "^1.0.0",
"@ovotech/schema-registry-api": "^1.0.3",
"@types/progress": "^2.0.3",
"avsc": "^5.4.10",
"chalk": "^2.4.2",
"kafka-node": "^4.1.3",
"progress": "^2.0.3",
"supports-color": "^6.1.0",
"uuid": "^3.3.2",
"yargs": "^16.0.0"
},
"scripts": {
"test": "jest --runInBand",
"lint-prettier": "prettier --list-different {src,test}/**/*.ts",
"lint-tslint": "tslint --config tslint.json '{src,test}/**/*.ts'",
"lint": "yarn lint-prettier && yarn lint-tslint",
"build": "tsc --outDir dist --declaration",
"kac": "ts-node src/cli/kac.ts"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^14.14.31",
"@types/node-fetch": "^2.3.5",
"@types/stream-mock": "^1.2.0",
"@types/supports-color": "^5.3.0",
"@types/uuid": "^3.4.4",
"@types/yargs": "^13.0.0",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"stream-mock": "^2.0.3",
"ts-jest": "^24.0.2",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.6",
"uuid": "^3.3.2"
},
"jest": {
"preset": "../../jest-preset.json"
}
}