I want to write fixed dependency versions in my package.json of the installed (!= latest available) modules.
These are alternative solutions, which does not satisfy me requirements:
Writing the latest available versions to the package.json.
npm shrinkwrap writes the dependencies to npm-shrinkwrap.json instead of package.json
I don't want to use shrinkwrap because it's just another tool and additional configuration file for a problem which could be solved without. Or could shrinkwrap be tweaked to write all versions from npm-shrinkwrap.json to package.json ?