-
Notifications
You must be signed in to change notification settings - Fork 131
/
package.json
69 lines (69 loc) · 1.59 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
63
64
65
66
67
68
69
{
"name": "winston-elasticsearch",
"version": "0.19.0",
"description": "An Elasticsearch transport for winston",
"main": "index",
"authors": [
{
"name": "Jacques-Olivier D. Bernier",
"url": "https://github.com/jackdbernier"
},
{
"name": "Thomas Hoppe",
"url": "https://github.com/vanthome",
"email": "thomas.hoppe@n-fuse.co"
}
],
"contributors": [
{
"name": "Andy Potanin",
"url": "https://github.com/andypotanin"
}
],
"repository": {
"type": "git",
"url": "http://github.com/vanthome/winston-elasticsearch.git"
},
"license": "MIT",
"keywords": [
"logging",
"winston",
"elasticsearch",
"transport",
"logstash"
],
"optionalDependencies": {
"elastic-apm-node": "^3.20.0"
},
"dependencies": {
"@elastic/elasticsearch": "^8.13.1",
"dayjs": "^1.11.11",
"debug": "^4.3.4",
"lodash.defaults": "^4.2.0",
"lodash.omit": "^4.5.0",
"promise": "^8.3.0",
"retry": "^0.13.1",
"winston": "^3.13.0",
"winston-transport": "^4.7.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.1",
"eslint": "^9.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"should": "^13.2.3"
},
"scripts": {
"test": "nyc mocha",
"lint": "eslint *.json *.js",
"mocha": "mocha --full-trace./test/* -- --trace-warnings",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"node": ">= 8.0.0"
}
}