forked from pinojs/pino-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.23 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
{
"name": "pino-elasticsearch",
"version": "5.4.0",
"description": "Load pino logs into ElasticSearch",
"main": "./lib.js",
"bin": {
"pino-elasticsearch": "./cli.js"
},
"scripts": {
"test": "standard && tap test/*.test.js --no-esm -j 1 --no-coverage --timeout 120"
},
"pre-commit": "test",
"keywords": [
"pino",
"log",
"fast",
"elasticsearch",
"elastic",
"search",
"kibana"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"devDependencies": {
"@elastic/ecs-pino-format": "^0.1.0",
"is-elasticsearch-running": "^0.1.0",
"pino": "^6.2.1",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"standard": "^14.3.4",
"tap": "^14.10.7"
},
"dependencies": {
"@elastic/elasticsearch": "^7.7.1",
"minimist": "^1.2.5",
"pump": "^3.0.0",
"readable-stream": "^3.6.0",
"split2": "^3.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pinojs/pino-elasticsearch.git"
},
"bugs": {
"url": "https://github.com/pinojs/pino-elasticsearch/issues"
},
"homepage": "https://github.com/pinojs/pino-elasticsearch#readme",
"directories": {
"test": "test"
},
"engines": {
"node": ">=10"
}
}