/var/www/vhosts/nabawater/vendor/bower-asset/bootstrap
NameSizeModeActions
dist/-0755rm
docs/-0755rm
fonts/-0755rm
grunt/-0755rm
js/-0755rm
less/-0755rm
nuget/-0755rm
.editorconfig2320644editdlrm
.gitattributes3630644editdlrm
.gitignore4400644editdlrm
.travis.yml6040644editdlrm
bower.json6430644editdlrm
CHANGELOG.md4340644editdlrm
CNAME170644editdlrm
composer.json7450644editdlrm
CONTRIBUTING.md140270644editdlrm
Gemfile2260644editdlrm
Gemfile.lock17180644editdlrm
Gruntfile.js118110644editdlrm
ISSUE_TEMPLATE.md11450644editdlrm
LICENSE10850644editdlrm
package-lock.json3099060644editdlrm
package.js9650644editdlrm
package.json27730644editdlrm
README.md82920644editdlrm
_config.yml16000644editdlrm
Edit: /var/www/vhosts/nabawater/vendor/bower-asset/bootstrap/package.js (965B)
// package metadata file for Meteor.js /* jshint strict:false */ /* global Package:true */ 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: '3.4.1', git: 'https://github.com/twbs/bootstrap.git' }); Package.onUse(function (api) { api.versionsFrom('METEOR@1.0'); api.use('jquery', 'client'); var assets = [ 'dist/fonts/glyphicons-halflings-regular.eot', 'dist/fonts/glyphicons-halflings-regular.svg', 'dist/fonts/glyphicons-halflings-regular.ttf', 'dist/fonts/glyphicons-halflings-regular.woff', 'dist/fonts/glyphicons-halflings-regular.woff2' ]; if (api.addAssets) { api.addAssets(assets, 'client'); } else { api.addFiles(assets, 'client', { isAsset: true }); } api.addFiles([ 'dist/css/bootstrap.css', 'dist/js/bootstrap.js' ], 'client'); });