-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathpackage.json
85 lines (85 loc) · 1.83 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "koa-logger",
"description": "Logging middleware for koa",
"version": "3.2.1",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "xo",
"pretest": "npm run lint",
"test": "mocha --exit",
"precoverage": "rimraf .nyc_output coverage",
"coverage": "nyc npm run test",
"preci": "echo start CI ........",
"ci": "npm run coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/koajs/logger"
},
"keywords": [
"koa",
"middleware",
"logger",
"log"
],
"author": "Christoffer Hallas <christoffer.hallas@icloud.com>",
"contributors": [
"3imed-jaberi <imed_jebari@hotmail.fr> (https://www.3imed-jaberi.com)"
],
"license": "MIT",
"dependencies": {
"bytes": "^3.1.0",
"chalk": "^4.1.0",
"humanize-number": "^0.0.2",
"passthrough-counter": "^1.0.0"
},
"devDependencies": {
"boom": "^7.3.0",
"chai": "^4.2.0",
"eslint-config-xo-lass": "^1.0.3",
"koa": "^2.12.1",
"koa-compress": "^4.0.1",
"koa-route": "^3.2.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"supertest": "^4.0.2",
"xo": "^0.32.0"
},
"prettier": {
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"space": true,
"extends": [
"xo-lass"
],
"ignore": [
"test",
"example.js"
],
"rules": {
"node/no-deprecated-api": "off",
"no-unused-vars": "off",
"no-prototype-builtins": "off",
"prefer-rest-params": "off",
"max-params": "off",
"no-eq-null" : "off",
"eqeqeq": "off"
}
},
"engines": {
"node": ">= 10"
},
"homepage": "https://github.com/koajs/logger",
"bugs": {
"url": "https://github.com/koajs/logger/issues"
}
}