-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.js
28 lines (23 loc) · 785 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
Package.describe({
name: 'philip100:autoform-bs-country-field',
version: '0.0.11',
summary: 'Enables usage of country field in autoform',
git: 'https://github.com/Philip-Nunoo/autoform-bs-countries.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
both = ['client', 'server'];
api.use([
'standard-app-packages',
'coffeescript']
, both);
api.use(["spacebars", "ui"], "client");
api.use('twbs:[email protected]');
api.use('aldeed:[email protected] || 5.0.0');
api.addFiles('lib/client/autoform-bs-countries-field.html', 'client');
api.addFiles('lib/client/autoform-bs-countries-field.coffee', 'client');
});
Package.onTest(function(api) {
api.use('tinytest');
});