-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "log4js-appender-cloudwatch",
"version": "0.6.0",
"license": "Apache-2.0",
"funding": "https://github.com/sponsors/xseman",
"homepage": "https://github.com/xseman/log4js-appender-cloudwatch#readme",
"description": "Log4js cloudwatch appender",
"author": "Filip Seman <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/xseman/log4js-appender-cloudwatch.git"
},
"keywords": [
"logging",
"log",
"log4js",
"log4js-node",
"appender",
"node",
"cloudwatch",
"aws"
],
"scripts": {
"build": "tsc",
"fmt": "dprint fmt",
"fmt:check": "dprint check",
"typecheck": "tsc --noEmit",
"pretest": "tsc",
"test": "TS_NODE_TRANSPILE_ONLY=true node --no-warnings --test --experimental-test-coverage --test-reporter=spec --env-file=.env --loader=ts-node/esm *.test.mts",
"test:watch": "TS_NODE_TRANSPILE_ONLY=true node --no-warnings --test --test-reporter=spec --watch --env-file=.env --loader=ts-node/esm *.test.mts"
},
"peerDependencies": {
"log4js": ">=6.7"
},
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "~3.577.0",
"log4js-layout-json": "^0.2.0"
},
"devDependencies": {
"@smithy/config-resolver": "~3.0.0",
"@types/node": "^22.7.0",
"dprint": "^0.47.0",
"ts-node": "~10.9.0",
"typescript": "^5.7.0"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"!dist/*.test.*"
]
}