UNPKG

1.01 kBJSONView Raw
1{
2 "name": "morgan",
3 "description": "HTTP request logger middleware for node.js",
4 "version": "1.7.0",
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.3",
13 "debug": "~2.2.0",
14 "depd": "~1.1.0",
15 "on-finished": "~2.3.0",
16 "on-headers": "~1.0.1"
17 },
18 "devDependencies": {
19 "istanbul": "0.4.2",
20 "mocha": "2.4.5",
21 "split": "1.0.0",
22 "supertest": "1.1.0"
23 },
24 "files": [
25 "LICENSE",
26 "HISTORY.md",
27 "README.md",
28 "index.js"
29 ],
30 "engines": {
31 "node": ">= 0.8.0"
32 },
33 "scripts": {
34 "test": "mocha --check-leaks --reporter spec --bail",
35 "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot",
36 "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec"
37 }
38}