{"maintainers":[{"name":"seaneking","email":"sean@simpla.io"}],"keywords":["rucksack","postcss","css","framework","boilerplate"],"dist-tags":{"alpha":"0.1.0","latest":"0.9.1"},"author":{"name":"Sean King","email":"sean@simpla.io"},"description":"A little bag of CSS superpowers","readme":"<p align=\"center\">\n <img src=\"http://simplaio.github.io/rucksack/logo.png\" alt=\"rucksack logo\" height=\"325\" />\n</p>\n\n<p align=\"center\">\n  <a href=\"https://npmjs.org/package/rucksack-css\"><img src=\"https://badge.fury.io/js/rucksack-css.svg\" alt=\"NPM version\" /></a>\n  <a href=\"https://travis-ci.org/simplaio/rucksack\"><img src=\"https://travis-ci.org/simplaio/rucksack.svg?branch=master\" alt=\"Build satus\" /></a>\n  <a href=\"https://david-dm.org/simplaio/rucksack\"><img src=\"https://david-dm.org/simplaio/rucksack.svg?theme=shields.io\" alt=\"Dependency Status\" /></a>\n</p>\n\n<br/>\n\nA little bag of CSS superpowers, built on [PostCSS][postcss].\n\nRucksack makes CSS development less painful, with the features and shortcuts it should have come with out of the box.\n\nMade with &#9829; by the folks at [Simpla][simpla].\n\n**Read the full docs at http://simplaio.github.io/rucksack**\n\n--\n\n### Install\n\n```sh\n$ npm install --save rucksack-css\n```\n\n<br/>\n\n### Usage\n\n###### Gulp\nUse [gulp-rucksack][gulp-rucksack]\n\n```js\nvar gulp = require('gulp');\nvar rucksack = require('gulp-rucksack');\n\ngulp.task('rucksack', function() {\n  return gulp.src('src/style.css')\n    .pipe(rucksack())\n    .pipe(gulp.dest('style.css'));\n});\n```\n\n###### Grunt\nUse [grunt-rucksack][grunt-rucksack]\n\n```js\nrequire('load-grunt-tasks')(grunt);\n\ngrunt.initConfig({\n\trucksack: {\n\t\tcompile: {\n\t\t\tfiles: {\n\t\t\t\t'style.css': 'src/style.css'\n\t\t\t}\n\t\t}\n\t}\n});\n\ngrunt.registerTask('default', ['rucksack']);\n```\n\n###### Broccoli\nUse [broccoli-rucksack][broccoli-rucksack]\n\n```js\nvar rucksack = require('broccoli-rucksack');\ntree = rucksack(tree, [options]);\n```\n\n###### CLI\nProcess CSS directly on the command line\n\n```sh\n$ rucksack src/style.css style.css [options]\n```\n\n###### PostCSS\nRucksack is built on PostCSS, and can be used as a PostCSS plugin.\n\n```js\nvar postcss = require('postcss'),\n    rucksack = require('rucksack-css');\n\npostcss([ rucksack() ])\n  .process(css, { from: 'src/style.css', to: 'style.css' })\n  .then(function (result) {\n      fs.writeFileSync('style.css', result.css);\n      if ( result.map ) fs.writeFileSync('style.css.map', result.map);\n  });\n```\n See the [PostCSS Docs][postcss] for examples for your environment.\n\n###### Stylus\nRucksack can be used as a Stylus plugin with [PostStylus][poststylus]\n\n```js\nstylus(css).use(poststylus('rucksack-css'))\n```\n\nSee the [PostStylus Docs][poststylus] for more examples for your environment.\n\n--\n\n### Core Features\n\n_Automagical responsive typography_\n```css\n.foo {\n  font-size: responsive;\n}\n```\n![Responsive Type Demo][type-demo]\n\n\n_Shorthand syntax for positioning properties_\n```css\n.foo {\n  position: absolute 0 20px;\n}\n```\n\n_Native clearfix_\n```css\n.foo {\n  clear: fix;\n}\n```\n\n_Input pseudo-elements_\n```css\ninput[type=\"range\"]::track {\n  height: 2px;\n}\n```\n\n_Hex shortcuts for RGBA_\n```css\n.foo {\n  color: rgba(#fff, 0.8);\n}\n```\n\n_Shorthand `@font-face` src sets (becomes [FontSpring syntax][fontspring])_\n```css\n@font-face {\n  font-family: 'My Font';\n  font-path: '/path/to/font/file';\n}\n```\n\n_Whole library of modern easing functions_\n```css\n.foo {\n  transition: all 250ms ease-out-cubic;\n}\n```\n\n_Powerful quantity pseudo-selectors_\n```css\nli:at-least(4) {\n  color: blue;\n}\n\nli:between(4,6) {\n  color: red;\n}\n```\n\n_CSS property aliases_\n```css\n@alias {\n  fs: font-size;\n  bg: background;\n}\n\n.foo {\n  fs: 16px;\n  bg: #fff;\n}\n```\n\n--\n\n### Optional Extras\n\n###### Autoprefixing\nAutomatically apply vendor prefixes to relevant properties based on data from [CanIUse][caniuse] - via [autoprefixer][autoprefixer].\n\n\n###### Legacy Fallbacks\nAutomatically insert legacy fallbacks for modern properties - via [laggard][laggard].\n```css\n/* before */\n.foo {\n  color: rgba(0,0,0,0.8);\n  width: 50vmin;\n}\n\n.foo::before{\n  opacity: 0.8;\n}\n\n/* after */\n.foo {\n  color: rgb(0,0,0);\n  color: rgba(0,0,0,0.8);\n  width: 50vm;\n  width: 50vmin;\n}\n\n.foo:before{\n  opacity: 0.8;\n  -ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)\";\n}\n```\n\n--\n\n**Read the full docs at http://simplaio.github.io/rucksack**\n\n--\n\n### Options\nAll features in Rucksack can be toggled on or off by passing options on initialization. By default all core features are set to `true`, and optional\naddons are set to `false`.\n\nCore features (default to `true`):\n- `responsiveType`\n- `shorthandPosition`\n- `quantityQueries`\n- `alias`\n- `inputPseudo`\n- `clearFix`\n- `fontPath`\n- `hexRGBA`\n- `easings`\n\nAddons (default to `false`):\n- `fallbacks`\n- `autoprefixer`\n\n###### Error reporting\nEnable reporting, which outputs helpful error and warning messages from the plugins used inside Rucksack to your console, with the `reporter` option. Defaults to `false`.\n\n```js\n// Set in build tool, etc.\n.rucksack({\n  // options\n})\n```\n--\n\n### License\n\nMIT © [Simpla][simpla]\n\n[simpla]: http://simpla.io\n[postcss]: https://github.com/postcss/postcss\n[gulp-rucksack]: https://github.com/simplaio/gulp-rucksack\n[grunt-rucksack]: https://github.com/simplaio/grunt-rucksack\n[broccoli-rucksack]: https://github.com/simplaio/broccoli-rucksack\n[poststylus]: https://github.com/seaneking/poststylus\n[type-demo]: http://simplaio.github.io/rucksack/img/type-demo.gif\n[fontspring]: http://blog.fontspring.com/2011/02/further-hardening-of-the-bulletproof-syntax/\n[caniuse]: http://caniuse.com\n[autoprefixer]: https://github.com/postcss/autoprefixer\n[laggard]: https://github.com/seaneking/laggard\n","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"users":{"prisme":true,"fdeneux":true,"taivare":true,"danielbayley":true,"jyyoi":true},"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"license":"MIT","versions":{"0.1.0":{"name":"rucksack-css","version":"0.1.0","description":"Lightweight bag of modern, ui-agnostic stylus tools to supercharge your workflow","main":"index.js","repository":{"type":"git","url":"https://github.com/simplaio/rucksack.git"},"keywords":["css","framework"],"author":{"name":"Simpla"},"maintainers":[{"name":"Sean King","email":"sean@simpla.io","url":"http://simpla.io"}],"license":"MIT","bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer-stylus":"^0.7.0","colors.css":"^2.3.0","if-ie.styl":"^0.6.0","normalize-styl":"^3.0.3"},"gitHead":"25c76293209e8fed3743b34e9d23ae3d314a41ec","_id":"rucksack-css@0.1.0","scripts":{},"_shasum":"577d1d14fae225415c7f5c6322dbcc3f5cf2a057","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"simplaio","email":"admin@simpla.io"},"dist":{"shasum":"577d1d14fae225415c7f5c6322dbcc3f5cf2a057","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.1.0.tgz"},"deprecated":"Rucksack has moved to PostCSS! This version is no longer maintained. Update and use PostStylus (https://github.com/seaneking/poststylus) to continue using Rucksack as a Stylus plugin","directories":{}},"0.1.1":{"name":"rucksack-css","version":"0.1.1","description":"Lightweight bag of modern, ui-agnostic stylus tools to supercharge your workflow","main":"index.js","repository":{"type":"git","url":"https://github.com/simplaio/rucksack.git"},"keywords":["css","framework"],"author":{"name":"Simpla"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"license":"MIT","bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer-stylus":"^0.7.0","colors.css":"^2.3.0","if-ie.styl":"^0.6.0","normalize-styl":"^3.0.3"},"gitHead":"11f710db20daa6f3e3c3238140980d00c746b9e3","_id":"rucksack-css@0.1.1","scripts":{},"_shasum":"cd905bf9dbbfbf0043ce9462c11550a3b4dfd417","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"cd905bf9dbbfbf0043ce9462c11550a3b4dfd417","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.1.1.tgz"},"deprecated":"Rucksack has moved to PostCSS! This version is no longer maintained. Update and use PostStylus (https://github.com/seaneking/poststylus) to continue using Rucksack as a Stylus plugin","directories":{}},"0.1.2":{"name":"rucksack-css","version":"0.1.2","description":"Lightweight bag of modern, ui-agnostic stylus tools to supercharge your workflow","main":"index.js","repository":{"type":"git","url":"https://github.com/simplaio/rucksack.git"},"keywords":["css","framework"],"author":{"name":"Simpla"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"license":"MIT","bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer-stylus":"^0.7.0","colors.css":"^2.3.0","if-ie.styl":"^0.6.0","normalize-styl":"^3.0.3"},"gitHead":"e09d4083ea84f740a663e0c3aa96ffaed8285bdd","_id":"rucksack-css@0.1.2","scripts":{},"_shasum":"49bfa0a229cd96e54f63e183c77b8f9f018cf653","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"49bfa0a229cd96e54f63e183c77b8f9f018cf653","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.1.2.tgz"},"deprecated":"Rucksack has moved to PostCSS! This version is no longer maintained. Update and use PostStylus (https://github.com/seaneking/poststylus) to continue using Rucksack as a Stylus plugin","directories":{}},"0.2.0":{"name":"rucksack-css","version":"0.2.0","description":"A little bag of CSS superpowers","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"^0.1.0","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-modular-scale":"^2.4.0","postcss-normalize":"^0.1.0","postcss-opacity":"^2.0.0","postcss-position":"^0.2.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-vmin":"^1.0.0"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"c30d64af4922c11f7e0946a1cde84e446daef761","_id":"rucksack-css@0.2.0","_shasum":"bc3e2f2cb9fe4ca2e0da6941b29809234ae8e0bf","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.0","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"bc3e2f2cb9fe4ca2e0da6941b29809234ae8e0bf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.2.0.tgz"},"directories":{}},"0.3.1":{"name":"rucksack-css","version":"0.3.1","description":"A little bag of CSS superpowers","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"^0.1.0","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-modular-scale":"^2.4.0","postcss-normalize":"^0.1.0","postcss-opacity":"^2.0.0","postcss-position":"^0.2.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-vmin":"^1.0.0"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"8224ea179f24b7434329473f399ef835fc78beba","_id":"rucksack-css@0.3.1","_shasum":"636d3cbf3c1cc87a150ec72f55d2195b24d4acf4","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.0","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"636d3cbf3c1cc87a150ec72f55d2195b24d4acf4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.3.1.tgz"},"directories":{}},"0.4.0":{"name":"rucksack-css","version":"0.4.0","description":"A little bag of CSS superpowers","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"^0.1.0","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-modular-scale":"^2.4.0","postcss-normalize":"^0.1.0","postcss-opacity":"^2.0.0","postcss-position":"^0.2.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-responsive-type":"^0.1.0","postcss-vmin":"^1.0.0"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"5340bddff73cdd07195aa056c89e56fd3578482e","_id":"rucksack-css@0.4.0","_shasum":"ac55cb3ba850221e4eefad6fd724b90b1d93a4ef","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"ac55cb3ba850221e4eefad6fd724b90b1d93a4ef","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.4.0.tgz"},"directories":{}},"0.4.1":{"name":"rucksack-css","version":"0.4.1","description":"A little bag of CSS superpowers","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"^0.1.0","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-modular-scale":"^2.4.0","postcss-normalize":"^0.1.0","postcss-opacity":"^2.0.0","postcss-position":"^0.2.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-responsive-type":"^0.1.0","postcss-vmin":"^1.0.0"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"ca7cf35e79b95177c944346360f284f1f3155cd2","_id":"rucksack-css@0.4.1","_shasum":"10ba2df4560358e9a729e3ad4f525103ebd3073f","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"10ba2df4560358e9a729e3ad4f525103ebd3073f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.4.1.tgz"},"directories":{}},"0.4.3":{"name":"rucksack-css","version":"0.4.3","description":"A little bag of CSS superpowers","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"^0.1.0","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-opacity":"^2.0.0","postcss-position":"^0.2.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-responsive-type":"^0.1.0","postcss-vmin":"^1.0.0"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"91c67d30282ebf6803213fcd43070a933a225002","_id":"rucksack-css@0.4.3","_shasum":"a69c80fadde3768f53046d4e5c016e8674878985","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"a69c80fadde3768f53046d4e5c016e8674878985","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.4.3.tgz"},"directories":{}},"0.5.0":{"name":"rucksack-css","version":"0.5.0","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"cli":"./bin/cli"},"engines":{"node":">= 0.10.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","minimist":"^1.1.2","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"^0.1.0","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-opacity":"^2.0.0","postcss-position":"^0.2.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-responsive-type":"^0.1.0","postcss-vmin":"^1.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"89d6be8aa5f4ee2108295eb855ceed8116498e1d","_id":"rucksack-css@0.5.0","_shasum":"ee457624adb9a8e837bbaf23d01e58982e9efaac","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"ee457624adb9a8e837bbaf23d01e58982e9efaac","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.5.0.tgz"},"directories":{}},"0.5.1":{"name":"rucksack-css","version":"0.5.1","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"cli":"./bin/cli"},"engines":{"node":">= 0.10.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","minimist":"^1.1.2","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"^0.1.0","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-opacity":"^2.0.0","postcss-position":"^0.2.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-responsive-type":"^0.1.0","postcss-vmin":"^1.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"a47d481def189cc833dec1a62206297811549745","_id":"rucksack-css@0.5.1","_shasum":"9f368db68e7185a839720e99e154ce4b49172638","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"9f368db68e7185a839720e99e154ce4b49172638","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.5.1.tgz"},"directories":{}},"0.5.2":{"name":"rucksack-css","version":"0.5.2","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"cli":"./bin/cmd"},"engines":{"node":">= 0.10.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","minimist":"^1.1.2","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"^0.1.0","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-opacity":"^2.0.0","postcss-position":"^0.2.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-responsive-type":"^0.1.0","postcss-vmin":"^1.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"ac27830b694b573d143718e0a9c2b8d7567b57c0","_id":"rucksack-css@0.5.2","_shasum":"a9d76b7b97701e7cbb0997d517803c753175c5ed","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"a9d76b7b97701e7cbb0997d517803c753175c5ed","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.5.2.tgz"},"directories":{}},"0.5.3":{"name":"rucksack-css","version":"0.5.3","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.10.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","minimist":"^1.1.2","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"^0.1.0","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-opacity":"^2.0.0","postcss-position":"^0.2.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-responsive-type":"^0.1.0","postcss-vmin":"^1.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"7c18b8126735c11b0c2212f4b3811f991d134c9e","_id":"rucksack-css@0.5.3","_shasum":"f847b61b905e16108b68f7db4d7e3350e526ac6b","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"f847b61b905e16108b68f7db4d7e3350e526ac6b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.5.3.tgz"},"directories":{}},"0.6.1":{"name":"rucksack-css","version":"0.6.1","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.10.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","minimist":"^1.1.2","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"^0.1.0","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-input-style":"^0.1.0","postcss-opacity":"^2.0.0","postcss-position":"^0.2.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-reporter":"^0.4.0","postcss-responsive-type":"^0.1.0","postcss-vmin":"^1.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"9c095ce860e5bbff29ba29cdb10a28eaa7f12e16","_id":"rucksack-css@0.6.1","_shasum":"6c8d1c6acda2bd24e9a1ef4adad522e05d947f2d","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"6c8d1c6acda2bd24e9a1ef4adad522e05d947f2d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.6.1.tgz"},"directories":{}},"0.6.2":{"name":"rucksack-css","version":"0.6.2","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.10.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","minimist":"^1.1.2","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"^0.1.0","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-input-style":"^0.2.0","postcss-opacity":"^2.0.0","postcss-position":"^0.2.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-reporter":"^0.4.0","postcss-responsive-type":"^0.1.0","postcss-vmin":"^1.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"e3f99d6862598cc740fcd701643e25db662e7704","_id":"rucksack-css@0.6.2","_shasum":"1179a3a68bc33f7fb3096145e406839ab5304e55","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"1179a3a68bc33f7fb3096145e406839ab5304e55","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.6.2.tgz"},"directories":{}},"0.6.3":{"name":"rucksack-css","version":"0.6.3","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.10.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","minimist":"^1.1.2","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"^0.1.0","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-input-style":"^0.2.0","postcss-opacity":"^2.0.0","postcss-position":"^0.3.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-reporter":"^0.4.0","postcss-responsive-type":"^0.1.0","postcss-vmin":"^1.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"1c38741b472422c7eae8796089823f0a4daccb42","_id":"rucksack-css@0.6.3","_shasum":"92c3712156aeb32bea5a14cfce3b41f9aa5ffc46","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"92c3712156aeb32bea5a14cfce3b41f9aa5ffc46","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.6.3.tgz"},"directories":{}},"0.6.4":{"name":"rucksack-css","version":"0.6.4","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.10.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","minimist":"^1.1.2","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"^0.1.0","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-input-style":"^0.2.4","postcss-opacity":"^2.0.0","postcss-position":"^0.3.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-reporter":"^0.4.0","postcss-responsive-type":"^0.1.0","postcss-vmin":"^1.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"0ed388e5439d90deb5d2cfeb4e2bf8bc152f0040","_id":"rucksack-css@0.6.4","_shasum":"b10b3bfa5707ad9f25b252cb8ed4633648fada04","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"b10b3bfa5707ad9f25b252cb8ed4633648fada04","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.6.4.tgz"},"directories":{}},"0.6.5":{"name":"rucksack-css","version":"0.6.5","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.10.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","minimist":"^1.1.2","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"0.1.4","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-input-style":"^0.2.4","postcss-opacity":"^2.0.0","postcss-position":"^0.3.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-reporter":"^0.4.0","postcss-responsive-type":"^0.1.0","postcss-vmin":"^1.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"6740d683ca9b15f9a00dafbc99ce0d15b0f52015","_id":"rucksack-css@0.6.5","_shasum":"83274c6172650f3290b3b19086b9e63c2a120116","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"83274c6172650f3290b3b19086b9e63c2a120116","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.6.5.tgz"},"directories":{}},"0.6.6":{"name":"rucksack-css","version":"0.6.6","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.10.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","minimist":"^1.1.2","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"0.1.4","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-input-style":"^0.2.4","postcss-opacity":"^2.0.0","postcss-position":"^0.3.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-reporter":"^0.4.0","postcss-responsive-type":"^0.2.0","postcss-vmin":"^1.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"913c9abba30dc21c8c06703a512c6b416a0ab84f","_id":"rucksack-css@0.6.6","_shasum":"0334d07fbbc889bc38edfd26a13f18506b454e11","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"0334d07fbbc889bc38edfd26a13f18506b454e11","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.6.6.tgz"},"directories":{}},"0.6.7":{"name":"rucksack-css","version":"0.6.7","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.10.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","minimist":"^1.1.2","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"0.1.4","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-input-style":"^0.2.4","postcss-opacity":"^2.0.0","postcss-position":"^0.3.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-reporter":"^0.4.0","postcss-responsive-type":"^0.2.0","postcss-vmin":"^1.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"229144bbd875c709bdca91352c216dbbed6ce4ed","_id":"rucksack-css@0.6.7","_shasum":"49e8ce09758ffd04089591edba27c5fa6756de95","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"49e8ce09758ffd04089591edba27c5fa6756de95","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.6.7.tgz"},"directories":{}},"0.6.8":{"name":"rucksack-css","version":"0.6.8","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.10.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","minimist":"^1.1.2","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"0.1.4","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-input-style":"^0.2.4","postcss-opacity":"^2.0.0","postcss-position":"^0.3.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-reporter":"^0.4.0","postcss-responsive-type":"^0.2.0","postcss-vmin":"^1.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"883b2887e101cf43ecef1e805975c43fa7558b3a","_id":"rucksack-css@0.6.8","_shasum":"1aa1664b1dffd62cf16f977e1e8909cf24751043","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"1aa1664b1dffd62cf16f977e1e8909cf24751043","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.6.8.tgz"},"directories":{}},"0.7.0":{"name":"rucksack-css","version":"0.7.0","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.10.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^5.2.0","minimist":"^1.1.2","postcss":"^4.1.9","postcss-alias":"^0.1.0","postcss-clearfix":"0.1.4","postcss-color-palette":"0.0.3","postcss-color-rgba-fallback":"^1.3.0","postcss-easings":"^0.2.0","postcss-epub":"^2.3.0","postcss-fontpath":"^0.1.0","postcss-hexrgba":"^0.1.0","postcss-input-style":"^0.2.4","postcss-opacity":"^2.0.0","postcss-position":"^0.3.0","postcss-pseudoelements":"^2.2.0","postcss-quantity-queries":"^0.3.1","postcss-reporter":"^0.4.0","postcss-responsive-type":"^0.2.0","postcss-vmin":"^1.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"e7f602f00c0da044624c19dd2a67647debfda395","_id":"rucksack-css@0.7.0","_shasum":"6a139d6b489ab62f257064000107782b824bbb96","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"6a139d6b489ab62f257064000107782b824bbb96","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.7.0.tgz"},"directories":{}},"0.8.0":{"name":"rucksack-css","version":"0.8.0","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.10.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^6.0.0","minimist":"^1.1.2","postcss":"^5.0.0","postcss-alias":"^0.2.2","postcss-clearfix":"0.2.0","postcss-color-rgba-fallback":"^2.0.0","postcss-easings":"^0.3.0","postcss-fontpath":"^0.2.0","postcss-hexrgba":"^0.2.0","postcss-input-style":"^0.3.0","postcss-opacity":"git://github.com/seaneking/postcss-opacity.git","postcss-position":"^0.4.0","postcss-pseudoelements":"^3.0.0","postcss-quantity-queries":"^0.4.0","postcss-reporter":"^1.0.0","postcss-responsive-type":"^0.3.0","postcss-vmin":"git://github.com/seaneking/postcss-vmin.git","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"76b6a7b2c0f7b0b1b22ce9c46154aca8f2b9afe3","_id":"rucksack-css@0.8.0","_shasum":"dd61e0484df71ddb912b5500fe68e3d0bb99a626","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"dd61e0484df71ddb912b5500fe68e3d0bb99a626","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.8.0.tgz"},"directories":{}},"0.8.1":{"name":"rucksack-css","version":"0.8.1","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.12.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^6.0.0","minimist":"^1.1.2","postcss":"^5.0.0","postcss-alias":"^0.2.2","postcss-clearfix":"0.2.0","postcss-color-rgba-fallback":"^2.0.0","postcss-easings":"^0.3.0","postcss-fontpath":"^0.2.0","postcss-hexrgba":"^0.2.0","postcss-input-style":"^0.3.0","postcss-opacity":"3.0.0","postcss-position":"^0.4.0","postcss-pseudoelements":"^3.0.0","postcss-quantity-queries":"^0.4.0","postcss-reporter":"^1.0.0","postcss-responsive-type":"^0.3.0","postcss-vmin":"2.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"76f195e905803584eba296b41b4df9706ce9aa1d","_id":"rucksack-css@0.8.1","_shasum":"d44a54c92ad6a89e5fe559fc34bf490f8bc887f1","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"d44a54c92ad6a89e5fe559fc34bf490f8bc887f1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.8.1.tgz"},"directories":{}},"0.8.2":{"name":"rucksack-css","version":"0.8.2","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"simplaio","email":"admin@simpla.io"},{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.12.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^6.0.0","minimist":"^1.1.2","postcss":"^5.0.0","postcss-alias":"^0.2.2","postcss-clearfix":"0.2.0","postcss-color-rgba-fallback":"^2.0.0","postcss-easings":"^0.3.0","postcss-fontpath":"^0.2.0","postcss-hexrgba":"^0.2.0","postcss-input-style":"^0.3.0","postcss-opacity":"3.0.0","postcss-position":"^0.4.0","postcss-pseudoelements":"^3.0.0","postcss-quantity-queries":"^0.4.0","postcss-reporter":"^1.0.0","postcss-responsive-type":"^0.3.0","postcss-vmin":"2.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"752fd2ed83fc1c3d997a2bb041b3ef56269ffb13","_id":"rucksack-css@0.8.2","_shasum":"af9da334b40f2eb248793a03da6455517edef505","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"af9da334b40f2eb248793a03da6455517edef505","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.8.2.tgz"},"directories":{}},"0.8.3":{"name":"rucksack-css","version":"0.8.3","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.12.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^6.0.0","minimist":"^1.1.2","postcss":"^5.0.0","postcss-alias":"^0.2.2","postcss-clearfix":"0.2.0","postcss-color-rgba-fallback":"^2.0.0","postcss-easings":"^0.3.0","postcss-fontpath":"^0.2.0","postcss-hexrgba":"^0.2.0","postcss-input-style":"^0.3.0","postcss-opacity":"3.0.0","postcss-position":"^0.4.0","postcss-pseudoelements":"^3.0.0","postcss-quantity-queries":"^0.4.0","postcss-reporter":"^1.0.0","postcss-responsive-type":"^0.3.0","postcss-vmin":"2.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"21b93ba9e7a31a866bb4ba72a674777dad805f7d","_id":"rucksack-css@0.8.3","_shasum":"fce86a0685a62de948def154ad391a21ffc9bafb","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"fce86a0685a62de948def154ad391a21ffc9bafb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.8.3.tgz"},"directories":{}},"0.8.4":{"name":"rucksack-css","version":"0.8.4","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.12.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^6.0.0","minimist":"^1.1.2","postcss":"^5.0.0","postcss-alias":"^0.2.2","postcss-clearfix":"0.2.0","postcss-color-rgba-fallback":"^2.0.0","postcss-easings":"^0.3.0","postcss-fontpath":"^0.2.0","postcss-hexrgba":"^0.2.0","postcss-input-style":"^0.3.0","postcss-opacity":"3.0.0","postcss-position":"^0.4.0","postcss-pseudoelements":"^3.0.0","postcss-quantity-queries":"^0.4.0","postcss-reporter":"^1.0.0","postcss-responsive-type":"^0.3.1","postcss-vmin":"2.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"86ea52818f7d6d9ad88ce557ea26b861aa2f7651","_id":"rucksack-css@0.8.4","_shasum":"956482402bd193e083deec698340965b48c2a0af","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"956482402bd193e083deec698340965b48c2a0af","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.8.4.tgz"},"directories":{}},"0.8.5":{"name":"rucksack-css","version":"0.8.5","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.12.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^6.0.0","laggard":"^0.1.0","minimist":"^1.1.2","postcss":"^5.0.0","postcss-alias":"^0.2.2","postcss-clearfix":"0.2.0","postcss-color-rgba-fallback":"^2.0.0","postcss-easings":"^0.3.0","postcss-fontpath":"^0.2.0","postcss-hexrgba":"^0.2.0","postcss-input-style":"^0.3.0","postcss-opacity":"3.0.0","postcss-position":"^0.4.0","postcss-pseudoelements":"^3.0.0","postcss-quantity-queries":"^0.4.0","postcss-reporter":"^1.0.0","postcss-responsive-type":"^0.3.1","postcss-vmin":"2.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"0.0.2"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11"},"scripts":{"test":"gulp check"},"gitHead":"1af5100aa155840dc436a8c1cb07a23a5001f949","_id":"rucksack-css@0.8.5","_shasum":"9586561496d2d9ec37db3883ef95db500ce6080c","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"9586561496d2d9ec37db3883ef95db500ce6080c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.8.5.tgz"},"directories":{}},"0.8.6":{"name":"rucksack-css","version":"0.8.6","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.12.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^6.0.0","laggard":"^0.1.0","minimist":"^1.1.2","postcss":"^5.0.0","postcss-alias":"^0.2.2","postcss-clearfix":"^1.0.0","postcss-color-rgba-fallback":"^2.0.0","postcss-easings":"^0.3.0","postcss-fontpath":"^0.2.0","postcss-hexrgba":"^0.2.0","postcss-input-style":"^0.3.0","postcss-opacity":"^3.0.0","postcss-position":"^0.4.0","postcss-pseudoelements":"^3.0.0","postcss-quantity-queries":"^0.4.0","postcss-reporter":"^1.0.0","postcss-responsive-type":"^0.3.1","postcss-vmin":"^2.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"^0.0.2"},"devDependencies":{"chai":"^2.3.0","eslint":"^2.8.0","mocha":"^2.4.5"},"scripts":{"test":"mocha test --reporter nyan","posttest":"eslint ."},"gitHead":"82f85ec3ffa8e5daf212cebf2c5e64d36da362bc","_id":"rucksack-css@0.8.6","_shasum":"f7250ea5646f9b7ecbde117819db68788fbc6e78","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"f7250ea5646f9b7ecbde117819db68788fbc6e78","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.8.6.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rucksack-css-0.8.6.tgz_1460861630620_0.28379555349238217"},"directories":{}},"0.9.0":{"name":"rucksack-css","version":"0.9.0","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.12.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^6.0.0","laggard":"^0.1.0","minimist":"^1.1.2","postcss":"^5.0.0","postcss-alias":"^1.0.0","postcss-clearfix":"^1.0.0","postcss-color-rgba-fallback":"^2.0.0","postcss-easings":"^0.3.0","postcss-fontpath":"^0.2.0","postcss-hexrgba":"^0.2.0","postcss-input-style":"^0.3.0","postcss-opacity":"^3.0.0","postcss-position":"^0.4.0","postcss-pseudoelements":"^3.0.0","postcss-quantity-queries":"^0.4.0","postcss-reporter":"^1.0.0","postcss-responsive-type":"^0.5.0","postcss-vmin":"^2.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"^0.0.2"},"devDependencies":{"chai":"^2.3.0","eslint":"^2.8.0","mocha":"^2.4.5"},"scripts":{"test":"mocha test --reporter nyan","posttest":"eslint ."},"gitHead":"51ddfda3cefe8cce747c8bde9a7839dfe96f878e","_id":"rucksack-css@0.9.0","_shasum":"28d12d6575fbddf0ac04de03e91f66fed15f4132","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"28d12d6575fbddf0ac04de03e91f66fed15f4132","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.9.0.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rucksack-css-0.9.0.tgz_1480072675150_0.8490887847729027"},"directories":{}},"0.9.1":{"name":"rucksack-css","version":"0.9.1","description":"A little bag of CSS superpowers","main":"index.js","keywords":["rucksack","postcss","css","framework","boilerplate"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/simplaio/rucksack.git"},"author":{"name":"Sean King","email":"sean@simpla.io"},"maintainers":[{"name":"seaneking","email":"sean@simpla.io"}],"bugs":{"url":"https://github.com/simplaio/rucksack/issues"},"bin":{"rucksack":"./bin/cmd.js"},"engines":{"node":">= 0.12.0"},"homepage":"https://github.com/simplaio/rucksack","dependencies":{"autoprefixer":"^6.0.0","laggard":"^0.1.0","minimist":"^1.1.2","postcss":"^5.0.0","postcss-alias":"^1.0.0","postcss-clearfix":"^1.0.0","postcss-color-rgba-fallback":"^2.0.0","postcss-easings":"^0.3.0","postcss-fontpath":"^0.3.0","postcss-hexrgba":"^0.2.0","postcss-input-style":"^0.3.0","postcss-opacity":"^4.0.0","postcss-position":"^0.5.0","postcss-pseudoelements":"^3.0.0","postcss-quantity-queries":"^0.4.0","postcss-reporter":"^2.0.0","postcss-responsive-type":"^0.5.0","postcss-vmin":"^2.0.0","read-file-stdin":"^0.2.0","write-file-stdout":"^0.0.2"},"devDependencies":{"chai":"^2.3.0","eslint":"^2.8.0","mocha":"^2.4.5"},"scripts":{"test":"mocha test --reporter nyan","posttest":"eslint ."},"gitHead":"4aa42c0381fd862ff2d0c608837a397dc42c8cce","_id":"rucksack-css@0.9.1","_shasum":"da7eba4c67bd05b00cbf4c834305c5fe55375de1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"seaneking","email":"sean@simpla.io"},"dist":{"shasum":"da7eba4c67bd05b00cbf4c834305c5fe55375de1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rucksack-css/-/rucksack-css-0.9.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rucksack-css-0.9.1.tgz_1480072931740_0.4735645840410143"},"directories":{}}},"name":"rucksack-css","time":{"modified":"2017-02-18T13:36:13.077Z","created":"2015-06-14T12:53:22.727Z","0.1.0":"2015-06-14T12:53:22.727Z","0.1.1":"2015-06-16T06:57:46.989Z","0.1.2":"2015-06-16T07:07:30.252Z","0.2.0":"2015-07-06T15:35:57.293Z","0.3.1":"2015-07-10T07:24:20.899Z","0.4.0":"2015-07-26T05:25:51.278Z","0.4.1":"2015-08-02T10:46:13.789Z","0.4.3":"2015-08-02T12:10:17.759Z","0.5.0":"2015-08-02T13:32:36.423Z","0.5.1":"2015-08-02T13:37:22.277Z","0.5.2":"2015-08-08T09:35:54.062Z","0.5.3":"2015-08-08T09:41:13.889Z","0.6.1":"2015-08-15T07:37:29.157Z","0.6.2":"2015-08-15T09:48:18.879Z","0.6.3":"2015-08-15T10:15:08.396Z","0.6.4":"2015-08-18T14:31:36.105Z","0.6.5":"2015-08-20T22:40:59.033Z","0.6.6":"2015-08-21T11:39:23.101Z","0.6.7":"2015-08-25T06:22:32.214Z","0.6.8":"2015-09-06T07:28:44.566Z","0.7.0":"2015-09-06T08:00:08.640Z","0.8.0":"2015-09-13T10:02:13.498Z","0.8.1":"2015-09-14T11:03:13.568Z","0.8.2":"2015-09-14T11:14:11.473Z","0.8.3":"2015-10-17T00:17:25.193Z","0.8.4":"2015-10-17T00:32:01.846Z","0.8.5":"2015-10-17T00:44:18.108Z","0.8.6":"2016-04-17T02:53:53.520Z","0.9.0":"2016-11-25T11:17:57.617Z","0.9.1":"2016-11-25T11:22:11.985Z"},"readmeFilename":"README.md","homepage":"https://github.com/simplaio/rucksack"}