Skip to content

Instantly share code, notes, and snippets.

@rafacv
Created November 13, 2015 18:12
Show Gist options
  • Save rafacv/fd8ea0c1946abc0dcf99 to your computer and use it in GitHub Desktop.
Save rafacv/fd8ea0c1946abc0dcf99 to your computer and use it in GitHub Desktop.
List all root npm dependencies with locked down versions
npm ls | grep -E "^(├|└)─" | cut -d" " -f2 | awk '{FS = "@"; print "\""$1"\"", ":", "\""$2"\""}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment