1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"author": "Tim Koschützki <tim@debuggable.com> (http://debuggable.com/)",
|
3 |
|
|
"name": "retry",
|
4 |
|
|
"description": "Abstraction for exponential and custom retry strategies for failed operations.",
|
5 |
|
|
"license": "MIT",
|
6 |
|
|
"version": "0.12.0",
|
7 |
|
|
"homepage": "https://github.com/tim-kos/node-retry",
|
8 |
|
|
"repository": {
|
9 |
|
|
"type": "git",
|
10 |
|
|
"url": "git://github.com/tim-kos/node-retry.git"
|
11 |
|
|
},
|
12 |
|
|
"directories": {
|
13 |
|
|
"lib": "./lib"
|
14 |
|
|
},
|
15 |
|
|
"main": "index",
|
16 |
|
|
"engines": {
|
17 |
|
|
"node": ">= 4"
|
18 |
|
|
},
|
19 |
|
|
"dependencies": {},
|
20 |
|
|
"devDependencies": {
|
21 |
|
|
"fake": "0.2.0",
|
22 |
|
|
"istanbul": "^0.4.5",
|
23 |
|
|
"tape": "^4.8.0"
|
24 |
|
|
},
|
25 |
|
|
"scripts": {
|
26 |
|
|
"test": "./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/integration/*.js",
|
27 |
|
|
"release:major": "env SEMANTIC=major npm run release",
|
28 |
|
|
"release:minor": "env SEMANTIC=minor npm run release",
|
29 |
|
|
"release:patch": "env SEMANTIC=patch npm run release",
|
30 |
|
|
"release": "npm version ${SEMANTIC:-patch} -m \"Release %s\" && git push && git push --tags && npm publish"
|
31 |
|
|
}
|
32 |
|
|
}
|