-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 907 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 907 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
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "node-request-queue",
"version": "1.0.2",
"description": "A utility to queue up a number requests to be executed in parallel batches with possible waitTime between them. Well suited for webscraping.",
"main": "index.js",
"scripts": {
"test": "mocha test/*.js",
"sample": "node sample/sample.js"
},
"keywords": [
"request",
"queue",
"request-promise",
"webscraping",
"scraping"
],
"author": "Tommy Dronkers <tommy@snappyjs.com> (www.snappyjs.com)",
"license": "MIT",
"homepage": "snappyjs.com",
"bugs": {
"url": "https://github.com/snappyjs/node-request-queue/issues",
"email": "tommy@snappyjs.com"
},
"repository": {
"type": "git",
"url": "https://github.com/snappyjs/node-request-queue.git"
},
"dependencies": {
"request": "^2.85.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.2.1",
"nock": "^13.0.4"
}
}