package.json 936 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "safe-timers",
  3. "version": "1.1.0",
  4. "description": "Timers with near-infinite duration support",
  5. "main": "index.js",
  6. "files": [
  7. "index.js"
  8. ],
  9. "directories": {
  10. "test": "test"
  11. },
  12. "scripts": {
  13. "test": "tape test/*.js | tap-spec",
  14. "cov": "nyc npm test && nyc report --reporter=lcov"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/Wizcorp/safe-timers.git"
  19. },
  20. "keywords": [
  21. "setTimeout",
  22. "setInterval",
  23. "timer",
  24. "timeout",
  25. "interval",
  26. "timers",
  27. "timeouts",
  28. "intervals"
  29. ],
  30. "author": "Ron Korving <rkorving@wizcorp.jp>",
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/Wizcorp/safe-timers/issues"
  34. },
  35. "homepage": "https://github.com/Wizcorp/safe-timers#readme",
  36. "devDependencies": {
  37. "codecov": "^3.0.0",
  38. "nyc": "^11.2.1",
  39. "pre-commit": "^1.2.2",
  40. "tap-spec": "^4.1.1",
  41. "tape": "^4.5.1"
  42. }
  43. }