forked from joaquimserafim/express-mw-bunyan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.36 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-mw-bunyan",
"version": "3.0.0",
"description": "express middleware that implements bunyan as a logger",
"main": "index.js",
"files": [
"LICENSE",
"README.md",
"index.js"
],
"scripts": {
"coverage": "open coverage/lcov-report/index.html",
"coverage:check": "istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"test": "standard --fix && istanbul cover _mocha test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joaquimserafim/express-mw-bunyan.git"
},
"keywords": [
"express",
"log",
"logger",
"bunyan",
"services",
"apis",
"middleware"
],
"author": "@JoaquimSerafim",
"license": "ISC",
"bugs": {
"url": "https://github.com/joaquimserafim/express-mw-bunyan/issues"
},
"homepage": "https://github.com/joaquimserafim/express-mw-bunyan#readme",
"devDependencies": {
"body-parser": "^1.15.2",
"bunyan": "^1.8.5",
"chai": "^3.5.0",
"express": "^4.14.0",
"express-mw-correlation-id": "^2.0.0",
"istanbul": "0.4.5",
"mocha": "^3.2.0",
"pre-commit": "^1.2.2",
"standard": "^8.6.0",
"supertest": "^2.0.1"
},
"engines": {
"node": ">=6.1"
},
"pre-commit": [
"test",
"coverage:check"
],
"dependencies": {
"set-prop-get-value": "^1.0.0",
"uuid.v4": "^1.0.0"
}
}