forked from CrabDude/trycatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 763 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 763 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
{
"name" : "trycatch",
"version" : "0.0.10",
"description" : "An asynchronous exception handler with long stack traces for node.js",
"homepage": "http://github.com/CrabDude/trycatch",
"repository": {
"type" : "git",
"url" : "git://github.com/CrabDude/trycatch.git"
},
"bugs" : { "web" : "http://github.com/CrabDude/trycatch/issues" },
"author" : "Adam Crabtree <dude@noderiety.com> (http://noderiety.com)",
"main" : "lib/trycatch",
"directories" : { "lib" : "./lib/" },
"engines" : { "node" : ">=0.2.0" },
"licenses" : [{
"type" : "MIT",
"url" : "http://www.opensource.org/licenses/mit-license.html"
}],
"dependencies" : {
"colors": ">=0.5.0 <0.6"
},
"keywords": [
"error",
"exception",
"try",
"catch",
"stack",
"trace"
]
}