-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
144 lines (144 loc) · 3.91 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "loopback4-kafka-client",
"version": "3.0.4",
"description": "loopback client for integration with apache kafka",
"keywords": [
"loopback-extension",
"loopback",
"kafka",
"Kafka.js"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"lint": "npm run eslint && npm run prettier:check",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run rebuild",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"rebuild": "npm run clean && npm run build",
"prune": "npm prune --production",
"coverage": "nyc npm run test",
"prepare": "husky install",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcefuse/loopback4-kafka-client"
},
"author": "Sourcefuse",
"license": "MIT",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"peerDependencies": {
"@loopback/core": "^6.0.2"
},
"dependencies": {
"@loopback/boot": "^7.0.2",
"@loopback/core": "^6.0.2",
"@loopback/repository": "^7.0.2",
"@loopback/rest": "^14.0.2",
"@loopback/rest-explorer": "^7.0.2",
"@sourceloop/core": "^14.0.0",
"kafkajs": "^2.2.3",
"tslib": "^2.6.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@loopback/build": "^11.0.2",
"@loopback/core": "^6.0.2",
"@loopback/eslint-config": "^15.0.2",
"@loopback/testlab": "^7.0.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/kafkajs": "^1.9.0",
"@types/node": "^18.11.9",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"cz-customizable-ghooks": "^2.0.0",
"eslint": "^8.57.0",
"git-release-notes": "^5.0.0",
"husky": "^7.0.4",
"jsdom": "^21.0.0",
"semantic-release": "^19.0.3",
"simple-git": "^3.15.1",
"source-map-support": "^0.5.21",
"typedoc": "^0.25.1",
"typescript": "~5.2.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"overrides": {
"aws-sdk": "2.1360.0",
"@semantic-release/npm": {
"npm": "^9.4.2"
},
"git-release-notes": {
"ejs": "^3.1.8",
"yargs": "^17.6.2"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "chore",
"scope": "deps",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} semantic"
}
],
"@semantic-release/github"
],
"repositoryUrl": "git@github.com:sourcefuse/loopback4-kafka-client.git"
}
}