-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
58 lines (58 loc) · 1.33 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "express-requests-logger",
"version": "3.0.3",
"description": "Middleware for logging request/responses in Express apps",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/_mocha -- --recursive ./test/*-test.js",
"test:coverage": "./node_modules/.bin/nyc npm test",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ugolas/express-request-logger.git"
},
"keywords": [
"logs",
"requests",
"audit",
"express"
],
"author": "Zooz",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ugolas/express-request-logger/issues"
},
"homepage": "https://github.com/ugolas/express-request-logger#readme",
"nyc": {
"check-coverage": true,
"report-dir": "./coverage",
"lines": 97,
"statements": 97,
"functions": 100,
"branches": 96,
"include": [
"lib"
],
"reporter": [
"lcov",
"text"
],
"cache": true,
"all": true
},
"devDependencies": {
"coveralls": "^3.1.0",
"mocha": "^7.2.0",
"node-mocks-http": "^1.10.1",
"nyc": "^15.1.0",
"rewire": "^3.0.2",
"should": "^11.1.2",
"sinon": "^1.17.7"
},
"dependencies": {
"bunyan": "^1.8.15",
"flat": "^5.0.2",
"lodash": "^4.17.21"
}
}