-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "koa-bunyan-logger",
"version": "2.1.0",
"description": "Koa middleware for logging requests using bunyan",
"main": "index.js",
"engines": {
"node": ">= 4.x"
},
"scripts": {
"test": "mocha",
"test:coverage": "npx istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "eslint index.js"
},
"keywords": [
"koa",
"bunyan",
"logging",
"middleware"
],
"repository": {
"type": "git",
"url": "https://github.com/koajs/bunyan-logger.git"
},
"bugs": {
"url": "https://github.com/koajs/bunyan-logger/issues"
},
"homepage": "https://github.com/koajs/bunyan-logger",
"author": "Pebble Technology <[email protected]>",
"license": "MIT",
"dependencies": {
"bunyan": "~1.8.12",
"on-finished": "~2.3.0",
"uuid": "^3.0.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.6.1",
"eslint-config-sexy": "^5.0.0",
"istanbul": "^0.4.5",
"koa": "^2.0.0",
"mocha": "^10.2.0",
"supertest": "^3.3.0"
}
}