package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "tryer",
  3. "version": "1.0.1",
  4. "description": "Because everyone loves a tryer! Conditional and repeated task invocation for node and browser.",
  5. "homepage": "https://gitlab.com/philbooth/tryer",
  6. "bugs": "https://gitlab.com/philbooth/tryer/issues",
  7. "license": "MIT",
  8. "author": "Phil Booth <pmbooth@gmail.com> (https://philbooth.me/)",
  9. "main": "./src/tryer",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://gitlab.com/philbooth/tryer.git"
  13. },
  14. "keywords": [
  15. "repeat",
  16. "retry",
  17. "predicate",
  18. "conditional",
  19. "invocation",
  20. "execution",
  21. "loop",
  22. "condition",
  23. "termination",
  24. "exponential",
  25. "backoff"
  26. ],
  27. "devDependencies": {
  28. "chai": "4.1.x",
  29. "jshint": "2.9.x",
  30. "mocha": "5.2.x",
  31. "please-release-me": "2.0.x",
  32. "spooks": "2.0.x",
  33. "uglify-js": "3.4.x"
  34. },
  35. "scripts": {
  36. "lint": "jshint src/tryer.js test/unit.js",
  37. "test": "mocha --ui tdd --reporter spec --colors test/unit.js",
  38. "minify": "uglifyjs ./src/tryer.js --compress --mangle --output ./lib/tryer.min.js"
  39. }
  40. }