$ npm installmy_module@0.0.1 /Users/antpaw/my_module├── my_module@0.0.1 └── UNMET PEER DEPENDENCY request@^2.74.0npm WARN my_module@0.0.1 requires a peer of request@^2.74.0 but none was installed.
I don't understand how this can be only a warning. It's a pretty big deal for my app if "request" isn't install and my app will crash.
How can i make npm install
exit with 1
if a peer dependency is unmet or is there something like npm do-i-have-everything-i-need-installed
command that will exit with 1
?