const BMC = require('buymeacoffee.js'); // add BMC package
const access = require('./coffee.json'); // load your token
const coffee = new BMC(access.token); // add your token here
// retrieve supporters data
coffee.Supporters().then(data => console.log(data));
// retrieve subscribers data
coffee.Subscriptions().then(data => console.log(data));
coffee.Extras().then(data => console.log(data));