File "ensure-compatible-npm.sh"
Full Path: /home/cananyalcin/public_html/vendors/parsleyjs/bower_components/mocha/scripts/ensure-compatible-npm.sh
File size: 235 bytes
MIME-type: text/plain
Charset: utf-8
#!/usr/bin/env sh
set -o nounset
set -o errexit
npm install semver
if node -e "process.exit(require('semver').lt(process.argv[1], '1.3.7') ? 0 : 1)" $(npm -v); then
npm install -g npm@2
npm install -g npm
fi
npm uninstall semver