in utils/aempackager.js [145:150]
function executePackageCommand(url, username, password, packageName, cmd, maxRetry) {
let serviceURL = url + endpoint + '?cmd=' + cmd;
var post = executeCommand(serviceURL, username, password, maxRetry);
post.form().append('name', packageName);
return post;
}