-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
41 lines (41 loc) · 931 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
{
"name": "pino-cloudwatch",
"version": "0.7.0",
"description": "CloudWatch Logs transport for pino",
"main": "index.js",
"bin": {
"pino-cloudwatch": "bin/pino-cloudwatch.js"
},
"scripts": {
"test": "mocha test/specs/*",
"lint": "eslint ."
},
"keywords": [
"pino",
"cloudwatch",
"logs",
"logger"
],
"author": "David Howell (david@dynamicmethods.com.au)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dbhowell/pino-cloudwatch/issues"
},
"homepage": "https://github.com/dbhowell/pino-cloudwatch#readme",
"dependencies": {
"async": "^3.2.0",
"aws-sdk": "^2.668.0",
"chunky-stream": "^0.3.0",
"pump": "^1.0.2",
"readable-stream": "^2.3.3",
"split2": "^2.1.1",
"yargs": "^13.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^6.2.2",
"mock-require": "^2.0.2",
"pino": "^4.7.2"
}
}