package.json 669 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "queue-tick",
  3. "version": "1.0.1",
  4. "description": "Next tick shim that prefers process.nextTick over queueMicrotask for compat",
  5. "main": "./process-next-tick.js",
  6. "browser": "./queue-microtask.js",
  7. "dependencies": {},
  8. "devDependencies": {
  9. "standard": "^16.0.3",
  10. "tape": "^5.3.1"
  11. },
  12. "scripts": {
  13. "test": "standard && tape test.js"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/mafintosh/queue-tick.git"
  18. },
  19. "author": "Mathias Buus (@mafintosh)",
  20. "license": "MIT",
  21. "bugs": {
  22. "url": "https://github.com/mafintosh/queue-tick/issues"
  23. },
  24. "homepage": "https://github.com/mafintosh/queue-tick"
  25. }