Fix STDIN for npm package
In the 4.1.0 release, we added support for STDIN. Unfortunately, we didn't validate that it worked from the npm interface.
It looks like STDIN is not being sent to the process. Looking at the wrapper for the npm interface, it looks like we're manually hooking up the pipes. We can use {stdio: 'inherit'}, to not deal with that bookkeeping.