| 12345678910111213141516171819202122232425262728293031323334353637 | {  "name": "replacestream",  "version": "4.0.3",  "description": "A node.js through stream that does basic streaming text search and replace and is chunk boundary friendly",  "repository": "eugeneware/replacestream",  "author": "Eugene Ware <eugene@noblesamurai.com>",  "license": "BSD-3-Clause",  "files": [    "index.js"  ],  "scripts": {    "test": "mocha --growl --full-trace",    "coverage": "istanbul cover _mocha",    "coveralls": "${npm_package_scripts_coverage} && istanbul-coveralls"  },  "keywords": [    "replace",    "text",    "regex",    "stream",    "streams",    "streaming",    "search"  ],  "dependencies": {    "escape-string-regexp": "^1.0.3",    "object-assign": "^4.0.1",    "readable-stream": "^2.0.2"  },  "devDependencies": {    "chai": "^4.1.2",    "concat-stream": "^1.6.0",    "istanbul": "^0.4.5",    "istanbul-coveralls": "^1.0.3",    "mocha": "^3.5.3"  }}
 |