forked from softonic/axios-retry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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
45
46
47
{
"name": "axios-retry",
"version": "1.2.0",
"author": "Rubén Norte <ruben.norte@softonic.com>",
"description": "Axios plugin that intercepts failed requests and retries them whenever posible.",
"license": "Apache-2.0",
"main": "index.js",
"homepage": "https://github.com/softonic/axios-retry",
"files": [
"es",
"lib",
"index.js"
],
"scripts": {
"lint": "eslint es/**/*.js spec/**/*.spec.js",
"pretest": "npm run lint",
"test": "jasmine",
"prebuild": "npm run test",
"build": "rm -rf lib && babel es -d lib --source-maps",
"prerelease": "npm run build",
"release": "npm version -m \"New version: %s\"",
"postrelease": "npm run push && npm publish",
"push": "git push origin master && git push origin --tags"
},
"dependencies": {
"is-retry-allowed": "^1.1.0"
},
"devDependencies": {
"axios": "^0.15.2",
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"eslint": "^2.13.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jasmine": "^1.8.1",
"jasmine": "^2.4.1",
"nock": "^8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/softonic/axios-retry.git"
},
"bugs": {
"url": "https://github.com/softonic/axios-retry/issues"
}
}