-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
40
41
42
{
"name": "@ambassify/fetch-queued",
"version": "2.0.1",
"description": "Use the fetch API to run requests with a maximum concurrency.",
"main": "src/index.js",
"browser": "dist/browser.js",
"scripts": {
"test": "npm -s run test:lint && npm -s run test:unit",
"test:unit": "mocha",
"test:lint": "eslint src",
"prepublishOnly": "npm -s run build",
"build": "babel -d dist src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ambassify/fetch-queued.git"
},
"keywords": [
"node-fetch",
"fetch",
"queue",
"concurrent",
"concurrency"
],
"author": "Ambassify <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ambassify/fetch-queued/issues"
},
"homepage": "https://github.com/ambassify/fetch-queued#readme",
"dependencies": {
"@ambassify/fetch": "^2.2.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"eslint": "^6.8.0",
"mocha": "^7.1.2",
"nock": "^12.0.3"
}
}