About the author
In npm, after running the npm link command to enable your package to be linkable, it's possible to get stuck in a dependency hell, where in the dependency section of your package.json, you get
"dependencies": { "your_package_name": "file:", },
This is where no matter what you try to do, "your_package_name": "file:" just wouldn't get removed from the dependencies.
I spent hours of research, and eventually found out that in order to remove this,