- string.prototype.replaceall seems like an excessive dependency to use here when we can use regex replace with the
g parameter. ( https://stackoverflow.com/a/17606289 ) there are alternative implementations that take 4 lines instead of 30 npm packages.
readable-stream ; this seems excessive, it's a large package and a duplicate of require('stream')
Leaving minimist as is seems ok, but I'd also inline all the argument parsing and go for zero dependencies. But at least I understand the purpose of it.