forked from ksachdeva/angular-swiper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
24 lines (20 loc) · 676 Bytes
/
package.js
File metadata and controls
24 lines (20 loc) · 676 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
var packageName = 'aaronroberson:angular-swiper';
var where = 'client';
var version = '0.3.4-alpha.3';
var summary = 'Angular directive for iDangero.us Swiper re-packaged for Meteor.';
var gitLink = 'https://github.com/aaronroberson/angular-swiper';
var documentationFile = 'README.md';
// Meta-data
Package.describe({
name: packageName,
version: version,
summary: summary,
git: gitLink,
documentation: documentationFile
});
Package.onUse(function(api) {
api.versionsFrom(['METEOR@0.9.0', 'METEOR@1.0']);
api.use('angular:angular@1.3.0', where);
api.use('swiper:swiper@3.0.5', where);
api.addFiles('dist/angular-swiper.js', where);
});