alanshaw / david-www

:eyeglasses: David helps keep your Node.js project dependencies up to date.
https://david-dm.org
MIT License
728 stars 130 forks source link

[question] use david for non-registered package.json? #280

Closed ducin closed 8 years ago

ducin commented 8 years ago

I've got a huge package.json with dependencies defined, but I don't want to publish the package.json, because the project will never be public. I could do an overcome by submitting a npm module with package.json file only, but this corrupts npm registry and is a dirty solution.

Is there a way to use david for just package.json files (and not npm registered node modules)?

alanshaw commented 8 years ago

You could use the CLI - https://github.com/alanshaw/david

You could create a public github repo with jjust a package.json in it, stripped of everything other than the dependencies and somehow keep it in sync with your project.

ducin commented 8 years ago

Cool, perfect, thank you!