package.json 635 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "stream-shift",
  3. "version": "1.0.1",
  4. "description": "Returns the next buffer/object in a stream's readable queue",
  5. "main": "index.js",
  6. "dependencies": {},
  7. "devDependencies": {
  8. "standard": "^7.1.2",
  9. "tape": "^4.6.0",
  10. "through2": "^2.0.1"
  11. },
  12. "scripts": {
  13. "test": "standard && tape test.js"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/mafintosh/stream-shift.git"
  18. },
  19. "author": "Mathias Buus (@mafintosh)",
  20. "license": "MIT",
  21. "bugs": {
  22. "url": "https://github.com/mafintosh/stream-shift/issues"
  23. },
  24. "homepage": "https://github.com/mafintosh/stream-shift"
  25. }