request()

in gulpfile.js [310:316]


    request(distUrl, function(err, response) {
      // Abort if tags not found or something bad happened with the git ls-remote command
      if (err) {
        dfd.reject(err);
      }
      dfd.resolve(response.body);
    });