-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 864 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
{
"name": "limireq",
"description": "Limireq is a Node.js module that throttles the number of concurrent active requests at a given time. This is useful when batch processing API data without overloading smaller servers and/or the client itself.",
"version": "0.2.0",
"author": {
"name": "Ankit Aggarwal",
"email": "[email protected]",
"twitter": "structAnkit"
},
"contributors": [
{
"name": "Ankit Aggarwal",
"email": "[email protected]"
}
],
"dependencies": {
"request": "2.x"
},
"keywords": [
"request",
"limiter",
"throttle",
"http"
],
"repository": {
"type": "git",
"url": "https://github.com/structAnkit/limireq.git"
},
"main": "index",
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"test": "node tests/run.js"
},
"_id": "[email protected]"
}