package.js 473 B

12345678910111213141516171819
  1. Package.describe({
  2. name: 'rendro:easy-pie-chart',
  3. version: '2.1.7',
  4. summary: 'Meteor package for jQuery easyPieChart plugin!',
  5. git: 'https://github.com/dotansimha/easy-pie-chart.git',
  6. documentation: null
  7. });
  8. Package.onUse(function (api) {
  9. api.versionsFrom('METEOR@0.9.0.1');
  10. api.use('jquery', 'client');
  11. api.add_files(['dist/jquery.easypiechart.js'], 'client');
  12. });
  13. Package.onTest(function (api) {
  14. api.use('tinytest');
  15. api.use('rendro:easy-pie-chart');
  16. });