1 | {
|
2 | "name": "morgan",
|
3 | "description": "HTTP request logger middleware for node.js",
|
4 | "version": "1.10.0",
|
5 | "contributors": [
|
6 | "Douglas Christopher Wilson <doug@somethingdoug.com>",
|
7 | "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
|
8 | ],
|
9 | "license": "MIT",
|
10 | "keywords": [
|
11 | "express",
|
12 | "http",
|
13 | "logger",
|
14 | "middleware"
|
15 | ],
|
16 | "repository": "expressjs/morgan",
|
17 | "dependencies": {
|
18 | "basic-auth": "~2.0.1",
|
19 | "debug": "2.6.9",
|
20 | "depd": "~2.0.0",
|
21 | "on-finished": "~2.3.0",
|
22 | "on-headers": "~1.0.2"
|
23 | },
|
24 | "devDependencies": {
|
25 | "eslint": "6.8.0",
|
26 | "eslint-config-standard": "14.1.0",
|
27 | "eslint-plugin-import": "2.20.1",
|
28 | "eslint-plugin-markdown": "1.0.2",
|
29 | "eslint-plugin-node": "9.2.0",
|
30 | "eslint-plugin-promise": "4.2.1",
|
31 | "eslint-plugin-standard": "4.0.1",
|
32 | "mocha": "7.1.1",
|
33 | "nyc": "15.0.0",
|
34 | "split": "1.0.1",
|
35 | "supertest": "4.0.2"
|
36 | },
|
37 | "files": [
|
38 | "LICENSE",
|
39 | "HISTORY.md",
|
40 | "README.md",
|
41 | "index.js"
|
42 | ],
|
43 | "engines": {
|
44 | "node": ">= 0.8.0"
|
45 | },
|
46 | "scripts": {
|
47 | "lint": "eslint --plugin markdown --ext js,md .",
|
48 | "test": "mocha --check-leaks --reporter spec --bail",
|
49 | "test-ci": "nyc --reporter=text npm test",
|
50 | "test-cov": "nyc --reporter=html --reporter=text npm test"
|
51 | }
|
52 | }
|