fs = require('fs')
path = require('path')

exports.parseConfig = ()->
	if path.existsSync('config.json')
		return JSON.parse fs.readFileSync('config.json', 'utf8')
	else
		return {}
