forked from moll/js-syslog-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (27 loc) · 733 Bytes
/
package.json
File metadata and controls
32 lines (27 loc) · 733 Bytes
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
{
"name": "syslog-protocol",
"version": "1.0.0",
"description": "Syslog (RFC 3164) parser. Works with RFC 3339/ISO 8601 timestamps.",
"keywords": ["syslog", "rfc3164"],
"homepage": "https://github.com/moll/js-syslog-protocol",
"bugs": "https://github.com/moll/js-syslog-protocol/issues",
"author": {
"name": "Andri Möll",
"email": "andri@dot.ee",
"url": "http://themoll.com"
},
"repository": {
"type": "git",
"url": "git://github.com/moll/js-syslog-protocol.git"
},
"licenses": [{
"type": "LAGPL",
"url": "https://github.com/moll/js-syslog-protocol/blob/master/LICENSE"
}],
"main": "index.js",
"scripts": {"test": "make test"},
"devDependencies": {
"mocha": ">= 1.12.0 < 2",
"must": "< 1"
}
}