package.json 671 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "passthrough-counter",
  3. "description": "Get the total buffer length of a stream.",
  4. "version": "1.0.0",
  5. "author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
  6. "license": "MIT",
  7. "repository": "stream-utils/passthrough-counter",
  8. "devDependencies": {
  9. "mocha": "2",
  10. "istanbul": "0"
  11. },
  12. "scripts": {
  13. "test": "mocha --reporter spec",
  14. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
  15. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
  16. },
  17. "keywords": [
  18. "stream",
  19. "count",
  20. "passthrough"
  21. ],
  22. "files": [
  23. "index.js"
  24. ]
  25. }