-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.54 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
{
"name": "pino-kafka",
"version": "0.1.2",
"description": "A pino 'transport' for writing to kafka",
"homepage": "https://github.com/ayZagen/pino-kafka",
"bugs": "https://github.com/ayZagen/pino-kafka/issues",
"main": "pkafka.js",
"scripts": {
"test": "mocha --timeout 15000 --exit test/**.test.js",
"release": "release-it"
},
"bin": {
"pino-kafka": "./cli.js"
},
"keywords": [
"pino",
"logging",
"kafka"
],
"author": "Ismail Hakki Ayaz <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ayZagen/pino-kafka"
},
"dependencies": {
"minimist": "^1.2.5",
"pump": "^3.0.0",
"node-rdkafka": "^2.10.1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@release-it/conventional-changelog": "^2.0.1",
"husky": "^6.0.0",
"mocha": "^8.3.2",
"pino": "^6.11.2",
"release-it": "^14.6.0"
},
"engines": {
"node": ">=6.0.0"
},
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
},
"git": {
"commitMessage": "chore: release v${version}",
"requireCleanWorkingDir": true,
"tagAnnotation": "Release v${version}",
"tagName": "v${version}"
},
"github": {
"draft": true,
"release": true,
"releaseName": "v${version}"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}