package.json 786 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "strip-bom-stream",
  3. "version": "1.0.0",
  4. "description": "Strip UTF-8 byte order mark (BOM) from a stream",
  5. "license": "MIT",
  6. "repository": "sindresorhus/strip-bom-stream",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "node test.js"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "bom",
  23. "strip",
  24. "byte",
  25. "mark",
  26. "unicode",
  27. "utf8",
  28. "utf-8",
  29. "remove",
  30. "delete",
  31. "trim",
  32. "text",
  33. "stream",
  34. "streams"
  35. ],
  36. "dependencies": {
  37. "first-chunk-stream": "^1.0.0",
  38. "strip-bom": "^2.0.0"
  39. },
  40. "devDependencies": {
  41. "ava": "0.0.4",
  42. "concat-stream": "^1.4.5"
  43. }
  44. }