Policy 1707 commit to LF
[policy/engine.git] / POLICY-SDK-APP / src / main / webapp / app / policyApp / CSS / bootstrap / package.js
1 // package metadata file for Meteor.js
2
3 Package.describe({
4   name: 'twbs:bootstrap',  // http://atmospherejs.com/twbs/bootstrap
5   summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',
6   version: '3.3.4',
7   git: 'https://github.com/twbs/bootstrap.git'
8 });
9
10 Package.onUse(function (api) {
11   api.versionsFrom('METEOR@1.0');
12   api.use('jquery', 'client');
13   api.addFiles([
14     'dist/fonts/glyphicons-halflings-regular.eot',
15     'dist/fonts/glyphicons-halflings-regular.svg',
16     'dist/fonts/glyphicons-halflings-regular.ttf',
17     'dist/fonts/glyphicons-halflings-regular.woff',
18     'dist/fonts/glyphicons-halflings-regular.woff2',
19     'dist/css/bootstrap.css',
20     'dist/js/bootstrap.js',
21   ], 'client');
22 });