-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
{
"name": "kafka-client",
"version": "1.0.0",
"description": "Command-line client to publish and consume messages from a Kafka topic",
"main": "dist/kafka-client.umd.js",
"module": "dist/kafka-client.es5.js",
"typings": "dist/types/kafka-client.d.ts",
"type": "commonjs",
"bin": {
"kafka-client": "dist/lib/index.js"
},
"dependencies": {
"babel-jest": "^27.0.6",
"fs-extra": "^10.0.0",
"node-rdkafka": "^2.11.0",
"rxjs": "^7.3.0",
"typescript-ioc": "^3.2.2",
"yargs": "^17.1.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^27.0.1",
"jest": "^27.0.6",
"lodash.camelcase": "^4.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.56.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.4",
"ts-node": "^10.2.0",
"tslib": "^2.3.1",
"typedoc": "^0.21.5",
"typescript": "^4.3.5"
},
"scripts": {
"prepare": "npm run build",
"prebuild": "rimraf dist",
"build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs --theme minimal src",
"postbuild": "chmod +x dist/lib/index.js",
"test": "jest",
"tdd": "jest --coverage --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seansund/kafka-client.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/seansund/kafka-client/issues"
},
"homepage": "https://github.com/seansund/kafka-client#readme"
}