package.json 886 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "bl",
  3. "version": "1.2.3",
  4. "description": "Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!",
  5. "main": "bl.js",
  6. "scripts": {
  7. "test": "node test/test.js | faucet"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/rvagg/bl.git"
  12. },
  13. "homepage": "https://github.com/rvagg/bl",
  14. "authors": [
  15. "Rod Vagg <rod@vagg.org> (https://github.com/rvagg)",
  16. "Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)",
  17. "Jarett Cruger <jcrugzz@gmail.com> (https://github.com/jcrugzz)"
  18. ],
  19. "keywords": [
  20. "buffer",
  21. "buffers",
  22. "stream",
  23. "awesomesauce"
  24. ],
  25. "license": "MIT",
  26. "dependencies": {
  27. "readable-stream": "^2.3.5",
  28. "safe-buffer": "^5.1.1"
  29. },
  30. "devDependencies": {
  31. "faucet": "0.0.1",
  32. "hash_file": "~0.1.1",
  33. "tape": "~4.9.0"
  34. }
  35. }