package.js 528 B

12345678910111213141516171819
  1. // package metadata file for Meteor.js
  2. /* eslint-env meteor */
  3. Package.describe({
  4. name: 'twbs:bootstrap', // https://atmospherejs.com/twbs/bootstrap
  5. summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',
  6. version: '4.1.1',
  7. git: 'https://github.com/twbs/bootstrap.git'
  8. });
  9. Package.onUse(function (api) {
  10. api.versionsFrom('METEOR@1.0');
  11. api.use('jquery', 'client');
  12. api.addFiles([
  13. 'dist/css/bootstrap.css',
  14. 'dist/js/bootstrap.js'
  15. ], 'client');
  16. });