Configue.withOptions(configueOptions).resolve(configue => {
  const who = configue.get('who', 'World');
  const hook = configue.get('hook', 'none');

  console.log(`Configue: {who: ${who}, hook: ${hook}}`);