in index.js [94:106]
function npmArgs (target, opts) {
const args = ['install', target];
opts = opts || {};
if (opts.save_exact) {
args.push('--save-exact');
} else if (opts.save) {
args.push('--save-dev');
} else {
args.push('--no-save');
}
return args;
}