I am very new to node.js so please pardon my ignorance on a simple question. I am adding dependencies to package.json for a node.js application and am wondering if it's possible to specify command line arguments that would normally be passed to npm install. For example, when installing the mongodb package from the command line, you might need to pass an option:
npm install mongodb --mongodb:native
Is their a way with the package.json syntax to specify that a package should be installed with command line options?