package.json 757 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "peek-stream",
  3. "version": "1.1.3",
  4. "description": "Transform stream that lets you peek the first line before deciding how to parse it",
  5. "main": "index.js",
  6. "dependencies": {
  7. "buffer-from": "^1.0.0",
  8. "duplexify": "^3.5.0",
  9. "through2": "^2.0.3"
  10. },
  11. "devDependencies": {
  12. "concat-stream": "^1.6.0",
  13. "tape": "^4.6.3"
  14. },
  15. "scripts": {
  16. "test": "tape test.js"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/mafintosh/peek-stream"
  21. },
  22. "keywords": [
  23. "peek",
  24. "stream",
  25. "parse",
  26. "swap"
  27. ],
  28. "author": "Mathias Buus",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/mafintosh/peek-stream/issues"
  32. },
  33. "homepage": "https://github.com/mafintosh/peek-stream"
  34. }