-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.44 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
{
"name" : "glossy",
"version" : "0.1.7",
"description" : "Syslog parser and producer",
"keywords" : ["syslog", "logging"],
"url" : "http://github.com/squeeks/glossy",
"main" : "./index.js",
"author" : "Squeeks <privacymyass@gmail.com>",
"maintainers" : [
{ "name" : "Squeeks", "email" : "privacymyass@gmail.com" }
],
"contributors" : [
{ "name": "artifi", "email": "artifipl@gmail.com" },
{ "name": "Matt Bornski", "email": "matt@bornski.com" },
{ "name": "Fyodor Y", "email": "fygrave@o0o.nu" },
{ "name": "Stan Carney", "email": "stan.carney@rootsh.me" },
{ "name": "Alexander Metzner", "email": "alexander.metzner@thomann.de" },
{ "name": "zaphod1984", "email": "zaphod84@gmx.de" },
{ "name": "Eric Cornelius", "email": "eric.cornelius@mandiant.com" },
{ "name": "horpto", "email": "_singleton__@hackerdom.ru" }
],
"directories" : {
"lib": "./lib",
"test": "./test"
},
"scripts" : {
"test": "node test/runner.js"
},
"repository" : {
"type": "git",
"url": "http://github.com/squeeks/glossy.git"
},
"bugs" : {
"url": "http://github.com/squeeks/glossy/issues"
},
"licenses" : [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"engines" : { "node": ">= 0.2.5" }
}