I see with the help of "gulp-install" library we can install all libraries which are mentioned in package.json. Something like this.
var install = require("gulp-install");
gulp.src(['./package.json']) .pipe(install());
But I couldn't find a way to install a specific library. Please let us know if there is anyway for this to achieve.