forked from jhurliman/node-rate-limiter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 755 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "limiter",
"description": "A generic rate limiter for node.js. Useful for API clients, web crawling, or other tasks that need to be throttled",
"version": "1.1.0",
"author": "John Hurliman <jhurliman@jhurliman.org>",
"scripts": {
"test": "vows --spec"
},
"dependencies": {
},
"devDependencies": {
"assert": "1.3.0",
"vows": "0.8.1"
},
"keywords": ["rate", "limiting", "throttling"],
"repository": "git://github.com/jhurliman/node-rate-limiter",
"bugs": { "url": "http://github.com/jhurliman/node-rate-limiter/issues" },
"directories": { "lib": "./lib/" },
"main": "./index.js",
"licenses": [{
"type": "MIT",
"url": "http://github.com/jhurliman/node-rate-limiter/raw/master/LICENSE.txt"
}]
}