What's the npm command that fills in dependency version numbers?

I know there's a quick way to fill in my package.json with version numbers instead of asterisks. I'm pretty sure it's just an npm command, but I can't find it.

Any help would rock!

The --save command will add version numbers to package.json

npm install <module> --save

I believe it will use the major version and not upgrade beyond it.