forked from elastic/ecs-logging-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.22 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
{
"name": "@elastic/ecs-pino-format",
"version": "1.3.0",
"description": "A formatter for the pino logger compatible with Elastic Common Schema.",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/elastic/ecs-logging-nodejs.git"
},
"keywords": [
"pino",
"serializer",
"formatter",
"elasticsearch",
"ecs",
"ecs-logging",
"elastic",
"common",
"schema"
],
"author": "Tomas Della Vedova",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/elastic/ecs-logging-nodejs/issues"
},
"homepage": "https://github.com/elastic/ecs-logging-nodejs/blob/master/loggers/pino/README.md",
"scripts": {
"test": "standard && tap --100 --timeout ${TAP_TIMEOUT:-10} test/*.test.js"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@elastic/ecs-helpers": "^1.1.0"
},
"devDependencies": {
"@types/pino": "^6.3.9",
"ajv": "^7.0.3",
"ajv-formats": "^1.5.1",
"elastic-apm-node": "^3.14.0",
"express": "^4.17.1",
"pino": "^6.0.0",
"pino-http": "^5.3.0",
"split2": "^3.1.1",
"standard": "16.x",
"tap": "^14.x"
}
}