forked from CrabDude/trycatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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
{
"name": "trycatch",
"version": "1.5.20",
"description": "An asynchronous domain-based 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": {
"url": "http://github.com/CrabDude/trycatch/issues"
},
"author": "Adam Crabtree <[email protected]> (http://noderiety.com)",
"main": "lib/trycatch",
"directories": {
"lib": "./lib/"
},
"engines": {
"node": ">=0.8.14"
},
"engineStrict": true,
"scripts": {
"test": "npm run lint && npm run unittests",
"lint": "jshint --config .jshintrc `find . -path ./node_modules -prune -o -name '*.js' -print | tr '\n' ' '`",
"unittests": "mocha --reporter spec ./test/*.js && USE_STRICT=true mocha --reporter spec test/*"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.html"
}
],
"dependencies": {
"hookit": "^1.1.3"
},
"optionalDependencies": {
"ansi-styles": "1.x.x"
},
"keywords": [
"error",
"exception",
"try",
"catch",
"stack",
"trace"
],
"devDependencies": {
"jshint": "2.x.x",
"lodash": "2.x.x",
"mocha": "~1.4.0",
"underscore": "~1.3.3",
"use-strict": "1.x.x"
}
}