-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.js
25 lines (23 loc) · 809 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
Package.describe({
name: 'richsilv:page-swiper',
summary: 'Page swiper plugin for Meteor',
version: '0.0.1',
git: 'https://github.com/richsilv/meteor-page-swiper.git'
});
Package.onUse(function(api) {
api.versionsFrom('1.0.2.1');
api.use(['[email protected]'], 'client');
api.imply(['[email protected]'], 'client');
api.addFiles('snabbt/snabbt.js', 'client');
api.addFiles('touchable.js/touchable.js', 'client');
api.addFiles('page-swiper.html', 'client');
api.addFiles('page-swiper.js', 'client');
api.addFiles('page-swiper.css', 'client');
api.export('PageSwiper');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('richsilv:page-swiper');
api.addFiles('page-swiper-tests.js');
});