forked from MiroHibler/meteor-mailchimp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
29 lines (22 loc) · 726 Bytes
/
package.js
File metadata and controls
29 lines (22 loc) · 726 Bytes
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 : 'miro:mailchimp',
version : '1.0.4',
summary : 'A Meteor wrapper for MailChimp API',
homepage: "http://mailchimp.meteor.com",
author : "Miroslav Hibler (http://miro.hibler.me)",
git : 'https://github.com/MiroHibler/meteor-mailchimp.git'
});
Package.onUse( function ( api, where ) {
api.versionsFrom('METEOR@0.9.2');
api.use( ['templating'], 'client' );
api.addFiles( 'lib/server/mailchimp.js', 'server' );
api.addFiles([
'lib/client/views/subscribe/subscribe.html',
'lib/client/views/subscribe/subscribe.js',
'lib/client/mailchimp.js'
], 'client' );
if ( api.export ) {
api.export( 'MailChimp', ['server', 'client'] );
}
});
Npm.depends({ 'mailchimp': '1.1.0' });