forked from lazywithclass/winston-cloudwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "winston-cloudwatch",
"version": "3.0.2",
"description": "Send logs to Amazon Cloudwatch using Winston.",
"keywords": [
"amazon",
"cloudwatch",
"winston",
"logging",
"log"
],
"main": "index.js",
"scripts": {
"test": "make test",
"coveralls": "coveralls < ./coverage/lcov.info",
"update-dependencies": "npm-check-updates -ua && npm install"
},
"repository": "https://github.com/lazywithclass/winston-cloudwatch",
"author": "me@lazywithclass.com",
"license": "MIT",
"typings": "typescript/winston-cloudwatch.d.ts",
"peerDependencies": {
"winston": "^3.0.0"
},
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.30.0",
"@aws-sdk/node-http-handler": "^3.29.0",
"async": "^3.1.0",
"chalk": "^4.0.0",
"fast-safe-stringify": "^2.0.7",
"lodash.assign": "^4.2.0",
"lodash.find": "^4.6.0",
"lodash.isempty": "^4.4.0",
"lodash.iserror": "^3.1.1",
"proxy-agent": "^5.0.0"
},
"devDependencies": {
"@types/node": "13.11.0",
"@types/winston": "2.4.4",
"clarify": "^2.1.0",
"coveralls": "^3.0.7",
"istanbul": "^0.4.5",
"mocha": "^7.1.1",
"mockery": "^2.1.0",
"npm-check-updates": "^4.1.1",
"should": "^13.2.3",
"sinon": "^9.0.1"
}
}