package.json 682 B

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