package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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.13.1",
  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. "files": [
  13. "lib",
  14. "example"
  15. ],
  16. "directories": {
  17. "lib": "./lib"
  18. },
  19. "main": "index.js",
  20. "engines": {
  21. "node": ">= 4"
  22. },
  23. "dependencies": {},
  24. "devDependencies": {
  25. "fake": "0.2.0",
  26. "istanbul": "^0.4.5",
  27. "tape": "^4.8.0"
  28. },
  29. "scripts": {
  30. "test": "./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/integration/*.js",
  31. "release:major": "env SEMANTIC=major npm run release",
  32. "release:minor": "env SEMANTIC=minor npm run release",
  33. "release:patch": "env SEMANTIC=patch npm run release",
  34. "release": "npm version ${SEMANTIC:-patch} -m \"Release %s\" && git push && git push --tags && npm publish"
  35. }
  36. }