Install a dev dependency, then install a production dependency that (internally) depends on that same dev dependency. (Should you have to know that? Is that not an implementation detail?)
Then shrinkwrap for production, and note the missing nested dependency.
npm init
npm install [email protected] --save-dev
npm install strong-agent --save
npm shrinkwrap
You can work around this by using
npm shrinkwrap --dev