package.json 619 B

123456789101112131415161718192021222324
  1. {
  2. "name": "fast-fifo",
  3. "version": "1.1.0",
  4. "description": "A fast fifo implementation similar to the one powering nextTick in Node.js core",
  5. "main": "index.js",
  6. "dependencies": {},
  7. "devDependencies": {
  8. "standard": "^12.0.1",
  9. "tape": "^4.10.1"
  10. },
  11. "scripts": {
  12. "test": "standard && tape test.js"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/mafintosh/fast-fifo.git"
  17. },
  18. "author": "Mathias Buus (@mafintosh)",
  19. "license": "MIT",
  20. "bugs": {
  21. "url": "https://github.com/mafintosh/fast-fifo/issues"
  22. },
  23. "homepage": "https://github.com/mafintosh/fast-fifo"
  24. }