strong-error-handler/package.json

34 lines
765 B
JSON
Raw Normal View History

{
"name": "strong-error-handler",
"description": "Error handler for use in development and production environments.",
"license": "MIT",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "https://github.com/strongloop/strong-error-handler.git"
},
"main": "lib/handler.js",
"scripts": {
"lint": "eslint .",
"test": "mocha",
"posttest": "npm run lint"
},
"dependencies": {
2016-05-27 15:04:20 +00:00
"accepts": "^1.3.3",
"debug": "^2.2.0",
2016-05-27 15:04:20 +00:00
"ejs": "^2.4.2",
"http-status": "^0.2.2"
},
"devDependencies": {
"chai": "^2.1.1",
2016-08-17 19:03:17 +00:00
"eslint": "^2.13.1",
"eslint-config-loopback": "^4.0.0",
"express": "^4.13.4",
"mocha": "^2.1.0",
"supertest": "^1.1.0"
2016-05-27 15:04:20 +00:00
},
"browser": {
"strong-error-handler": false
}
}