-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
74 lines (74 loc) · 1.44 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
{
"name": "@koa/access-log",
"version": "1.0.0",
"description": "Middleware for common log format access logs",
"main": "index.js",
"files": [
"format.js",
"index.js",
"index.mjs"
],
"exports": {
".": {
"require": "./index.js",
"import": "./index.mjs"
}
},
"scripts": {
"lint": "xo",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/koajs/accesslog"
},
"keywords": [
"common",
"log",
"format",
"access",
"logs",
"middleware",
"koa"
],
"author": "Christoffer Hallas <[email protected]>",
"contributors": [
"3imed-jaberi <[email protected]> (https://www.3imed-jaberi.com)"
],
"license": "MIT",
"devDependencies": {
"eslint-config-xo-lass": "^1.0.3",
"jest": "^29.7.0",
"koa": "^2.12.1",
"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"
],
"rules": {
"node/no-deprecated-api": "off",
"no-unused-vars": "off",
"no-prototype-builtins": "off",
"prefer-rest-params": "off"
}
},
"engines": {
"node": ">= 18"
},
"homepage": "https://github.com/koajs/accesslog",
"bugs": {
"url": "https://github.com/koajs/accesslog/issues"
}
}