-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 loc) · 962 Bytes
/
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
{
"name": "koa-ip",
"version": "2.1.3",
"description": "Ip filter middleware for koa, support `whitelist` and `blacklist`.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest"
},
"author": "nswbmw",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nswbmw/koa-ip"
},
"keywords": [
"koa",
"ip",
"whitelist",
"blacklist"
],
"dependencies": {
"debug": "4.3.4",
"lodash.isplainobject": "4.0.6",
"request-ip": "3.3.0"
},
"devDependencies": {
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-standard": "4.1.0",
"jest": "29.4.3",
"koa": "2.14.1",
"supertest": "6.3.3"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
]
}
}