forked from TBear79/winston-fast-rabbitmq
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "@scarwar/winston-rabbitmq",
"version": "3.0.0-beta2",
"description": "A RabbitMQ transport for Winston.",
"main": "src/winston-rabbitmq.js",
"types": "typings/lib/winston-rabbitmq.d.ts",
"scripts": {
"test": "ts-mocha -p tsconfig.json test/**/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/ScarWar/winston-rabbitmq"
},
"keywords": [
"winston",
"rabbitmq",
"amqp",
"amqplib",
"logging",
"winston transport",
"transport",
"error",
"error handling",
"errorhandler"
],
"author": "Ariel Bereslavsky",
"license": "MIT",
"dependencies": {
"amqplib": "^0.6.0",
"rabbit-chatter": "^2.0.0",
"winston-transport": "^4.4.0"
},
"devDependencies": {
"@types/amqplib": "^0.5.14",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.2",
"@types/sinon": "^9.0.8",
"abstract-winston-transport": "^0.5.1",
"chai": "^4.2.0",
"mocha": "^8.2.0",
"sinon": "^9.2.0",
"tslint": "^6.1.3",
"ts-mocha": "^7.0.0",
"typescript": "^4.0.3",
"winston": "^3.3.3"
}
}