exports.readJSONFile = (filePath, fallbackValue) => {
    debug(`read JSON file from: ${filePath}`);
    return _readFile(fsExtra.readJSON, filePath, fallbackValue);
};