forked from ovotech/castle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "@ovotech/castle-cli",
"version": "0.5.14",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "A kafka avro cli",
"author": "Ivan Kerin <ikerin@gmail.com>",
"repository": "git@github.com:ovotech/castle.git",
"homepage": "https://github.com/ovotech/castle/tree/main/packages/castle-cli#readme",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/long": "^4.0.1",
"@types/node": "^14.14.28",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"ts-retry-promise": "^0.6.0",
"typescript": "^4.1.2"
},
"bin": {
"castle": "./scripts/castle"
},
"scripts": {
"castle": "node -r ts-node/register src/cli.ts",
"build": "tsc --declaration",
"test": "jest test --runInBand",
"lint:prettier": "prettier --list-different {src,test}/**/*.ts",
"lint:eslint": "eslint '{src,test}/**/*.ts'",
"lint": "yarn lint:prettier && yarn lint:eslint"
},
"jest": {
"preset": "../../jest.json"
},
"dependencies": {
"@ovotech/avro-kafkajs": "^0.8.0",
"ansi-regex": "^5.0.0",
"chalk": "^4.1.0",
"commander": "^7.1.0",
"kafkajs": "^1.15.0",
"long": "^4.0.0",
"runtypes": "^5.0.1",
"uuid": "^8.3.1"
}
}