package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "retimer",
  3. "version": "4.0.0",
  4. "description": "Reschedulable Timer for your node needs",
  5. "main": "retimer.js",
  6. "types": "types.d.ts",
  7. "scripts": {
  8. "lint": "standard",
  9. "test": "npm run test:ci && npm run test:typescript",
  10. "test:ci": "tape test.js | tap-dot",
  11. "test:typescript": "tsd"
  12. },
  13. "pre-commit": [
  14. "lint",
  15. "test"
  16. ],
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/mcollina/retimer.git"
  20. },
  21. "keywords": [
  22. "schedulable",
  23. "reschedulable",
  24. "timer",
  25. "setTimeout"
  26. ],
  27. "author": "Matteo Collina <hello@matteocollina.com>",
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/mcollina/retimer/issues"
  31. },
  32. "homepage": "https://github.com/mcollina/retimer#readme",
  33. "devDependencies": {
  34. "fastbench": "^1.0.1",
  35. "pre-commit": "^1.2.2",
  36. "standard": "^17.1.0",
  37. "tap-dot": "^2.0.0",
  38. "tape": "^5.6.6",
  39. "tsd": "^0.28.1"
  40. },
  41. "browser": {
  42. "./time.js": "./time-browser.js",
  43. "./timers.js": "./timers-browser.js"
  44. },
  45. "dependencies": {
  46. "worker-timers": "^7.0.75"
  47. }
  48. }