forked from cloudkick/rate-limiter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "rate-limiter",
"description": "A module for rate limiting HTTP(s) requests based on the client IP address.",
"version": "0.2.0",
"author": "Cloudkick, Inc. <[email protected]> http://www.cloudkick.com",
"keywords": [ "rate", "limiter", "rate limiting", "flood prevention"],
"homepage": "https://github.com/cloudkick/rate-limiter",
"license": "Apache 2.0",
"repository": {
"type": "git",
"url": "git://github.com/cloudkick/rate-limiter.git"
},
"modules": {
"rate-limiter": "./lib/rate-limiter"
},
"directories": {
"lib": "./lib",
"example": "./example"
},
"scripts": {
"test": "make test"
},
"dependencies": {
"sprintf": ">= 0.1.1"
},
"devDependencies": {
"whiskey": "0.8.x",
"jshint": "2.1.x",
"express": ">= 2.3.4"
},
"engines": {
"node": ">= 0.4.0"
},
"scripts": {
"lint": "./node_modules/.bin/jshint ./{lib,example,tests}/*.js --config .jshintrc",
"test": "./node_modules/.bin/whiskey --tests ./tests/test-rate-limiter.js"
},
"main": "./index"
}