ohif-viewer/Packages/accounts-ldap/package.js
2016-03-22 15:43:06 -04:00

28 lines
718 B
JavaScript

Package.describe({
name: 'typ:accounts-ldap',
version: '1.0.1',
summary: 'Accounts login for LDAP using ldapjs. Supports anonymous DN search & LDAPS.',
git: 'https://github.com/typ90/meteor-accounts-ldap',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.0.3.1');
api.use(['templating'], 'client');
api.use(['typ:ldapjs@0.7.3'], 'server');
api.use('accounts-base', 'server');
api.imply('accounts-base');
api.imply('accounts-password');
api.use('check');
api.addFiles(['ldap_client.js'], 'client');
api.addFiles(['ldap_server.js'], 'server');
api.export('LDAP', 'server');
api.export('LDAP_DEFAULTS', 'server');
});