forked from vanthome/winston-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.49 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
{
"name": "winston-elasticsearch",
"version": "0.8.1",
"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": "[email protected]"
}
],
"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"
],
"dependencies": {
"debug": "4.1.1",
"@elastic/elasticsearch": "^7.3.0",
"lodash.defaults": "^4.2.0",
"lodash.omit": "^4.5.0",
"dayjs": "^1.8.16",
"promise": "^8.0.3",
"retry": "^0.12.0",
"winston": "^3.2.1",
"winston-transport": "4.3.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"coveralls": "^3.0.6",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^1.4.0",
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"should": "^13.2.3"
},
"scripts": {
"test": "nyc mocha",
"lint": "eslint *.json *.js",
"mocha": "mocha ./test/*",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"node": ">= 6.0.0"
}
}