forked from djhi/meteor-autoform-modals-materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
32 lines (28 loc) · 902 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
Package.describe({
name: 'gildaspk:autoform-modals-materialize',
summary: "Create, update and delete collections with materialize modals",
version: "0.0.8",
git: "https://github.com/djhi/meteor-autoform-modals-materialize",
});
Package.on_use(function(api) {
api.versionsFrom('METEOR@1.2.0.2');
api.use([
'jquery',
'templating',
'less',
'session',
'coffeescript',
'ui',
'aldeed:autoform@5.3.0',
'gildaspk:autoform-materialize@0.0.20',
'raix:handlebar-helpers@0.2.4',
'mpowaga:string-template@0.1.0',
], 'client');
api.imply([
'aldeed:autoform@5.3.0',
'gildaspk:autoform-materialize@0.0.20',
]);
api.add_files('lib/client/modals.html', 'client');
api.add_files('lib/client/modals.coffee', 'client');
api.add_files('lib/client/modals.less', 'client');
});