const Wunderlist = require('./build/');
const w = new Wunderlist({
clientId: '9383e7d9f6e139549321',
accessToken: 'b88361c7851c3c5d8f8efac1b2374a4c103458926bbef31296746f8f230f'
});
w.getLists()
.then(res => {console.log(res.body)})
.catch(err => {throw err;});