package.json 924 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "replacestream",
  3. "version": "4.0.3",
  4. "description": "A node.js through stream that does basic streaming text search and replace and is chunk boundary friendly",
  5. "repository": "eugeneware/replacestream",
  6. "author": "Eugene Ware <eugene@noblesamurai.com>",
  7. "license": "BSD-3-Clause",
  8. "files": [
  9. "index.js"
  10. ],
  11. "scripts": {
  12. "test": "mocha --growl --full-trace",
  13. "coverage": "istanbul cover _mocha",
  14. "coveralls": "${npm_package_scripts_coverage} && istanbul-coveralls"
  15. },
  16. "keywords": [
  17. "replace",
  18. "text",
  19. "regex",
  20. "stream",
  21. "streams",
  22. "streaming",
  23. "search"
  24. ],
  25. "dependencies": {
  26. "escape-string-regexp": "^1.0.3",
  27. "object-assign": "^4.0.1",
  28. "readable-stream": "^2.0.2"
  29. },
  30. "devDependencies": {
  31. "chai": "^4.1.2",
  32. "concat-stream": "^1.6.0",
  33. "istanbul": "^0.4.5",
  34. "istanbul-coveralls": "^1.0.3",
  35. "mocha": "^3.5.3"
  36. }
  37. }