package.json 738 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "block-stream2",
  3. "version": "2.1.0",
  4. "description": "transform input into equally-sized blocks of output",
  5. "main": "index.js",
  6. "dependencies": {
  7. "readable-stream": "^3.4.0"
  8. },
  9. "devDependencies": {
  10. "standard": "^16.0.3",
  11. "tape": "^4.2.2"
  12. },
  13. "scripts": {
  14. "test": "standard && tape test/*.js"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/substack/block-stream2.git"
  19. },
  20. "homepage": "https://github.com/substack/block-stream2",
  21. "keywords": [
  22. "stream",
  23. "block",
  24. "chunk",
  25. "size",
  26. "streams2",
  27. "streams3"
  28. ],
  29. "author": {
  30. "name": "James Halliday",
  31. "email": "mail@substack.net",
  32. "url": "http://substack.net"
  33. },
  34. "license": "MIT"
  35. }