forked from loopbackio/strong-error-handler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 940 Bytes
/
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
{
"name": "strong-error-handler",
"description": "Error handler for use in development and production environments.",
"license": "MIT",
"version": "3.0.0",
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/KaanYT/strong-error-handler"
},
"main": "lib/handler.js",
"scripts": {
"lint": "eslint .",
"test": "mocha",
"posttest": "npm run lint"
},
"dependencies": {
"accepts": "^1.3.3",
"debug": "^3.1.0",
"ejs": "^2.6.1",
"http-status": "^1.1.2",
"js2xmlparser": "^3.0.0",
"strong-globalize": "^4.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-loopback": "^10.0.0",
"express": "^4.16.3",
"mocha": "^5.2.0",
"supertest": "^3.1.0"
},
"browser": {
"strong-error-handler": false
},
"ci": {
"downstreamIgnoreList": [
"dashboard-controller"
]
}
}