package.json 763 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "streamx",
  3. "version": "2.12.5",
  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.0.0",
  8. "queue-tick": "^1.0.0"
  9. },
  10. "devDependencies": {
  11. "abort-controller": "^3.0.0",
  12. "end-of-stream": "^1.4.1",
  13. "standard": "^14.3.1",
  14. "tape": "^4.11.0"
  15. },
  16. "files": [
  17. "index.js"
  18. ],
  19. "scripts": {
  20. "test": "standard && tape test/*.js"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/streamxorg/streamx.git"
  25. },
  26. "author": "Mathias Buus (@mafintosh)",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/streamxorg/streamx/issues"
  30. },
  31. "homepage": "https://github.com/streamxorg/streamx"
  32. }