forked from PayU/express-request-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "express-requests-logger",
"version": "1.0.17",
"description": "Middleware for logging request/responses in Express apps",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --recursive ./test/*-test.js",
"test-travis": "./node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --recursive --reporter spec --check-leaks test/",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"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",
"devDependencies": {
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"node-mocks-http": "^1.5.6",
"rewire": "^3.0.2",
"should": "^11.1.2",
"sinon": "^1.17.7"
},
"dependencies": {
"bunyan": "^1.8.5",
"flat": "^4.0.0",
"lodash": "^4.17.5"
}
}