package.json 837 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "backoff",
  3. "description": "Fibonacci and exponential backoffs.",
  4. "version": "2.5.0",
  5. "license": "MIT",
  6. "author": "Mathieu Turcotte <turcotte.mat@gmail.com>",
  7. "keywords": ["backoff", "retry", "fibonacci", "exponential"],
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/MathieuTurcotte/node-backoff.git"
  11. },
  12. "dependencies": {
  13. "precond": "0.2"
  14. },
  15. "devDependencies": {
  16. "sinon": "1.10",
  17. "nodeunit": "0.9"
  18. },
  19. "scripts": {
  20. "docco" : "docco lib/*.js lib/strategy/* index.js",
  21. "pretest": "jshint lib/ tests/ examples/ index.js",
  22. "test": "node_modules/nodeunit/bin/nodeunit tests/"
  23. },
  24. "engines": {
  25. "node": ">= 0.6"
  26. },
  27. "files": [
  28. "index.js",
  29. "lib",
  30. "tests"
  31. ]
  32. }