package.js 560 B

12345678910111213141516171819202122232425
  1. var version = '3.4.2';
  2. Package.describe({
  3. name: 'nolimits4web:swiper',
  4. summary: 'iDangero.us Swiper - mobile touch slider with hardware accelerated transitions and native behavior',
  5. version: version,
  6. git: 'https://github.com/nolimits4web/Swiper'
  7. });
  8. Package.onUse(function (api) {
  9. api.versionsFrom('1.1.0.2');
  10. api.addFiles([
  11. 'dist/css/swiper.min.css',
  12. 'dist/js/swiper.js'
  13. ], ['client']
  14. );
  15. // Since swiper is attached to window, we do not need to export Swiper
  16. // api.export('Swiper');
  17. });
  18. Package.onTest(function (api) {
  19. });