-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.31 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
{
"name": "dev-error-handler",
"version": "1.2.0",
"description": "HTTP error-handling middleware that displays syntax highlighted source code.",
"main": "server.js",
"dependencies": {
"ejs": "^2.3.4",
"errto": "^0.2.1",
"highlight.js": "https://github.com/alessioalex/highlight.js/releases/download/npm-v0.1.1/highlight.js.tar.gz.tgz",
"node-notifier": "^4.4.0",
"pretty-error": "^1.2.0",
"stack-trace": "^0.0.9",
"tiny-map-async": "^1.0.0"
},
"devDependencies": {
"alessioalex-standard": "^1.1.0",
"cheerio": "^0.19.0",
"express": "^4.13.3",
"husky": "^0.10.2",
"simple-get": "^1.4.3"
},
"keywords": [
"express",
"http",
"middleware",
"error",
"error-handler",
"errorhandler"
],
"scripts": {
"test": "NODE_ENV=test node test/test",
"example": "node examples/http.js",
"lint": "alessioalex-standard",
"precommit": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/alessioalex/dev-error-handler"
},
"author": "Alexandru Vladutu <[email protected]> (http://careers.stackoverflow.com/alessioalex)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alessioalex/dev-error-handler/issues"
},
"homepage": "https://github.com/alessioalex/dev-error-handler"
}