-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
57 lines (57 loc) · 1.2 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
{
"name": "syslog-client",
"version": "1.2.0",
"description": "TCP and UDP syslog client RFC 5424 & RFC 3164",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --exit",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test"
},
"directories": {
"example": "example"
},
"dependencies": {},
"contributors": [
{
"name": "Paul Grove",
"email": "paul.a.grove@gmail.com"
},
{
"name": "Stephen Vickers",
"email": "stephen.vickers.sv@gmail.com"
},
{
"name": "Tim Garthwaite",
"email": "tim@mividstudios.com"
},
{
"name": "Seth Blumberg",
"email": "sethb@pobox.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/paulgrove/node-syslog-client.git"
},
"keywords": [
"logger",
"logging",
"syslog",
"syslog-client",
"syslog-logger",
"syslog-logging",
"tcp-syslog",
"tcp-syslog-client",
"udp-syslog",
"udp-syslog-client",
"tls"
],
"author": "Paul Grove <paul.a.grove@gmail.com>",
"license": "MIT",
"devDependencies": {
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0"
}
}