-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 770 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 770 Bytes
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
{
"name": "errorhandler",
"description": "connect's default error handler page",
"version": "1.1.1",
"author": "Jonathan Ong <[email protected]> (http://jongleberry.com)",
"license": "MIT",
"repository": "expressjs/errorhandler",
"dependencies": {
"accepts": "~1.0.4",
"escape-html": "1.0.1"
},
"devDependencies": {
"connect": "3",
"istanbul": "0.2.10",
"mocha": "~1.20.1",
"should": "~4.0.1",
"supertest": "~0.13.0"
},
"engines": {
"node": ">= 0.8"
},
"scripts": {
"test": "mocha --reporter dot test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec test/"
}
}