forked from ExtensionEngine/pino-cloudwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.53 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
68
69
70
71
72
73
74
75
{
"name": "@extensionengine/pino-cloudwatch",
"version": "1.2.2",
"description": "AWS CloudWatch Logs transport v7 for pino",
"keywords": [
"pino",
"cloudwatch",
"logger",
"transport"
],
"homepage": "https://github.com/ExtensionEngine/pino-cloudwatch#readme",
"bugs": {
"url": "https://github.com/ExtensionEngine/pino-cloudwatch/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ExtensionEngine/pino-cloudwatch"
},
"license": "MIT",
"author": "Extension Engine ([email protected])",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc",
"publish": "release-it",
"test": "ava"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"tests/*"
],
"require": [
"ts-node/register"
],
"timeout": "30s"
},
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.51.0",
"pino-abstract-transport": "^0.5.0"
},
"devDependencies": {
"@types/node": "^17.0.18",
"@types/streamtest": "^1.2.0",
"ava": "^4.0.1",
"pino": "^7.8.0",
"release-it": "^14.12.4",
"rimraf": "^3.0.2",
"streamtest": "^2.0.0",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"publishConfig": {
"access": "public"
},
"release-it": {
"hooks": {
"after:bump": "npm run build"
},
"git": {
"requireCleanWorkingDir": false
},
"github": {
"release": true
}
}
}