package.json 889 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "streamx",
  3. "version": "2.16.1",
  4. "description": "An iteration of the Node.js core streams with a series of improvements",
  5. "main": "index.js",
  6. "dependencies": {
  7. "fast-fifo": "^1.1.0",
  8. "queue-tick": "^1.0.1"
  9. },
  10. "devDependencies": {
  11. "brittle": "^3.1.1",
  12. "end-of-stream": "^1.4.4",
  13. "standard": "^17.0.0"
  14. },
  15. "optionalDependencies": {
  16. "bare-events": "^2.2.0"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "imports": {
  22. "events": {
  23. "bare": "bare-events",
  24. "default": "events"
  25. }
  26. },
  27. "scripts": {
  28. "test": "standard && brittle test/*.js"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/mafintosh/streamx.git"
  33. },
  34. "author": "Mathias Buus (@mafintosh)",
  35. "license": "MIT",
  36. "bugs": {
  37. "url": "https://github.com/mafintosh/streamx/issues"
  38. },
  39. "homepage": "https://github.com/mafintosh/streamx"
  40. }