https://github.com/twbs/bootstrap
Raw File
Tip revision: d50ed9a2bde22067c0e5f21d1614e477e362165a authored by XhmikosR on 21 December 2018, 15:56:47 UTC
Update README.md
Tip revision: d50ed9a
package.js
// package metadata file for Meteor.js

/* eslint-env meteor */

Package.describe({
  name: 'twbs:bootstrap',  // https://atmospherejs.com/twbs/bootstrap
  summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',
  version: '4.2.0',
  git: 'https://github.com/twbs/bootstrap.git'
});

Package.onUse(function (api) {
  api.versionsFrom('METEOR@1.0');
  api.use('jquery', 'client');
  api.addFiles([
    'dist/css/bootstrap.css',
    'dist/js/bootstrap.js'
  ], 'client');
});
back to top