I am very new to node.js, so please forgive my ignorance on a simple question. I add dependencies to package.json for the node.js application and wonder if it is possible to specify command line arguments that are usually passed to the npm installation. For example, when installing the mongodb package from the command line, you may need to pass the option:
npm install mongodb
Is their way the syntax of package.json to indicate that the package should be installed with command line options?
source share