Add dynamicRange option.
Adapt rescaleScene to be able to increase the scale (new note is added) or decrease the scale (a note is deleted).
var path = require('path');
// Filters out non .js files. Prevents
// accidental inclusion of possible hidden files
module.exports = function(name) {
return /(\.(js)$)/i.test(path.extname(name));
};