forked from mpowaga/meteor-autoform-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
33 lines (27 loc) · 790 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
30
31
32
33
Package.describe({
name: 'zcrowe:meteor-autoform-autocomplete',
version: '0.0.2',
summary: 'Autocomplete inputs for aldeed:autoform using mizzao:autocomplete',
git: 'https://github.com/mpowaga/meteor-autoform-autocomplete.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.0.3.2');
api.use([
'underscore',
'templating',
'mrt:[email protected]',
'francocatena:[email protected]',
'aldeed:[email protected] || 5.1.2'
], 'client');
api.addFiles([
'autocomplete.html',
'autocomplete.js'
], 'client');
api.export('helpers', { testOnly: true });
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('zcrowe:meteor-autoform-autocomplete');
api.addFiles('tests/helpers.js', 'client');
});