-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (53 loc) · 1.17 KB
/
package.json
File metadata and controls
54 lines (53 loc) · 1.17 KB
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
{
"name": "@codephil/logging-middleware-ddog",
"version": "1.0.1",
"description": "Express middleware for structured logging to Datadog with pretty console output",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
},
"repository": {
"type": "git",
"url": "git+https://github.com/codephilip/logging-middleware-ddog.git"
},
"keywords": [
"datadog",
"logging",
"middleware",
"express",
"monitoring",
"apm",
"winston",
"structured-logging"
],
"author": "CodePhil",
"license": "MIT",
"bugs": {
"url": "https://github.com/codephilip/logging-middleware-ddog/issues"
},
"homepage": "https://github.com/codephilip/logging-middleware-ddog#readme",
"dependencies": {
"chalk": "^4.1.2",
"dd-trace": "^5.38.0",
"winston": "^3.17.0",
"winston-transport": "^4.9.0"
},
"peerDependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"eslint": "^8.56.0",
"jest": "^29.7.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}