source: node_modules/finalhandler/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.2 KB
Line 
1{
2 "name": "finalhandler",
3 "description": "Node.js final http responder",
4 "version": "1.2.0",
5 "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
6 "license": "MIT",
7 "repository": "pillarjs/finalhandler",
8 "dependencies": {
9 "debug": "2.6.9",
10 "encodeurl": "~1.0.2",
11 "escape-html": "~1.0.3",
12 "on-finished": "2.4.1",
13 "parseurl": "~1.3.3",
14 "statuses": "2.0.1",
15 "unpipe": "~1.0.0"
16 },
17 "devDependencies": {
18 "eslint": "7.32.0",
19 "eslint-config-standard": "14.1.1",
20 "eslint-plugin-import": "2.25.4",
21 "eslint-plugin-markdown": "2.2.1",
22 "eslint-plugin-node": "11.1.0",
23 "eslint-plugin-promise": "5.2.0",
24 "eslint-plugin-standard": "4.1.0",
25 "mocha": "9.2.2",
26 "nyc": "15.1.0",
27 "readable-stream": "2.3.6",
28 "safe-buffer": "5.2.1",
29 "supertest": "6.2.2"
30 },
31 "files": [
32 "LICENSE",
33 "HISTORY.md",
34 "SECURITY.md",
35 "index.js"
36 ],
37 "engines": {
38 "node": ">= 0.8"
39 },
40 "scripts": {
41 "lint": "eslint .",
42 "test": "mocha --reporter spec --bail --check-leaks test/",
43 "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
44 "test-cov": "nyc --reporter=html --reporter=text npm test"
45 }
46}
Note: See TracBrowser for help on using the repository browser.