-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.03 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
67
68
69
70
71
72
73
74
{
"name": "@buka/nestjs-kafka",
"version": "1.1.2",
"description": "NestJS module supporting multiple connections implemented using KafkaJS",
"packageManager": "pnpm@8.14.0",
"main": "dist/umd/src/index.js",
"module": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
"scripts": {
"build": "npm run clean && ./build/build.sh",
"clean": "rm -rf ./dist/*",
"dev": "npm run clean && ./build/watch.sh",
"prepare": "ts-patch install -s && is-ci || husky install",
"prepublishOnly": "npm run build",
"release": "standard-version",
"release:alpha": "standard-version --prerelease alpha",
"test": "jest"
},
"keywords": [
"nestjs",
"nest",
"kafka",
"kafkajs",
"kafka-js",
"kafka.js",
"kafka-node",
"kafka-nodejs",
"node",
"nodejs",
"module",
"kafka-module",
"kafkajs-module"
],
"author": "Val.istar.Guo <val.istar.guo@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/buka-lnc/npm.nestjs-kafka/#readme",
"bugs": {
"url": "https://github.com/buka-lnc/npm.nestjs-kafka/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buka-lnc/npm.nestjs-kafka.git"
},
"devDependencies": {
"@buka/eslint-config": "^1.5.0",
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@jest/globals": "^29.7.0",
"@nestjs/common": "^10.3.0",
"@nestjs/core": "^10.3.0",
"@rushstack/eslint-patch": "^1.5.1",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-patch": "^3.0.2",
"typescript": "^5.2.2",
"typescript-transform-paths": "^3.4.6"
},
"peerDependencies": {
"@nestjs/common": "^9 || ^10",
"@nestjs/core": "^9 || ^10"
},
"dependencies": {
"kafkajs": "^2.2.4"
}
}