forked from ierceg/winston-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.51 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
{
"name": "winston-elasticsearch",
"version": "5.1.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": "[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": {
"common-errors": "^1.0.0",
"debug": "^2.4.4",
"elasticsearch": "^12.1.3",
"lodash": "^4.17.2",
"moment": "^2.17.1",
"promise": "^7.1.1",
"retry": "^0.10.1",
"winston": "^2.3.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"coveralls": "^2.11.15",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-json": "^1.2.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"should": "^11.1.2"
},
"scripts": {
"test": "npm run lint && npm run mocha",
"lint": "eslint *.json *.js",
"mocha": "mocha ./test/*",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec ./test/*"
},
"engines": {
"node": ">= 6.0.0"
}
}