package.json
1.1 KB
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
{
"name": "express-error-handler",
"version": "1.1.0",
"description": "A graceful error handler for Express applications.",
"main": "error-handler.js",
"scripts": {
"lint": "grunt hint",
"pretest": "npm run -s lint",
"test": "node ./test/runtests.js",
"watch": "watch 'clear && npm run -s test' .",
"start-example": "node examples/app.js | bunyan",
"latest": "updtr"
},
"repository": {
"type": "git",
"url": "git@github.com:dilvie/express-error-handler.git"
},
"keywords": [
"error",
"errors",
"handling",
"handler",
"express",
"connect"
],
"author": "Eric Elliott",
"license": "MIT",
"bugs": {
"url": "https://github.com/dilvie/express-error-handler/issues"
},
"dependencies": {
"mout": "0.12.0"
},
"devDependencies": {
"bunyan-request-logger": "1.0.2",
"connect-cache-control": "1.0.0",
"express": "^4.9.8",
"grunt": "~0.4.1",
"grunt-contrib-jshint": "1.0.0",
"restify": "4.0.4",
"supertest": "1.2.0",
"tape": "4.5.1",
"through": "~2.3.4",
"updtr": "0.1.7",
"watch": "0.17.1"
}
}