package.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. Package.describe({
  2. git: 'https://github.com/zcfs/Meteor-CollectionFS.git',
  3. name: 'wekan-cfs-standard-packages',
  4. version: '0.5.10',
  5. summary: 'Filesystem for Meteor, collectionFS'
  6. });
  7. Package.onUse(function(api) {
  8. // Rig the collectionFS package v2
  9. api.imply([
  10. // Base util rigs the basis for the FS scope and some general helper mehtods
  11. 'wekan-cfs-base-package@0.0.30',
  12. // Want to make use of the file object and its api, yes!
  13. 'wekan-cfs-file@0.1.17',
  14. // Add the FS.Collection to keep track of everything
  15. 'wekan-cfs-collection@0.5.5',
  16. // Support filters for easy rules about what may be inserted
  17. 'wekan-cfs-collection-filters@0.2.4',
  18. // Add the option to have ddp and http access point
  19. 'wekan-cfs-access-point@0.1.49',
  20. // We might also want to have the server create copies of our files?
  21. 'wekan-cfs-worker@0.1.5',
  22. // By default we want to support uploads over HTTP
  23. 'wekan-cfs-upload-http@0.0.20',
  24. ]);
  25. });
  26. Package.onTest(function (api) {
  27. api.use('wekan-cfs-standard-packages');
  28. api.use('test-helpers@1.0.0', 'server');
  29. api.use([
  30. 'tinytest@1.0.0',
  31. 'underscore@1.0.0',
  32. 'ejson@1.0.0',
  33. 'ordered-dict@1.0.0',
  34. 'random@1.0.0',
  35. 'tracker@1.0.3'
  36. ]);
  37. api.addFiles('tests/server-tests.js', 'server');
  38. api.addFiles('tests/client-tests.js', 'client');
  39. });