1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- Package.describe({
- name: 'wekan-cfs-access-point',
- version: '0.1.50',
- summary: 'CollectionFS, add ddp and http accesspoint capability',
- git: 'https://github.com/zcfs/Meteor-cfs-access-point.git'
- });
- Npm.depends({
- "content-disposition": "0.5.0"
- });
- Package.onUse(function(api) {
- api.versionsFrom('1.0');
- // This imply is needed for tests, and is technically probably correct anyway.
- api.imply([
- 'wekan-cfs-base-package'
- ]);
- api.use([
- //CFS packages
- 'wekan-cfs-base-package@0.0.30',
- 'wekan-cfs-file@0.1.16',
- //Core packages
- 'check',
- 'ejson',
- //Other packages
- 'wekan-cfs-http-methods@0.0.29',
- 'wekan-cfs-http-publish@0.0.13'
- ]);
- api.addFiles([
- 'access-point-common.js',
- 'access-point-handlers.js',
- 'access-point-server.js'
- ], 'server');
- api.addFiles([
- 'access-point-common.js',
- 'access-point-client.js'
- ], 'client');
- });
- Package.onTest(function (api) {
- api.versionsFrom('1.0');
- api.use([
- //CFS packages
- 'wekan-cfs-access-point',
- 'wekan-cfs-standard-packages@0.0.2',
- 'wekan-cfs-gridfs@0.0.0',
- //Core packages
- 'test-helpers',
- 'http',
- 'tinytest',
- 'underscore',
- 'ejson',
- 'ordered-dict',
- 'random',
- 'deps'
- ]);
- api.addFiles('tests/client-tests.js', 'client');
- api.addFiles('tests/server-tests.js', 'server');
- });
|