package.js 830 B

123456789101112131415161718192021222324252627
  1. Package.describe({
  2. name: 'wekan-ldap',
  3. version: '0.0.2',
  4. // Brief, one-line summary of the package.
  5. summary: 'Basic meteor login with ldap',
  6. // URL to the Git repository containing the source code for this package.
  7. git: 'https://github.com/wekan/wekan-ldap',
  8. // By default, Meteor will default to using README.md for documentation.
  9. // To avoid submitting documentation, set this field to null.
  10. documentation: 'README.md'
  11. });
  12. Package.onUse(function(api) {
  13. api.use('yasaricli:slugify');
  14. api.use('ecmascript');
  15. api.use('underscore');
  16. api.use('sha');
  17. api.use('templating', 'client');
  18. api.use('accounts-base', 'server');
  19. api.use('accounts-password', 'server');
  20. api.use('percolate:synced-cron', 'server');
  21. api.addFiles('client/loginHelper.js', 'client');
  22. api.mainModule('server/index.js', 'server');
  23. });