I accidentally installed a generator that I don\'t want. I can\'t find any method to remove it. What should I do to accomplish this?
npm uninstall -g [generator-name] might not fix the UNMET DEPENDENCY. If you won't mind to reinstall the affected modules:
npm uninstall -g [generator-name]
rm -rf [generator-name]
npm cache clean
npm install -g [generator-name]