-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
62 lines (62 loc) · 1.58 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
{
"name": "@elastic/ecs-pino-format",
"version": "1.5.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",
"directory": "packages/ecs-pino-format"
},
"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/main/packages/ecs-pino-format/README.md",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "tap --timeout ${TAP_TIMEOUT:-30} test/*.test.js",
"test:skip-slow": "TEST_SKIP_SLOW=1 tap --no-coverage --timeout ${TAP_TIMEOUT:-10} test/*.test.js # test a subset for a fast test run",
"tav": "tav --quiet"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@elastic/ecs-helpers": "^2.1.1"
},
"devDependencies": {
"@types/pino": "^6.3.9",
"ajv": "^7.0.3",
"ajv-formats": "^1.5.1",
"elastic-apm-node": "^3.23.0",
"express": "^4.17.1",
"glob": "^7.2.3",
"pino": "^6.0.0",
"pino-http": "^5.3.0",
"semver": "^7.5.4",
"split2": "^3.1.1",
"standard": "16.x",
"tap": "^15.0.10",
"test-all-versions": "^5.0.1",
"ts-node": "^10.9.1"
}
}