forked from yogiben/meteor-autoform-file
-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.js
More file actions
29 lines (26 loc) · 737 Bytes
/
package.js
File metadata and controls
29 lines (26 loc) · 737 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
26
27
28
29
Package.describe({
name: 'ostrio:autoform-files',
summary: 'File upload for AutoForm using ostrio:files',
description: 'File upload for AutoForm using ostrio:files',
version: '2.5.2',
git: 'https://github.com/veliovgroup/meteor-autoform-file.git'
});
Package.onUse((api) => {
api.versionsFrom(['2.0', '3.0-rc.0']);
api.use([
'check',
'ecmascript',
'mongo',
'reactive-var',
'templating@1.4.2',
'aldeed:autoform@7.0.0 || 8.0.0-rc',
'ostrio:files@2.2.0 || 3.0.0-beta.6'
], 'client');
api.addFiles([
'lib/client/autoform.js',
'lib/client/fileUpload.html',
'lib/client/fileUpload.js',
'lib/client/uploadImageDemo.html',
'lib/client/uploadFileDemo.html'
], 'client');
});