-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
47 lines (47 loc) · 1.11 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
{
"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": "[email protected]:ericelliott/express-error-handler.git"
},
"keywords": [
"error",
"errors",
"handling",
"handler",
"express",
"connect"
],
"author": "Eric Elliott",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericelliott/express-error-handler/issues"
},
"dependencies": {
"mout": "1.2.2"
},
"devDependencies": {
"bunyan-request-logger": "2.1.0",
"connect-cache-control": "1.0.0",
"express": "4.17.1",
"grunt": "0.4.5",
"grunt-contrib-jshint": "1.1.0",
"restify": "7.7.0",
"supertest": "4.0.2",
"tape": "4.13.2",
"through": "2.3.8",
"updtr": "3.1.0",
"watch": "1.0.2"
}
}