-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.15 KB
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
43
44
{
"name": "@ambassify/fetch-retried",
"version": "2.2.0",
"description": "Use the fetch API to run requests, implementing retries",
"main": "src/index.js",
"browser": "dist/index.js",
"scripts": {
"release": "npm version patch && npm publish",
"build": "babel -d dist src",
"test": "npm -s run test:lint && npm -s run test:unit",
"test:lint": "eslint src",
"test:unit": "nyc mocha",
"prepublishOnly": "npm -s run test && npm -s run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ambassify/fetch-retried.git"
},
"keywords": [
"node-fetch",
"fetch",
"retry",
"exponential backoff",
"backoff"
],
"author": "Ambassify <dev@ambassify.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ambassify/fetch-retried/issues"
},
"homepage": "https://github.com/ambassify/fetch-retried#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": "^3.2.0",
"nyc": "^10.1.2",
"sinon": "^1.17.7"
}
}