forked from expressjs/morgan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "morgan",
"description": "HTTP request logger middleware for node.js",
"version": "1.6.1",
"contributors": [
"Douglas Christopher Wilson <[email protected]>",
"Jonathan Ong <[email protected]> (http://jongleberry.com)"
],
"license": "MIT",
"repository": "expressjs/morgan",
"dependencies": {
"basic-auth": "~1.0.3",
"debug": "~2.2.0",
"depd": "~1.1.0",
"on-finished": "~2.3.0",
"on-headers": "~1.0.1",
"request-ip": "^1.1.4"
},
"devDependencies": {
"istanbul": "0.4.0",
"mocha": "2.3.3",
"split": "1.0.0",
"supertest": "1.1.0"
},
"files": [
"LICENSE",
"HISTORY.md",
"README.md",
"index.js"
],
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "mocha --check-leaks --reporter spec --bail",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec"
}
}