I'm puzzled by the presence of `express` in my `npm-shrinkwrap` file as a main dependency.
Despite this,
- `express` is not listed as a dependency in my `package.json` file.
- I can't find any usage of it in my project.
- It's not included as a dependency of another package in `npm-shrinkwrap`, which would make more sense.
I've tried running the following commands, but the library remains:
npm prune
npm shrinkwrap
I eventually found the `express` dependency lurking in `node_modules`, shouldn't it be documented in `npm-shrinkwrap` if it's not explicitly declared as part of the project?