mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
11 lines
243 B
JavaScript
11 lines
243 B
JavaScript
Package.describe({
|
|
summary: "Dictionary data structure allowing non-string keys",
|
|
version: '1.0.2'
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.export('IdMap');
|
|
api.use(['underscore', 'json', 'ejson']);
|
|
api.addFiles([ 'id-map.js' ]);
|
|
});
|