-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.16 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
{
"name": "rxkafka",
"version": "0.9.5",
"description": "Reactive wrapper for rdkafka library.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "sh ./scripts/test.sh",
"build": "sh ./scripts/build.sh",
"lint": "sh ./scripts/lint.sh",
"postinstall": "npm run build"
},
"engines": {
"node": "10.15.3",
"npm": "6.10.2"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/majusko/rx-kafka.git"
},
"keywords": [
"kafka",
"rx",
"reactive",
"ts",
"node",
"typescript",
"rdkafka"
],
"author": "Mario Kapusta <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/majusko/rx-kafka",
"dependencies": {
"debug": "^4.1.1",
"node-rdkafka": "2.7.4",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.3"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/debug": "4.1.5",
"@types/node": "^12.12.14",
"mocha": "^8.1.1",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"tslint-no-circular-imports": "^0.7.0",
"typescript": "^4.0.2"
}
}