-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
41 lines (41 loc) · 953 Bytes
/
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
{
"name": "gelf-pro",
"version": "1.4.0",
"main": "./lib/gelf-pro.js",
"typings": "./typings/index.d.ts",
"author": "Kanstantsin Kamkou <[email protected]>",
"description": "The Graylog Extended Log Format for the Node.js",
"keywords": [
"graylog",
"graylog2",
"gelf",
"logging",
"udp",
"tcp",
"tls",
"ssl"
],
"repository": {
"type": "git",
"url": "https://github.com/kkamkou/node-gelf-pro.git"
},
"bugs": {
"url": "https://github.com/kkamkou/node-gelf-pro/issues"
},
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec"
},
"dependencies": {
"lodash": "~4.17.21"
},
"devDependencies": {
"coveralls": "^3.0.14",
"eslint": "^7.32.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.0-2",
"mocha-lcov-reporter": "^1.3.0",
"should": "^13.2.3",
"sinon": "^3.3.0"
}
}