This is more of a _nit-pick_ and _nice-to-have_, if anything. - We know this module is specific to the `Aurelia` framework. - We know it cannot be used in anything other than the `Aurelia` framework. - Could we please omit `Aurelia` from the module class name? It would be nice to be able to just do: ``` import {Configuation} from 'aurelia-configuration'; ``` vs ``` import {AureliaConfiguration} from 'aurelia-configuration'; import {AureliaConfiguration as Configuration} from 'aurelia-configuration'; ```