46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "errorhandler",
|
|
"description": "Development-only error handler middleware",
|
|
"version": "1.5.2",
|
|
"contributors": [
|
|
"Douglas Christopher Wilson <doug@somethingdoug.com>",
|
|
"Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
|
|
],
|
|
"license": "MIT",
|
|
"repository": "expressjs/errorhandler",
|
|
"funding": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/express"
|
|
},
|
|
"dependencies": {
|
|
"accepts": "~1.3.8",
|
|
"escape-html": "~1.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"after": "0.8.2",
|
|
"eslint": "8.34.0",
|
|
"eslint-config-standard": "14.1.1",
|
|
"eslint-plugin-import": "2.32.0",
|
|
"eslint-plugin-markdown": "3.0.0",
|
|
"eslint-plugin-node": "11.1.0",
|
|
"eslint-plugin-promise": "6.1.1",
|
|
"mocha": "10.8.2",
|
|
"nyc": "15.1.0",
|
|
"supertest": "6.3.3"
|
|
},
|
|
"files": [
|
|
"public/",
|
|
"LICENSE",
|
|
"index.js"
|
|
],
|
|
"engines": {
|
|
"node": ">= 0.8"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint --plugin markdown --ext js,md .",
|
|
"test": "mocha --reporter spec --bail --check-leaks test/",
|
|
"test-ci": "nyc --reporter=lcov --reporter=text npm test",
|
|
"test-cov": "nyc --reporter=html --reporter=text npm test"
|
|
}
|
|
}
|