var thresher = module.exports;
var winston = require('winston');
log = new (winston.Logger)({
transports: [
new (winston.transports.Console)({ level: 'info' })
]
});
log.cli();
thresher.deps = require('./dependencies.js');
thresher.dom = require('./dom.js');
thresher.file = require('./file.js');
thresher.url = require('./url.js');
thresher.download = require('./download.js');
thresher.Ticker = require('./ticker.js');
thresher.Scraper = require('./scraper.js');
thresher.Thresher = require('./thresher.js');
thresher.ScraperBox = require('./scraperBox.js');