about summary refs log tree commit diff
path: root/Completion/Unix/Command/_npm
blob: f5493a321804c535e1ebd1446aa10bda769191ce (plain) (blame)
1
2
3
4
5
6
7
8
9
#compdef npm

# Node Package Manager completion, letting npm do all the completion work

if type npm > /dev/null; then
  eval "$(npm completion)"

  _npm_completion "$@"
fi