forked from pinojs/pino-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.19 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
{
"name": "pino-elasticsearch",
"version": "7.0.0",
"description": "Load pino logs into ElasticSearch",
"main": "./lib.js",
"types": "./lib.d.ts",
"bin": {
"pino-elasticsearch": "./cli.js"
},
"scripts": {
"test": "standard && tsd && tap test/*.test.js -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": "^1.1.1",
"@types/node": "^20.5.0",
"pino": "^8.4.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"standard": "^17.0.0",
"tap": "^16.0.0",
"tsd": "^0.29.0"
},
"dependencies": {
"@elastic/elasticsearch": "^8.0.0",
"minimist": "^1.2.5",
"pump": "^3.0.0",
"split2": "^4.0.0"
},
"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"
}
}