30 lines
730 B
JavaScript
30 lines
730 B
JavaScript
Package.describe({
|
|
name: 'ohif:servers',
|
|
summary: 'OHIF collections to manage DICOM server information',
|
|
version: '0.0.1'
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.versionsFrom('1.7');
|
|
|
|
api.use('ecmascript');
|
|
api.use('templating', 'client');
|
|
api.use('jquery', 'client');
|
|
api.use('stylus', 'client');
|
|
api.use('aldeed:simple-schema@1.5.4');
|
|
api.use('aldeed:collection2@2.10.0');
|
|
|
|
// Our custom packages
|
|
api.use('ohif:core');
|
|
api.use('ohif:log');
|
|
|
|
// Client and server imports
|
|
api.addFiles('both/index.js', [ 'client', 'server' ]);
|
|
|
|
// Server imports
|
|
api.addFiles('server/index.js', 'server');
|
|
|
|
// Client imports
|
|
api.addFiles('client/index.js', 'client');
|
|
});
|