UNPKG

1.22 kBJSONView Raw
1{
2 "name": "finalhandler",
3 "description": "Node.js final http responder",
4 "version": "1.0.0",
5 "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
6 "license": "MIT",
7 "repository": "pillarjs/finalhandler",
8 "dependencies": {
9 "debug": "2.6.1",
10 "encodeurl": "~1.0.1",
11 "escape-html": "~1.0.3",
12 "on-finished": "~2.3.0",
13 "parseurl": "~1.3.1",
14 "statuses": "~1.3.1",
15 "unpipe": "~1.0.0"
16 },
17 "devDependencies": {
18 "eslint": "3.15.0",
19 "eslint-config-standard": "6.2.1",
20 "eslint-plugin-markdown": "1.0.0-beta.3",
21 "eslint-plugin-promise": "3.3.2",
22 "eslint-plugin-standard": "2.0.1",
23 "istanbul": "0.4.5",
24 "mocha": "2.5.3",
25 "readable-stream": "2.1.2",
26 "supertest": "1.1.0"
27 },
28 "files": [
29 "LICENSE",
30 "HISTORY.md",
31 "index.js"
32 ],
33 "engines": {
34 "node": ">= 0.8"
35 },
36 "scripts": {
37 "lint": "eslint --plugin markdown --ext js,md .",
38 "test": "mocha --reporter spec --bail --check-leaks test/",
39 "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
40 "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/"
41 }
42}