-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.77 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
70
71
72
73
74
{
"name": "dalee-logger",
"version": "1.0.2",
"description": "Console and Syslog (udp4) logger for ELK / Docker stacks",
"author": "Dalee IA <dev@dalee.ru>",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"test": "make test",
"coverage": "make coverage",
"build": "make build",
"prepublish": "npm run build"
},
"keywords": [
"logstash",
"logger",
"syslog",
"hapi-logger",
"express-logger"
],
"files": [
"dist",
"express.js",
"hapi.js",
"hapi-17.js"
],
"repository": {
"type": "git",
"url": "https://github.com/Dalee/node-logger.git"
},
"engines": {
"node": ">= 6.9.2"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"lodash": "^4.17.4",
"moment": "^2.18.0",
"validator": "^7.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-istanbul": "^0.12.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-es2017": "^6.22.0",
"chai": "^3.5.0",
"eslint": "^3.18.0",
"eslint-config-dalee": "^0.1.7",
"mocha": "^3.2.0",
"npm-check-updates": "^2.10.3",
"sinon": "~1.17.7"
},
"babel": {
"presets": [
"es2015",
"es2016",
"es2017"
],
"plugins": [
"add-module-exports",
"transform-async-to-generator",
"transform-object-rest-spread",
"transform-runtime"
]
}
}