-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "@s3pweb/simple-kafka-promise",
"version": "5.0.0",
"description": "A simple node-rdkafka lib with Promise.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint --fix ./src",
"test": "npm run lint && echo \"Error: no test specified\" && exit 1",
"release": "standard-version",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/s3pweb/simple-kafka-promise.git"
},
"author": "S3pweb",
"license": "MIT",
"bugs": {
"url": "https://github.com/s3pweb/simple-kafka-promise/issues"
},
"homepage": "https://github.com/s3pweb/simple-kafka-promise#readme",
"dependencies": {
"node-rdkafka": "3.0.1"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/node": "20.14.5",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"husky": "9.0.11",
"prettier": "3.3.2",
"standard-version": "9.5.0",
"typescript": "5.4.5"
},
"files": [
"dist/**/*"
]
}