Not sure this is possible, but I need to override the version of a dependency's dependency. Specifically, I have this in my package.json:
"dependencies": {
"connect": "*"
}
connect then has a dependency on "formidable": "1.0.11". I need connect to use version 1.0.13 of formidable.
Is it possible to override connect's dependency without cloning that project?