package.json 836 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "streamx",
  3. "version": "2.23.0",
  4. "description": "An iteration of the Node.js core streams with a series of improvements",
  5. "main": "index.js",
  6. "dependencies": {
  7. "events-universal": "^1.0.0",
  8. "fast-fifo": "^1.3.2",
  9. "text-decoder": "^1.1.0"
  10. },
  11. "devDependencies": {
  12. "b4a": "^1.6.6",
  13. "brittle": "^3.1.1",
  14. "end-of-stream": "^1.4.4",
  15. "standard": "^17.0.0"
  16. },
  17. "files": [
  18. "index.js"
  19. ],
  20. "scripts": {
  21. "test": "standard && node test/all.js",
  22. "test:bare": "standard && bare test/all.js"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/mafintosh/streamx.git"
  27. },
  28. "author": "Mathias Buus (@mafintosh)",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/mafintosh/streamx/issues"
  32. },
  33. "homepage": "https://github.com/mafintosh/streamx"
  34. }