source: trip-planner-front/node_modules/retry/package.json@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1022 bytes
Line 
1{
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}
Note: See TracBrowser for help on using the repository browser.