Sorry about this silly question but i cannot find an explanation for that.
I have my own modules in node_modules folder and when i execute "npm ls" those packages are listed as UNMET DEPENDENCY, but those modules don't depend on anything, they are just modules as folders with an index.js file.
Do I need to create a package.json with some dependency info so "npm ls" lists everything as normal?
This brings up another question. If my own module depends on another module that is already installed and resides in the same node_modules directory as my module, do I need to install it inside my module again? is it cleaner that way or it's not necessary? Notice that my module is project-specific and won't be re-used.
Thanks.