forked from veliovgroup/Meteor-Files
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
executable file
·25 lines (23 loc) · 803 Bytes
/
package.js
File metadata and controls
executable file
·25 lines (23 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Package.describe({
name: 'ostrio:files',
version: '1.9.3',
summary: 'File upload via DDP/HTTP to server, 3rd party storage support: AWS S3, GridFS, DropBox and others',
git: 'https://github.com/VeliovGroup/Meteor-Files',
documentation: 'README.md'
});
Npm.depends({
'fs-extra': '4.0.3',
'request': '2.83.0',
'file-type': '7.4.0',
'eventemitter3': '3.0.0'
});
Package.onUse(function(api) {
api.versionsFrom('1.4');
api.use('webapp', 'server');
api.use(['reactive-var', 'tracker', 'http'], 'client');
api.use(['mongo', 'underscore', 'check', 'random', 'ecmascript', 'ostrio:cookies@2.2.4'], ['client', 'server']);
api.addAssets('worker.min.js', 'client');
api.mainModule('server.js', 'server');
api.mainModule('client.js', 'client');
api.export('FilesCollection');
});