Using gulp/node, how can I convert this JSON file into a YML file?
Starting file: config.json
{
  ":hello_world": "Test",
  ":foo_bar": [
    "One.js",
    "Two.txt",
  ]
}
Desired output: config.yml
:hello_world: Test 
:foo_bar:
- One.js
- Two.txt