44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
|
{
|
||
|
"name": "errorhandler",
|
||
|
"description": "Development-only error handler middleware",
|
||
|
"version": "1.5.1",
|
||
|
"contributors": [
|
||
|
"Douglas Christopher Wilson <doug@somethingdoug.com>",
|
||
|
"Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
|
||
|
],
|
||
|
"license": "MIT",
|
||
|
"repository": "expressjs/errorhandler",
|
||
|
"dependencies": {
|
||
|
"accepts": "~1.3.7",
|
||
|
"escape-html": "~1.0.3"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"after": "0.8.2",
|
||
|
"eslint": "5.16.0",
|
||
|
"eslint-config-standard": "12.0.0",
|
||
|
"eslint-plugin-import": "2.17.2",
|
||
|
"eslint-plugin-markdown": "1.0.0",
|
||
|
"eslint-plugin-node": "8.0.1",
|
||
|
"eslint-plugin-promise": "4.1.1",
|
||
|
"eslint-plugin-standard": "4.0.0",
|
||
|
"istanbul": "0.4.5",
|
||
|
"mocha": "6.1.4",
|
||
|
"supertest": "4.0.2"
|
||
|
},
|
||
|
"files": [
|
||
|
"public/",
|
||
|
"LICENSE",
|
||
|
"HISTORY.md",
|
||
|
"index.js"
|
||
|
],
|
||
|
"engines": {
|
||
|
"node": ">= 0.8"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"lint": "eslint --plugin markdown --ext js,md .",
|
||
|
"test": "mocha --reporter spec --bail --check-leaks test/",
|
||
|
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
|
||
|
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
|
||
|
}
|
||
|
}
|