forked from revolunet/angular-carousel
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.js
More file actions
25 lines (21 loc) · 732 Bytes
/
package.js
File metadata and controls
25 lines (21 loc) · 732 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
var packageName = 'weboxstudio:angular-carousel';
var where = 'client';
var version = '0.3.13';
var summary = 'Angular Carousel - Mobile friendly touch carousel for AngularJS';
var gitLink = 'https://github.com/weboxstudio/angular-carousel.git';
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']); // Meteor versions
api.use('urigo:angular@0.9.3', where);
api.use('angular:angular-touch@1.4.2', where);
api.addFiles('dist/angular-carousel.js', where);
api.addFiles('dist/angular-carousel.css', where);
});