UNPKG

959 BJSONView Raw
1{
2 "name": "morgan",
3 "description": "HTTP request logger middleware for node.js",
4 "version": "1.5.3",
5 "contributors": [
6 "Douglas Christopher Wilson <doug@somethingdoug.com>",
7 "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
8 ],
9 "license": "MIT",
10 "repository": "expressjs/morgan",
11 "dependencies": {
12 "basic-auth": "~1.0.1",
13 "debug": "~2.2.0",
14 "depd": "~1.0.1",
15 "on-finished": "~2.2.1"
16 },
17 "devDependencies": {
18 "istanbul": "0.3.9",
19 "mocha": "~2.2.4",
20 "supertest": "~0.15.0"
21 },
22 "files": [
23 "LICENSE",
24 "HISTORY.md",
25 "README.md",
26 "index.js"
27 ],
28 "engines": {
29 "node": ">= 0.8.0"
30 },
31 "scripts": {
32 "test": "mocha --check-leaks --reporter spec --bail",
33 "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot",
34 "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec"
35 }
36}