forked from squeeks/glossy
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
63 additions
and
26 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,75 @@ | ||
{ | ||
"name" : "@myndzi/glossy", | ||
"version" : "0.1.9", | ||
"description" : "Syslog parser and producer", | ||
"keywords" : ["syslog", "logging"], | ||
"url" : "http://github.com/squeeks/glossy", | ||
"main" : "./index.js", | ||
"author" : "Squeeks <[email protected]>", | ||
"maintainers" : [ | ||
{ "name" : "Squeeks", "email" : "[email protected]" } | ||
"name": "@myndzi/glossy", | ||
"version": "0.1.10", | ||
"description": "Syslog parser and producer", | ||
"keywords": [ | ||
"syslog", | ||
"logging" | ||
], | ||
"contributors" : [ | ||
{ "name": "artifi", "email": "[email protected]" }, | ||
{ "name": "Matt Bornski", "email": "[email protected]" }, | ||
{ "name": "Fyodor Y", "email": "[email protected]" }, | ||
{ "name": "Stan Carney", "email": "[email protected]" }, | ||
{ "name": "Alexander Metzner", "email": "[email protected]" }, | ||
{ "name": "zaphod1984", "email": "[email protected]" }, | ||
{ "name": "Eric Cornelius", "email": "[email protected]" }, | ||
{ "name": "horpto", "email": "[email protected]" } | ||
"url": "http://github.com/squeeks/glossy", | ||
"main": "./index.js", | ||
"author": "Squeeks <[email protected]>", | ||
"maintainers": [ | ||
{ | ||
"name": "Squeeks", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"contributors": [ | ||
{ | ||
"name": "artifi", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Matt Bornski", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Fyodor Y", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Stan Carney", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Alexander Metzner", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "zaphod1984", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Eric Cornelius", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "horpto", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"directories" : { | ||
"lib": "./lib", | ||
"test": "./test" | ||
"directories": { | ||
"lib": "./lib", | ||
"test": "./test" | ||
}, | ||
"scripts" : { | ||
"scripts": { | ||
"test": "node test/runner.js" | ||
}, | ||
"repository" : { | ||
"repository": { | ||
"type": "git", | ||
"url": "http://github.com/squeeks/glossy.git" | ||
}, | ||
"bugs" : { | ||
"bugs": { | ||
"url": "http://github.com/squeeks/glossy/issues" | ||
}, | ||
"licenses" : [ | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "http://www.opensource.org/licenses/MIT" | ||
} | ||
], | ||
"engines" : { "node": ">= 0.2.5" } | ||
"engines": { | ||
"node": ">= 0.2.5" | ||
} | ||
} |