{"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"keywords":["postcss","css","postcss-plugin","atrules","child","children","cssnext","nested","nestings","rules","selectors","specifications","specs","w3c"],"dist-tags":{"latest":"2.3.1"},"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"description":"Transpiles nested rules according to CSS Nesting Module Level 3","readme":"# CSS Nesting\n\n<a href=\"https://github.com/postcss/postcss\"><img src=\"http://postcss.github.io/postcss/logo.svg\" alt=\"PostCSS Logo\" width=\"80\" height=\"80\" align=\"right\"></a>\n\n[![NPM Version][npm-img]][npm] [![Build Status][ci-img]][ci]\n\n[CSS Nesting] allows you to nest one style rule inside another, following the [CSS Nesting Module Level 3] specification.\n\n```css\n/* direct nesting */\n\na, b {\n\tcolor: red;\n\n\t& c, & d {\n\t\tcolor: white;\n\t}\n\n\t& & {\n\t\tcolor: blue;\n\t}\n\n\t&:hover {\n\t\tcolor: black;\n\t}\n\n\t@media (min-width: 30em) {\n\t\tcolor: yellow;\n\n\t\t@media (min-device-pixel-ratio: 1.5) {\n\t\t\tcolor: green;\n\t\t}\n\t}\n}\n\n/* or at-rule nesting */\n\na, b {\n\tcolor: red;\n\n\t@nest & c, & d {\n\t\tcolor: white;\n\t}\n\n\t@nest & & {\n\t\tcolor: blue;\n\t}\n\n\t@nest &:hover {\n\t\tcolor: black;\n\t}\n\n\t@media (min-width: 30em) {\n\t\tcolor: yellow;\n\t}\n}\n\n/* after */\n\na, b {\n    color: red;\n}\n\na c, a d, b c, b d {\n    color: white;\n}\n\na a, b b {\n    color: blue;\n}\n\na:hover, b:hover {\n    color: black;\n}\n\n@media (min-width: 30em) {\n    a, b {\n        color: yellow;\n    }\n}\n\n@media (min-width: 30em) and (min-device-pixel-ratio: 1.5) {\n\tcolor: green;\n}\n```\n\n## Usage\n\nAdd [CSS Nesting] to your build tool:\n\n```bash\nnpm install postcss-nesting --save-dev\n```\n\n#### Node\n\n```js\nrequire('postcss-nesting').process(YOUR_CSS, { /* options */ });\n```\n\n#### PostCSS\n\nAdd [PostCSS] to your build tool:\n\n```bash\nnpm install postcss --save-dev\n```\n\nLoad [CSS Nesting] as a PostCSS plugin:\n\n```js\npostcss([\n\trequire('postcss-nesting')({ /* options */ })\n]).process(YOUR_CSS, /* options */);\n```\n\n#### Gulp\n\nAdd [Gulp PostCSS] to your build tool:\n\n```bash\nnpm install gulp-postcss --save-dev\n```\n\nEnable [CSS Nesting] within your Gulpfile:\n\n```js\nvar postcss = require('gulp-postcss');\n\ngulp.task('css', function () {\n\treturn gulp.src('./src/*.css').pipe(\n\t\tpostcss([\n\t\t\trequire('postcss-nesting')({ /* options */ })\n\t\t])\n\t).pipe(\n\t\tgulp.dest('.')\n\t);\n});\n```\n\n#### Grunt\n\nAdd [Grunt PostCSS] to your build tool:\n\n```bash\nnpm install grunt-postcss --save-dev\n```\n\nEnable [CSS Nesting] within your Gruntfile:\n\n```js\ngrunt.loadNpmTasks('grunt-postcss');\n\ngrunt.initConfig({\n\tpostcss: {\n\t\toptions: {\n\t\t\tuse: [\n\t\t\t\trequire('postcss-nesting')({ /* options */ })\n\t\t\t]\n\t\t},\n\t\tdist: {\n\t\t\tsrc: '*.css'\n\t\t}\n\t}\n});\n```\n\n## Options\n\n#### `bubble`\n\nType: `Array`  \nDefault: `['document', 'media', 'supports']`\n\nSpecifies additional at-rules whose contents should be transpiled so that the at-rule comes first. By default, `@media`, `@supports` and `@document` will do this.\n\n#### `prefix`\n\nType: `String`  \nDefault: `null`\n\nSpecifies a prefix to be surrounded by dashes before the `@nest` at-rule (e.g. `@-x-nest`).\n\n[ci]:      https://travis-ci.org/jonathantneal/postcss-nesting\n[ci-img]:  https://img.shields.io/travis/jonathantneal/postcss-nesting.svg\n[npm]:     https://www.npmjs.com/package/postcss-nesting\n[npm-img]: https://img.shields.io/npm/v/postcss-nesting.svg\n\n[Gulp PostCSS]:  https://github.com/postcss/gulp-postcss\n[Grunt PostCSS]: https://github.com/nDmitry/grunt-postcss\n[PostCSS]:       https://github.com/postcss/postcss\n\n[CSS Nesting Module Level 3]: http://tabatkins.github.io/specs/css-nesting/\n\n[CSS Nesting]: https://github.com/jonathantneal/postcss-nesting\n","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-nesting.git"},"users":{"asaupup":true},"bugs":{"url":"https://github.com/jonathantneal/postcss-nesting/issues"},"license":"CC0-1.0","versions":{"0.1.0":{"name":"postcss-nesting","version":"0.1.0","description":"PostCSS plugin ability to nest one style rule inside another","keywords":["postcss","css","postcss-plugin","nesting","selector","rule"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"MIT","repository":{"type":"git","url":"https://github.com/jonathantneal/postcss-nesting.git"},"dependencies":{"postcss":"^4.1.9","postcss-selector-parser":"^1.0.0"},"devDependencies":{"gulp-eslint":"^0.12.0","gulp-mocha":"^2.0.1","chai":"^2.3.0","gulp":"^3.8.11","gulp-watch":"^4.2.4"},"scripts":{"test":"gulp"},"gitHead":"d63f6b6b1efef37c11d86a84de23fe901f74123a","bugs":{"url":"https://github.com/jonathantneal/postcss-nesting/issues"},"homepage":"https://github.com/jonathantneal/postcss-nesting","_id":"postcss-nesting@0.1.0","_shasum":"df384bea09695350f15f71a2a2f7a99fdfb8cd98","_from":".","_npmVersion":"2.4.1","_nodeVersion":"0.10.32","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"df384bea09695350f15f71a2a2f7a99fdfb8cd98","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-nesting/-/postcss-nesting-0.1.0.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{}},"1.0.0":{"name":"postcss-nesting","version":"1.0.0","description":"Transpiles nested rules according to CSS Nesting Module Level 3","keywords":["postcss","css","postcss-plugin","nestings","selectors","rules"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-nesting.git"},"bugs":{"url":"https://github.com/jonathantneal/postcss-nesting/issues"},"homepage":"https://github.com/jonathantneal/postcss-nesting","dependencies":{"postcss":"^5.0.5"},"devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-mocha":"^2.1.3"},"scripts":{"test":"gulp"},"engines":{"iojs":">=2.0.0","node":">=0.12.0"},"gitHead":"60dd7b0fcc559df45764b305db40a9a99a232ae8","_id":"postcss-nesting@1.0.0","_shasum":"95235970d352dc47314572a39d7d1902b3d17bfb","_from":".","_npmVersion":"2.14.3","_nodeVersion":"0.12.5","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"95235970d352dc47314572a39d7d1902b3d17bfb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-nesting/-/postcss-nesting-1.0.0.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{}},"2.0.0":{"name":"postcss-nesting","version":"2.0.0","description":"Transpiles nested rules according to CSS Nesting Module Level 3","keywords":["postcss","css","postcss-plugin","nestings","selectors","rules"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-nesting.git"},"bugs":{"url":"https://github.com/jonathantneal/postcss-nesting/issues"},"homepage":"https://github.com/jonathantneal/postcss-nesting","dependencies":{"postcss":"^5.0.5"},"devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-mocha":"^2.1.3"},"scripts":{"test":"gulp"},"engines":{"iojs":">=2.0.0","node":">=0.12.0"},"gitHead":"4cd52b65701557878a5d7f294182b2f276b5b5c0","_id":"postcss-nesting@2.0.0","_shasum":"58eb619b2176dc60b8515c8af3effc28c956fe39","_from":".","_npmVersion":"2.14.3","_nodeVersion":"0.12.5","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"58eb619b2176dc60b8515c8af3effc28c956fe39","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-nesting/-/postcss-nesting-2.0.0.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{}},"2.0.1":{"name":"postcss-nesting","version":"2.0.1","description":"Transpiles nested rules according to CSS Nesting Module Level 3","keywords":["postcss","css","postcss-plugin","nestings","selectors","rules"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-nesting.git"},"bugs":{"url":"https://github.com/jonathantneal/postcss-nesting/issues"},"homepage":"https://github.com/jonathantneal/postcss-nesting","dependencies":{"postcss":"^5.0.5"},"devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-mocha":"^2.1.3"},"scripts":{"test":"gulp"},"engines":{"iojs":">=2.0.0","node":">=0.12.0"},"gitHead":"7e8e81a9f8f543a0ff49aba1e70d40009e17ddc3","_id":"postcss-nesting@2.0.1","_shasum":"b2e06f2ff46533f3f044dedbeb82781fbb863a5e","_from":".","_npmVersion":"2.14.3","_nodeVersion":"0.12.5","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"b2e06f2ff46533f3f044dedbeb82781fbb863a5e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-nesting/-/postcss-nesting-2.0.1.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{}},"2.0.2":{"name":"postcss-nesting","version":"2.0.2","description":"Transpiles nested rules according to CSS Nesting Module Level 3","keywords":["postcss","css","postcss-plugin","nestings","selectors","rules"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-nesting.git"},"bugs":{"url":"https://github.com/jonathantneal/postcss-nesting/issues"},"homepage":"https://github.com/jonathantneal/postcss-nesting","dependencies":{"postcss":"^5.0.5"},"devDependencies":{"chai":"^3.2.0","gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-mocha":"^2.1.3"},"scripts":{"test":"gulp"},"engines":{"iojs":">=2.0.0","node":">=0.12.0"},"gitHead":"e1ae8c0f1c9bbe48634da0d2953dd60570ac2356","_id":"postcss-nesting@2.0.2","_shasum":"7673d6a3ca18696a5a326d45d9e197b2ae7e46f6","_from":".","_npmVersion":"2.14.3","_nodeVersion":"0.12.5","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"7673d6a3ca18696a5a326d45d9e197b2ae7e46f6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-nesting/-/postcss-nesting-2.0.2.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{}},"2.0.3":{"name":"postcss-nesting","version":"2.0.3","description":"Transpiles nested rules according to CSS Nesting Module Level 3","keywords":["postcss","css","postcss-plugin","nestings","selectors","rules"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-nesting.git"},"bugs":{"url":"https://github.com/jonathantneal/postcss-nesting/issues"},"homepage":"https://github.com/jonathantneal/postcss-nesting","dependencies":{"postcss":"^5.0.6"},"devDependencies":{"chai":"^3.3.0","gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-mocha":"^2.1.3"},"scripts":{"test":"gulp"},"engines":{"iojs":">=2.0.0","node":">=0.12.0"},"gitHead":"837cddccd3a410762241b61e40f6a1138e40c0bf","_id":"postcss-nesting@2.0.3","_shasum":"18d9a1674166ff15e2e5e3a3d1b5724ee68b57a7","_from":".","_npmVersion":"2.14.3","_nodeVersion":"0.12.5","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"18d9a1674166ff15e2e5e3a3d1b5724ee68b57a7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-nesting/-/postcss-nesting-2.0.3.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{}},"2.0.4":{"name":"postcss-nesting","version":"2.0.4","description":"Transpiles nested rules according to CSS Nesting Module Level 3","keywords":["postcss","css","postcss-plugin","nestings","selectors","rules"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-nesting.git"},"bugs":{"url":"https://github.com/jonathantneal/postcss-nesting/issues"},"homepage":"https://github.com/jonathantneal/postcss-nesting","dependencies":{"postcss":"^5.0.6"},"devDependencies":{"chai":"^3.3.0","gulp":"^3.9.0","gulp-eslint":"^1.0.0","gulp-mocha":"^2.1.3"},"scripts":{"test":"gulp"},"engines":{"iojs":">=2.0.0","node":">=0.12.0"},"gitHead":"3d2c0b64d816226d7fa60aa4dcd53f04adf355db","_id":"postcss-nesting@2.0.4","_shasum":"7a984b8cf9c3fc60815ee8a1c35a1b401a14dafd","_from":".","_npmVersion":"2.14.3","_nodeVersion":"0.12.5","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"7a984b8cf9c3fc60815ee8a1c35a1b401a14dafd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-nesting/-/postcss-nesting-2.0.4.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{}},"2.0.5":{"name":"postcss-nesting","version":"2.0.5","description":"Transpiles nested rules according to CSS Nesting Module Level 3","keywords":["postcss","css","postcss-plugin","nestings","selectors","rules"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-nesting.git"},"bugs":{"url":"https://github.com/jonathantneal/postcss-nesting/issues"},"homepage":"https://github.com/jonathantneal/postcss-nesting","dependencies":{"postcss":"^5.0.9"},"devDependencies":{"eslint":"^1.6.0","tap-spec":"^4.1.0","tape":"^4.2.1"},"scripts":{"lint":"eslint . --ignore-path .gitignore","test-fixtures":"tape test/*.js | tap-spec","test":"npm run lint && npm run test-fixtures"},"engines":{"iojs":">=2.0.0","node":">=0.12.0"},"gitHead":"ff04ca4e069851b0bb4bbcfca23bb1d2d7f77920","_id":"postcss-nesting@2.0.5","_shasum":"810fd7b66889f136c219082f72beacf271b65f1e","_from":".","_npmVersion":"2.14.3","_nodeVersion":"0.12.5","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"810fd7b66889f136c219082f72beacf271b65f1e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-nesting/-/postcss-nesting-2.0.5.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{}},"2.0.6":{"name":"postcss-nesting","version":"2.0.6","description":"Transpiles nested rules according to CSS Nesting Module Level 3","keywords":["postcss","css","postcss-plugin","nestings","selectors","rules"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-nesting.git"},"bugs":{"url":"https://github.com/jonathantneal/postcss-nesting/issues"},"homepage":"https://github.com/jonathantneal/postcss-nesting","dependencies":{"postcss":"^5.0.9"},"devDependencies":{"eslint":"^1.6.0","tap-spec":"^4.1.0","tape":"^4.2.1"},"scripts":{"lint":"eslint . --ignore-path .gitignore","test-fixtures":"tape test/*.js | tap-spec","test":"npm run lint && npm run test-fixtures"},"engines":{"iojs":">=2.0.0","node":">=0.12.0"},"gitHead":"e6c056f17d36c259356b1cd1f69d44e928fb0fd2","_id":"postcss-nesting@2.0.6","_shasum":"a406629be1af2d5900c8f4c4d7172c0add7843c8","_from":".","_npmVersion":"2.14.3","_nodeVersion":"0.12.5","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"a406629be1af2d5900c8f4c4d7172c0add7843c8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-nesting/-/postcss-nesting-2.0.6.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{}},"2.1.1":{"name":"postcss-nesting","version":"2.1.1","description":"Transpiles nested rules according to CSS Nesting Module Level 3","keywords":["postcss","css","postcss-plugin","nestings","selectors","rules"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-nesting.git"},"bugs":{"url":"https://github.com/jonathantneal/postcss-nesting/issues"},"homepage":"https://github.com/jonathantneal/postcss-nesting","dependencies":{"postcss":"^5.0.14"},"devDependencies":{"eslint":"^1.10.3","tap-spec":"^4.1.1","tape":"^4.4.0"},"scripts":{"lint":"eslint . --ignore-path .gitignore","tape":"tape test.js | tap-spec","test":"npm run lint && npm run tape"},"engines":{"iojs":">=2.0.0","node":">=0.12.0"},"gitHead":"08bcbc85735d370fc912d61ce1109dd8451a75fc","_id":"postcss-nesting@2.1.1","_shasum":"cc44eb99f0beda451ad04a5a8bfe127a12d8b536","_from":".","_npmVersion":"3.5.2","_nodeVersion":"0.12.5","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"cc44eb99f0beda451ad04a5a8bfe127a12d8b536","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-nesting/-/postcss-nesting-2.1.1.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{}},"2.2.0":{"name":"postcss-nesting","version":"2.2.0","description":"Transpiles nested rules according to CSS Nesting Module Level 3","keywords":["postcss","css","postcss-plugin","nestings","selectors","rules","specs","specifications","cssnext"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-nesting.git"},"bugs":{"url":"https://github.com/jonathantneal/postcss-nesting/issues"},"homepage":"https://github.com/jonathantneal/postcss-nesting","dependencies":{"postcss":"^5.0.14"},"devDependencies":{"eslint":"^1.10.3","tap-spec":"^4.1.1","tape":"^4.4.0"},"scripts":{"lint":"eslint . --ignore-path .gitignore","tape":"tape test.js | tap-spec","test":"npm run lint && npm run tape"},"engines":{"iojs":">=2.0.0","node":">=0.12.0"},"gitHead":"ef0b764fc9eeccff9d1157ebd94127894030af86","_id":"postcss-nesting@2.2.0","_shasum":"3319d30bc87fdec8d5d409ffdfb60aafac3d237d","_from":".","_npmVersion":"3.5.2","_nodeVersion":"0.12.5","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"3319d30bc87fdec8d5d409ffdfb60aafac3d237d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-nesting/-/postcss-nesting-2.2.0.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"directories":{}},"2.3.0":{"name":"postcss-nesting","version":"2.3.0","description":"Transpiles nested rules according to CSS Nesting Module Level 3","keywords":["postcss","css","postcss-plugin","atrules","child","children","cssnext","nested","nestings","rules","selectors","specifications","specs","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-nesting.git"},"bugs":{"url":"https://github.com/jonathantneal/postcss-nesting/issues"},"homepage":"https://github.com/jonathantneal/postcss-nesting","dependencies":{"postcss":"^5.0.16"},"devDependencies":{"eslint":"^1.10.3","jscs":"^2.10.1","tap-spec":"^4.1.1","tape":"^4.4.0"},"scripts":{"lint":"eslint *.js --ignore-path .gitignore && jscs *.js","tape":"tape test.js | tap-spec","test":"npm run lint && npm run tape"},"engines":{"iojs":">=2.0.0","node":">=0.12.0"},"gitHead":"f582a24ceceabe61c0b5a0a975c49de1d34466c3","_id":"postcss-nesting@2.3.0","_shasum":"50740230df6d47345d58fd3ace7fe6e83e2f3df6","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.4.1","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"50740230df6d47345d58fd3ace7fe6e83e2f3df6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-nesting/-/postcss-nesting-2.3.0.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/postcss-nesting-2.3.0.tgz_1456028016494_0.4500257442705333"},"directories":{}},"2.3.1":{"name":"postcss-nesting","version":"2.3.1","description":"Transpiles nested rules according to CSS Nesting Module Level 3","keywords":["postcss","css","postcss-plugin","atrules","child","children","cssnext","nested","nestings","rules","selectors","specifications","specs","w3c"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-nesting.git"},"bugs":{"url":"https://github.com/jonathantneal/postcss-nesting/issues"},"homepage":"https://github.com/jonathantneal/postcss-nesting","dependencies":{"postcss":"^5.0.19"},"devDependencies":{"eslint":"^2.4.0","jscs":"^2.11.0","tap-spec":"^4.1.1","tape":"^4.5.1"},"scripts":{"lint":"eslint *.js --ignore-path .gitignore && jscs *.js","tape":"tape test.js | tap-spec","test":"npm run lint && npm run tape"},"engines":{"iojs":">=2.0.0","node":">=0.12.0"},"gitHead":"36bf8a1ff3833bde08dad2c3402a45168063e83b","_id":"postcss-nesting@2.3.1","_shasum":"94a6b6a4ef707fbec20a87fee5c957759b4e01cf","_from":".","_npmVersion":"3.7.5","_nodeVersion":"5.4.1","_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"dist":{"shasum":"94a6b6a4ef707fbec20a87fee5c957759b4e01cf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-nesting/-/postcss-nesting-2.3.1.tgz"},"maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/postcss-nesting-2.3.1.tgz_1458156336173_0.9555516592226923"},"directories":{}}},"name":"postcss-nesting","time":{"modified":"2016-10-28T06:15:47.018Z","created":"2015-06-17T16:27:22.458Z","0.1.0":"2015-06-17T16:27:22.458Z","1.0.0":"2015-09-15T13:26:47.407Z","2.0.0":"2015-09-15T23:59:15.932Z","2.0.1":"2015-09-16T06:13:47.656Z","2.0.2":"2015-09-16T07:23:14.738Z","2.0.3":"2015-09-22T13:08:54.535Z","2.0.4":"2015-09-22T13:38:34.145Z","2.0.5":"2015-10-12T13:40:45.481Z","2.0.6":"2015-10-15T05:31:26.863Z","2.1.1":"2016-01-04T04:59:39.071Z","2.2.0":"2016-01-30T06:33:42.121Z","2.3.0":"2016-02-21T04:13:41.065Z","2.3.1":"2016-03-16T19:25:38.335Z"},"readmeFilename":"README.md","homepage":"https://github.com/jonathantneal/postcss-nesting"}