forked from yogiben/meteor-autoform-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
29 lines (26 loc) · 776 Bytes
/
package.js
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: "yogiben:autoform-file",
summary: "File upload for AutoForm",
description: "File upload for AutoForm",
version: "0.4.2",
git: "https://github.com/yogiben/autoform-file.git"
});
Package.onUse(function(api) {
api.versionsFrom('[email protected]');
api.use([
'check',
'coffeescript',
'underscore',
'reactive-var',
'templating',
'[email protected] || 2.5.1',
'aldeed:[email protected]',
'fortawesome:[email protected]',
'cfs:[email protected]',
'mpowaga:[email protected]'
]);
api.addFiles('lib/client/autoform-file.html', 'client');
api.addFiles('lib/client/autoform-file.less', 'client');
api.addFiles('lib/client/autoform-file.coffee', 'client');
api.addFiles('lib/server/publish.coffee', 'server');
});