-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 934 Bytes
/
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
{
"name": "winston-transport-kafka",
"description": "A Winston transport to log messages into an Apache Kafka topic.",
"version": "0.0.3",
"author": "Avocarrot Ltd <[email protected]>",
"contributors": [
"Panayiotis Papageorgiou <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Avocarrot/winston-kafka"
},
"homepage": "https://github.com/Avocarrot/winston-kafka",
"bugs": {
"url": "https://github.com/Avocarrot/winston-kafka/issues"
},
"keywords": [
"winston",
"kafka",
"transport",
"logging",
"log"
],
"dependencies": {
"kafka-node": "^0.2.28",
"winston": "^1.0.1"
},
"devDependencies": {
"mocha": "2.2.5"
},
"engines": {
"node": ">= 0.10.0"
},
"files": [
"LICENSE.md",
"README.md",
"index.js"
],
"main": "index.js",
"scripts": {
"test": "mocha -R spec"
}
}