Package Exports
- ember-data-numerical-date-transform
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ember-data-numerical-date-transform) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ember-data-numerical-date-transform 
Converts dates represented as seconds since epoch to and from raw Dates.
Example
// In your model...
import Model from 'ember-data/model';
import attr from 'ember-data/attr';
export default Model.extend({
myDate: attr('numerical-date')
});