in spec/helpers.js [152:161]
module.exports.getPluginSpec = function (appPath, plugin) {
appPath = getConfigPath(appPath);
const parser = new ConfigParser(appPath);
const p = parser.getPlugin(plugin);
if (p) {
return p.spec;
}
return null;
};