-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1015 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-limit",
"version": "1.0.2",
"description": "koa middleware for limit request by ip with redis or memory",
"main": "index.js",
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git://github.com/dead-horse/koa-limit.git"
},
"keywords": [
"koa",
"middleware",
"limit",
"frequency",
"ip",
"redis"
],
"author": "dead_horse <dead_horse@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dead-horse/koa-limit/issues"
},
"homepage": "https://github.com/dead-horse/koa-limit",
"devDependencies": {
"autod": "^0.1.1",
"co": "3.0.4",
"co-redis": "1.1.0",
"istanbul": "git://github.com/gotwarlost/istanbul.git#harmony",
"koa": "0.5.1",
"koa-favicon": "^1.0.1",
"mm": "0.2.0",
"mocha": "^1.17.1",
"pedding": "0.0.3",
"redis": "0.10.1",
"should": "3.1.3",
"supertest": "0.9.0"
},
"dependencies": {
"debug": "0.7.4",
"ipchecker": "0.0.2"
}
}