-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.js
31 lines (27 loc) · 913 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
Package.describe({
name: 'abdj:autoform-google-places-input',
version: '0.0.5',
summary: 'Quick geocomplete input field setup with an export to a customizable address SimpleSchema',
git: 'https://github.com/abdj/autoform-google-places-input',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.0.3.2');
api.use([
'templating',
'aldeed:[email protected] || 5.0.0',
'dburles:[email protected]'
], 'client');
api.imply('dburles:[email protected]');
api.addFiles([
'lib/geocomplete/jquery.geocomplete.js',
'lib/client/autoform-google-places-input.html',
'lib/client/autoform-google-places-input.css',
'lib/client/autoform-google-places-input.js'
], 'client');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('abdj:autoform-google-places-input');
api.addFiles('abdj:autoform-google-places-input-tests.js');
});