Aucune description

package.json 646B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "first-chunk-stream",
  3. "version": "1.0.0",
  4. "description": "Transform the first chunk in a stream",
  5. "license": "MIT",
  6. "repository": "sindresorhus/first-chunk-stream",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "http://sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "mocha"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "buffer",
  23. "stream",
  24. "streams",
  25. "transform",
  26. "first",
  27. "chunk",
  28. "size",
  29. "min",
  30. "minimum"
  31. ],
  32. "devDependencies": {
  33. "concat-stream": "^1.4.5",
  34. "mocha": "*"
  35. }
  36. }