diff --git a/meteor/README.md b/meteor/README.md
deleted file mode 100644
index 27ca1e4f..00000000
--- a/meteor/README.md
+++ /dev/null
@@ -1,69 +0,0 @@
-[![Build Status](https://travis-ci.org/MeteorPackaging/hammer.js.svg?branch=master)](https://travis-ci.org/MeteorPackaging/hammer.js)
-
-Packaging [FezVrasta's Bootstrap Material Design](https://github.com/FezVrasta/bootstrap-material-design)
-for [Meteor.js](http://meteor.com).
-
-
-# Versions
-
-All versions include the Material Design theme CSS, JS, and `ripple.js` for the ripple click effect.
-
-* [fezvrasta:bootstrap-material-design](https://atmospherejs.com/fezvrasta/bootstrap-material-design) - Includes Bootstrap's glyphicons along with some Material Design icons.
-* [fezvrasta:bootstrap-material-design-noglyph](https://atmospherejs.com/fezvrasta/bootstrap-material-design-noglyph) - No Bootstrap glyphicons, but includes the Material Design icons.
-* [fezvrasta:bootstrap-material-design-noicons](https://atmospherejs.com/fezvrasta/bootstrap-material-design-noicons) - No icons at all. Useful if you want to use another icon set instead, such as [Font Awesome](https://atmospherejs.com/fortawesome/fontawesome).
-
-
-# Usage
-
-Just run
-
-
-```sh
-meteor add fezvrasta:bootstrap-material-design
-```
-
-and your Bootstrap CSS will look like Google's Material Design (Polymer Paper Elements).
-
-
-# Dependencies
-
-* [twbs:bootstrap](https://atmospherejs.com/twbs/bootstrap) (the official community integration package for Bootstrap 3)
-* jquery
-
-
-# Meteor
-
-If you're new to Meteor, here's what the excitement is all about -
-[watch the first two minutes](https://www.youtube.com/watch?v=fsi0aJ9yr2o); you'll be hooked by 1:28.
-
-That screencast is from 2012. In the meantime, Meteor has become a mature JavaScript-everywhere web
-development framework. Read more at [Why Meteor](http://www.meteorpedia.com/read/Why_Meteor).
-
-
-# Issues
-
-If you encounter an issue while using this package, please CC @dandv when you file it in this repo.
-
-
-# DONE
-
-* Automatically initialize the JS on client startup: `$.material.init()`
-* Material Design Icons font loading test: EOT, SVG, TTF, WOFF
-* Bootstrap plugin loading tests
-* Visual check, including for the ripple effect
-
-
-# TODO
-
-* LESS version / fine-grained control? See [nemo64's package](https://github.com/Nemo64/meteor-bootstrap).
-
-
-# Testing
-
-To test the theme in a browser, run `cp meteor/package.js ./ && meteor test-packages ./`
-
-
-# Acknowledgements
-
-* [Yuri Dybskiy / html5cat](https://github.com/html5cat) for the first wrapper of this package
-* [Dan Dascalescu / dandv](https://github.com/dandv) for this direct integration
diff --git a/meteor/example/.meteor/.gitignore b/meteor/example/.meteor/.gitignore
deleted file mode 100644
index 40830374..00000000
--- a/meteor/example/.meteor/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-local
diff --git a/meteor/example/.meteor/packages b/meteor/example/.meteor/packages
deleted file mode 100644
index 6b6e741e..00000000
--- a/meteor/example/.meteor/packages
+++ /dev/null
@@ -1,7 +0,0 @@
-# Meteor packages used by this project, one per line.
-#
-# 'meteor add' and 'meteor remove' will edit this file for you,
-# but you can also edit it by hand.
-
-meteor-platform
-fezvrasta:bootstrap-material-design-noglyph
diff --git a/meteor/example/.meteor/release b/meteor/example/.meteor/release
deleted file mode 100644
index f1b62559..00000000
--- a/meteor/example/.meteor/release
+++ /dev/null
@@ -1 +0,0 @@
-METEOR@1.0.1
diff --git a/meteor/example/client/bmd.css b/meteor/example/client/bmd.css
deleted file mode 100644
index c79f2707..00000000
--- a/meteor/example/client/bmd.css
+++ /dev/null
@@ -1,3 +0,0 @@
-body {
- background: #8BC34A;
-}
diff --git a/meteor/example/client/bmd.html b/meteor/example/client/bmd.html
deleted file mode 100644
index eace9872..00000000
--- a/meteor/example/client/bmd.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
- /);
- test.ok({message: 'Test passed if the display looks OK *and* clicking dropdowns/popovers/tooltips works.'});
- }
-
- done();
- });
-
- });
-
-});
-
-
-Tinytest.addAsync('Visual check - Material Design', function (test, done) {
- var bootstrapDropZone = document.createElement('div');
- document.body.appendChild(bootstrapDropZone);
-
- HTTP.get('http://rawgit.com/FezVrasta/bootstrap-material-design/master/bootstrap-elements.html', function callback(error, result) {
- if (error) {
- test.fail('Error getting the FezVrasta test file. Do we have an Internet connection to rawgit.com?');
- } else {
- // [^] matches across newlines. Stay within the container div, or else the fragment will attempt to load resources on its own.
- bootstrapDropZone.innerHTML = result.content.match(/
/.
-// Only 'woff' for now, but 'woff2' may become available - https://github.com/FortAwesome/Font-Awesome/pull/5062#discussion_r20936453
-['eot', 'svg', 'ttf', 'woff'].forEach(function (font) {
- Tinytest.addAsync(font + ' fonts are shipped', function (test, done) {
-
- // curiously enough, the 'local-test:...' package isn't loaded into Package before calling Tinytest, so we can't do this determination outside this loop
- if (!packageName)
- Object.keys(Package).forEach(function(p) {
- if (p.search(/local-test/) > -1)
- packageName = p.replace('local-test:', ''); // we should stop the loop, but forEach can't do that
- })
-
- if (!packageName) {
- test.exception({message: 'Package not quite loaded... go figure'});
- return
- }
-
- var packagePath = packageName.replace(':', '_') // e.g. meteorpackaging_bootstrap-material-design
-
- HTTP.get(
- '/packages/' + packagePath + '/dist/fonts/Material-Design-Icons.' + font,
- {
- headers: {
- 'Cache-Control': 'no-cache' // because Meteor has cached fonts even after they were removed from package.js (!) - https://github.com/meteor/meteor/issues/3196
- }
- },
- function callback(error, result) {
- if (error) {
- test.fail({message: 'Font failed to load'});
- } else {
- // if the file is 404, Meteor will redirect to / and return the Meteor.js boilerplate
- test.isTrue(result.content.length > 100000, font + ' font could not be downloaded');
- }
-
- done();
- }
- );
- });
-})
-
-var plugins = ['affix', 'alert', 'button', 'carousel', 'collapse', 'dropdown', 'modal', 'popover', 'scrollspy', 'tab', 'tooltip'];
-
-// test plugins
-plugins.forEach(function (plugin) {
- Tinytest.add('Plugin - ' + plugin, function (test) {
- test.instanceOf($(document.body)[plugin], Function, 'instantiated correctly');
- });
-});
-
-// visual check
-plugins.forEach(function (plugin) {
-
- Tinytest.addAsync('Visual check - ' + plugin, function (test, done) {
- var bootstrapDropZone = document.createElement('div');
- document.body.appendChild(bootstrapDropZone);
-
-
- HTTP.get('http://rawgit.com/twbs/bootstrap/master/js/tests/visual/' + plugin + '.html', function callback(error, result) {
- if (error) {
- test.fail('Error getting the test file. Do we have an Internet connection to rawgit.com?');
- } else {
- // [^] matches across newlines. Stay within the container div, or else the fragment will attempt to load resources on its own.
- bootstrapDropZone.innerHTML = result.content.match(/
/);
- test.ok({message: 'Test passed if the display looks OK *and* clicking dropdowns/popovers/tooltips works.'});
- }
-
- done();
- });
-
- });
-
-});
-
-
-Tinytest.addAsync('Visual check - Material Design', function (test, done) {
- var bootstrapDropZone = document.createElement('div');
- document.body.appendChild(bootstrapDropZone);
-
- HTTP.get('http://rawgit.com/FezVrasta/bootstrap-material-design/master/bootstrap-elements.html', function callback(error, result) {
- if (error) {
- test.fail('Error getting the FezVrasta test file. Do we have an Internet connection to rawgit.com?');
- } else {
- // [^] matches across newlines. Stay within the container div, or else the fragment will attempt to load resources on its own.
- bootstrapDropZone.innerHTML = result.content.match(/