{"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"keywords":["css","normalize","optimise","optimisation","postcss","postcss-plugin","z-index"],"dist-tags":{"latest":"2.2.0","next":"4.0.0-rc.2"},"author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"description":"Reduce z-index values with PostCSS.","readme":"# [postcss][postcss]-zindex\n\n> Reduce z-index values with PostCSS.\n\n## Install\n\nWith [npm](https://npmjs.org/package/postcss-zindex) do:\n\n```\nnpm install postcss-zindex --save\n```\n\n## Example\n\nSometimes, you may introduce z-index values into your CSS that are larger than\nnecessary, in order to improve your understanding of how each stack relates to\nthe others. For example, you might have a modal overlay at `5000` and the dialog\nfor it at `5500` - so that modal classes occupy the `5xxx` space.\n\nBut in production, it is unnecessary to use such large values for z-index where\nsmaller values would suffice. This module will reduce all z-index declarations\nwhilst respecting your original intent; such that the overlay becomes `1` and\nthe dialog becomes `2`. For more examples, see the [tests](test.js).\n\n### Input\n\n```css\n.modal {\n    z-index: 5000\n}\n\n.modal-overlay {\n    z-index: 5500\n}\n```\n\n### Output\n\n```css\n.modal {\n    z-index: 1\n}\n\n.modal-overlay {\n    z-index: 2\n}\n```\n\nNote that this module does not attempt to normalize relative z-index values,\nsuch as `-1`; indeed, it will abort immediately when encountering these values\nas it cannot be sure that rebasing mixed positive & negative values will keep\nthe stacking context intact. Be careful with using this module alongside\nJavaScript injected CSS; ideally you should have already extracted all of your\nstacking context into CSS.\n\n## API\n\n### zindex([options])\n\n#### options\n\n##### startIndex\n\nType: `number`\nDefault: `1`\n\nSet this to any other positive integer if you want to override z-indices from\nother sources outside your control. For example if a third party widget has a\nmaximum z-index of `99`, you can set this to `100` and not have to worry about\nstacking conflicts.\n\n## Usage\n\nSee the [PostCSS documentation](https://github.com/postcss/postcss#usage) for\nexamples for your environment.\n\n## Contributors\n\nSee [CONTRIBUTORS.md](https://github.com/ben-eb/cssnano/blob/master/CONTRIBUTORS.md).\n\n## License\n\nMIT © [Ben Briggs](http://beneb.info)\n\n[postcss]: https://github.com/postcss/postcss\n","repository":{"type":"git","url":"git+https://github.com/ben-eb/cssnano.git"},"bugs":{"url":"https://github.com/ben-eb/cssnano/issues"},"license":"MIT","versions":{"1.0.0":{"name":"postcss-zindex","version":"1.0.0","description":"Reduce z-index values with PostCSS.","main":"index.js","scripts":{"test":"tape test.js | tap-spec"},"keywords":["css","normalize","optimise","optimisation","postcss","postcss-plugins","z-index"],"license":"MIT","devDependencies":{"postcss":"^4.0.6","tap-spec":"^2.2.2","tape":"^3.5.0"},"homepage":"https://github.com/ben-eb/postcss-zindex","author":{"name":"Ben Briggs","email":"therealbenbriggs@hotmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git://github.com/ben-eb/postcss-zindex.git"},"gitHead":"51d0f47850911a6ce09dba7e46646bbef8f7b43a","bugs":{"url":"https://github.com/ben-eb/postcss-zindex/issues"},"_id":"postcss-zindex@1.0.0","_shasum":"f271d4014ab26eef623468fff7692ac0a012075c","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.10.33","_npmUser":{"name":"beneb","email":"therealbenbriggs@hotmail.com"},"maintainers":[{"name":"beneb","email":"therealbenbriggs@hotmail.com"}],"dist":{"shasum":"f271d4014ab26eef623468fff7692ac0a012075c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-zindex/-/postcss-zindex-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"postcss-zindex","version":"1.0.1","description":"Reduce z-index values with PostCSS.","main":"index.js","scripts":{"lint":"jshint index.js lib/*.js --reporter node_modules/jshint-stylish/stylish.js","test":"tape test.js | tap-spec"},"keywords":["css","normalize","optimise","optimisation","postcss","postcss-plugins","z-index"],"license":"MIT","devDependencies":{"jshint":"^2.6.3","jshint-stylish":"^1.0.1","postcss":"^4.0.6","tap-spec":"^2.2.2","tape":"^3.5.0"},"homepage":"https://github.com/ben-eb/postcss-zindex","author":{"name":"Ben Briggs","email":"therealbenbriggs@hotmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git://github.com/ben-eb/postcss-zindex.git"},"gitHead":"de08d2bd8035664330e053fc6f6809b42762842a","bugs":{"url":"https://github.com/ben-eb/postcss-zindex/issues"},"_id":"postcss-zindex@1.0.1","_shasum":"60503f894caab24646e41855497be97ec86185c7","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.10.33","_npmUser":{"name":"beneb","email":"therealbenbriggs@hotmail.com"},"maintainers":[{"name":"beneb","email":"therealbenbriggs@hotmail.com"}],"dist":{"shasum":"60503f894caab24646e41855497be97ec86185c7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-zindex/-/postcss-zindex-1.0.1.tgz"},"directories":{}},"1.1.0":{"name":"postcss-zindex","version":"1.1.0","description":"Reduce z-index values with PostCSS.","main":"index.js","scripts":{"lint":"jshint index.js lib/*.js --reporter node_modules/jshint-stylish/stylish.js","test":"tape test.js | tap-spec"},"keywords":["css","normalize","optimise","optimisation","postcss","postcss-plugins","z-index"],"license":"MIT","devDependencies":{"jshint":"^2.6.3","jshint-stylish":"^1.0.1","postcss":"^4.1.2","tap-spec":"^2.2.2","tape":"^3.5.0"},"homepage":"https://github.com/ben-eb/postcss-zindex","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git://github.com/ben-eb/postcss-zindex.git"},"gitHead":"794dd2fe3cb5783e167f4eb1d5c1be914ff2d0e5","bugs":{"url":"https://github.com/ben-eb/postcss-zindex/issues"},"_id":"postcss-zindex@1.1.0","_shasum":"93a1149696f669446631afbcae144219272c2a1a","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.10.33","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"maintainers":[{"name":"beneb","email":"therealbenbriggs@hotmail.com"}],"dist":{"shasum":"93a1149696f669446631afbcae144219272c2a1a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-zindex/-/postcss-zindex-1.1.0.tgz"},"directories":{}},"1.1.1":{"name":"postcss-zindex","version":"1.1.1","description":"Reduce z-index values with PostCSS.","main":"index.js","scripts":{"lint":"jshint index.js lib/*.js --reporter node_modules/jshint-stylish/stylish.js","test":"tape test.js | tap-spec"},"keywords":["css","normalize","optimise","optimisation","postcss","postcss-plugins","z-index"],"license":"MIT","dependencies":{"postcss":"^4.1.2"},"devDependencies":{"jshint":"^2.6.3","jshint-stylish":"^1.0.1","tap-spec":"^2.2.2","tape":"^3.5.0"},"homepage":"https://github.com/ben-eb/postcss-zindex","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git://github.com/ben-eb/postcss-zindex.git"},"gitHead":"667eb616d975a3a713c1c5cefc44f74a70aa3acf","bugs":{"url":"https://github.com/ben-eb/postcss-zindex/issues"},"_id":"postcss-zindex@1.1.1","_shasum":"e0e94c96dc90d390d610506df9701320187a411e","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.10.33","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"maintainers":[{"name":"beneb","email":"therealbenbriggs@hotmail.com"}],"dist":{"shasum":"e0e94c96dc90d390d610506df9701320187a411e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-zindex/-/postcss-zindex-1.1.1.tgz"},"directories":{}},"1.1.2":{"name":"postcss-zindex","version":"1.1.2","description":"Reduce z-index values with PostCSS.","main":"index.js","scripts":{"lint":"jshint index.js lib/*.js --reporter node_modules/jshint-stylish/stylish.js","test":"tape test.js | tap-spec"},"keywords":["css","normalize","optimise","optimisation","postcss","postcss-plugin","z-index"],"license":"MIT","dependencies":{"postcss":"^4.1.2"},"devDependencies":{"jshint":"^2.6.3","jshint-stylish":"^1.0.1","tap-spec":"^2.2.2","tape":"^3.5.0"},"homepage":"https://github.com/ben-eb/postcss-zindex","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"https://github.com/ben-eb/postcss-zindex"},"gitHead":"6d23d626500bb648d1ded036a42732799a7e93f3","bugs":{"url":"https://github.com/ben-eb/postcss-zindex/issues"},"_id":"postcss-zindex@1.1.2","_shasum":"ff82defe75de02ba2990c4a15ed305150401cd40","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"beneb","email":"therealbenbriggs@hotmail.com"},"maintainers":[{"name":"beneb","email":"therealbenbriggs@hotmail.com"}],"dist":{"shasum":"ff82defe75de02ba2990c4a15ed305150401cd40","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-zindex/-/postcss-zindex-1.1.2.tgz"},"directories":{}},"1.1.3":{"name":"postcss-zindex","version":"1.1.3","description":"Reduce z-index values with PostCSS.","main":"index.js","scripts":{"lint":"jshint index.js lib/*.js --reporter node_modules/jshint-stylish/stylish.js","test":"tape test.js | tap-spec"},"keywords":["css","normalize","optimise","optimisation","postcss","postcss-plugin","z-index"],"license":"MIT","dependencies":{"postcss":"^4.1.2"},"devDependencies":{"jshint":"^2.6.3","jshint-stylish":"^2.0.1","tap-spec":"^4.0.2","tape":"^4.1.0"},"homepage":"https://github.com/ben-eb/postcss-zindex","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-zindex.git"},"gitHead":"85b18ac0680c79d01f8a2d81c315662200c731d3","bugs":{"url":"https://github.com/ben-eb/postcss-zindex/issues"},"_id":"postcss-zindex@1.1.3","_shasum":"49564ab49d3dda17067f8dac1c8335d7f2d00ce1","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"trysound","email":"trysound@yandex.ru"},"dist":{"shasum":"49564ab49d3dda17067f8dac1c8335d7f2d00ce1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-zindex/-/postcss-zindex-1.1.3.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"directories":{}},"2.0.0":{"name":"postcss-zindex","version":"2.0.0","description":"Reduce z-index values with PostCSS.","main":"index.js","scripts":{"lint":"jshint index.js lib/*.js --reporter node_modules/jshint-stylish/stylish.js","test":"tape test.js | tap-spec"},"keywords":["css","normalize","optimise","optimisation","postcss","postcss-plugin","z-index"],"license":"MIT","dependencies":{"postcss":"^5.0.4"},"devDependencies":{"jshint":"^2.8.0","jshint-stylish":"^2.0.1","tap-spec":"^4.1.0","tape":"^4.2.0"},"homepage":"https://github.com/ben-eb/postcss-zindex","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-zindex.git"},"gitHead":"df873fb5d7f8e64ac76faa51ed264a956599f695","bugs":{"url":"https://github.com/ben-eb/postcss-zindex/issues"},"_id":"postcss-zindex@2.0.0","_shasum":"636dde2b07ef4a2b6d7ad8b034e237f535efd2b9","_from":".","_npmVersion":"2.12.1","_nodeVersion":"2.3.4","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"636dde2b07ef4a2b6d7ad8b034e237f535efd2b9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-zindex/-/postcss-zindex-2.0.0.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"directories":{}},"2.0.1":{"name":"postcss-zindex","version":"2.0.1","description":"Reduce z-index values with PostCSS.","main":"index.js","scripts":{"lint":"jshint index.js lib/*.js --reporter node_modules/jshint-stylish/stylish.js","test":"tape test.js | tap-spec"},"files":["LICENSE-MIT","index.js","lib"],"keywords":["css","normalize","optimise","optimisation","postcss","postcss-plugin","z-index"],"license":"MIT","dependencies":{"postcss":"^5.0.4","uniqs":"^2.0.0"},"devDependencies":{"jshint":"^2.8.0","jshint-stylish":"^2.0.1","tap-spec":"^4.1.0","tape":"^4.2.0"},"homepage":"https://github.com/ben-eb/postcss-zindex","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-zindex.git"},"gitHead":"32515cfe9bb5d6f874d7dc8681c90bfafc1de0da","bugs":{"url":"https://github.com/ben-eb/postcss-zindex/issues"},"_id":"postcss-zindex@2.0.1","_shasum":"1c9b22269691a87557f7565dfe6e3b8473e530bc","_from":".","_npmVersion":"3.3.9","_nodeVersion":"4.2.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"1c9b22269691a87557f7565dfe6e3b8473e530bc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-zindex/-/postcss-zindex-2.0.1.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"directories":{}},"2.1.0":{"name":"postcss-zindex","version":"2.1.0","description":"Reduce z-index values with PostCSS.","main":"index.js","scripts":{"lint":"jshint index.js lib/*.js --reporter node_modules/jshint-stylish/stylish.js","test":"tape test.js | tap-spec"},"files":["LICENSE-MIT","index.js","lib"],"keywords":["css","normalize","optimise","optimisation","postcss","postcss-plugin","z-index"],"license":"MIT","dependencies":{"postcss":"^5.0.4","uniqs":"^2.0.0"},"devDependencies":{"jshint":"^2.8.0","jshint-stylish":"^2.0.1","tap-spec":"^4.1.0","tape":"^4.2.0"},"homepage":"https://github.com/ben-eb/postcss-zindex","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-zindex.git"},"gitHead":"f70f8da5da0933d59fd7e3d4f89afe7c17b491d6","bugs":{"url":"https://github.com/ben-eb/postcss-zindex/issues"},"_id":"postcss-zindex@2.1.0","_shasum":"731c43f7baae2e8132c6208d7fe122fb2bf0e1a5","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"731c43f7baae2e8132c6208d7fe122fb2bf0e1a5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-zindex/-/postcss-zindex-2.1.0.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/postcss-zindex-2.1.0.tgz_1459684241124_0.13193728704936802"},"directories":{}},"2.1.1":{"name":"postcss-zindex","version":"2.1.1","description":"Reduce z-index values with PostCSS.","main":"index.js","scripts":{"lint":"jshint index.js lib/*.js --reporter node_modules/jshint-stylish/stylish.js","test":"tape test.js | tap-spec"},"files":["LICENSE-MIT","index.js","lib"],"keywords":["css","normalize","optimise","optimisation","postcss","postcss-plugin","z-index"],"license":"MIT","dependencies":{"postcss":"^5.0.4","uniqs":"^2.0.0"},"devDependencies":{"jshint":"^2.8.0","jshint-stylish":"^2.0.1","tap-spec":"^4.1.0","tape":"^4.2.0"},"homepage":"https://github.com/ben-eb/postcss-zindex","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-zindex.git"},"gitHead":"2ccdfac421e7b822f98d1cb3e8e6530953849241","bugs":{"url":"https://github.com/ben-eb/postcss-zindex/issues"},"_id":"postcss-zindex@2.1.1","_shasum":"ea3fbe656c9738aa8729e2ee96ec2a46089b720f","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"ea3fbe656c9738aa8729e2ee96ec2a46089b720f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-zindex/-/postcss-zindex-2.1.1.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/postcss-zindex-2.1.1.tgz_1460561207553_0.1399674208369106"},"directories":{}},"2.2.0":{"name":"postcss-zindex","version":"2.2.0","description":"Reduce z-index values with PostCSS.","main":"index.js","scripts":{"lint":"jshint index.js lib/*.js --reporter node_modules/jshint-stylish/stylish.js","test":"tape test.js | tap-spec"},"files":["LICENSE-MIT","index.js","lib"],"keywords":["css","normalize","optimise","optimisation","postcss","postcss-plugin","z-index"],"license":"MIT","dependencies":{"has":"^1.0.1","postcss":"^5.0.4","uniqs":"^2.0.0"},"devDependencies":{"jshint":"^2.8.0","jshint-stylish":"^2.0.1","tap-spec":"^4.1.0","tape":"^4.2.0"},"homepage":"https://github.com/ben-eb/postcss-zindex","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/postcss-zindex.git"},"gitHead":"56b278b626a1109122a4464c7cb60fd4aaad802d","bugs":{"url":"https://github.com/ben-eb/postcss-zindex/issues"},"_id":"postcss-zindex@2.2.0","_shasum":"d2109ddc055b91af67fc4cb3b025946639d2af22","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"d2109ddc055b91af67fc4cb3b025946639d2af22","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-zindex/-/postcss-zindex-2.2.0.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/postcss-zindex-2.2.0.tgz_1480092808570_0.4338950738310814"},"directories":{}},"4.0.0-rc.0":{"name":"postcss-zindex","version":"4.0.0-rc.0","description":"Reduce z-index values with PostCSS.","main":"dist/index.js","scripts":{"prepublish":"cross-env BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/"},"files":["LICENSE-MIT","dist"],"keywords":["css","normalize","optimise","optimisation","postcss","postcss-plugin","z-index"],"license":"MIT","dependencies":{"has":"^1.0.0","postcss":"^6.0.0","uniqs":"^2.0.0"},"devDependencies":{"babel-cli":"^6.0.0","cross-env":"^3.0.0"},"homepage":"https://github.com/ben-eb/cssnano","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/cssnano.git"},"bugs":{"url":"https://github.com/ben-eb/cssnano/issues"},"engines":{"node":">=4"},"_id":"postcss-zindex@4.0.0-rc.0","_shasum":"105c4d329f014c08dada629080b98a2fe0ced5f1","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"105c4d329f014c08dada629080b98a2fe0ced5f1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-zindex/-/postcss-zindex-4.0.0-rc.0.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-zindex-4.0.0-rc.0.tgz_1496311195439_0.25923413736745715"},"directories":{}},"4.0.0-rc.2":{"name":"postcss-zindex","version":"4.0.0-rc.2","description":"Reduce z-index values with PostCSS.","main":"dist/index.js","scripts":{"prepublish":"cross-env BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/"},"files":["LICENSE-MIT","dist"],"keywords":["css","normalize","optimise","optimisation","postcss","postcss-plugin","z-index"],"license":"MIT","dependencies":{"has":"^1.0.0","postcss":"^6.0.0","uniqs":"^2.0.0"},"devDependencies":{"babel-cli":"^6.0.0","cross-env":"^3.0.0"},"homepage":"https://github.com/ben-eb/cssnano","author":{"name":"Ben Briggs","email":"beneb.info@gmail.com","url":"http://beneb.info"},"repository":{"type":"git","url":"git+https://github.com/ben-eb/cssnano.git"},"bugs":{"url":"https://github.com/ben-eb/cssnano/issues"},"engines":{"node":">=4"},"_id":"postcss-zindex@4.0.0-rc.2","_npmVersion":"5.3.0","_nodeVersion":"8.1.4","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"integrity":"sha512-Nv6ZJB2N+IZ2AKDK3PdN2PR+W3+Q63TB8qDULH2JWR2Zp1tTJaxG3U/pVzcYd9JM+tGHN2lnDrLVX4a037xFlw==","shasum":"651d26414a621021629cf72c519a8f26245bac36","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-zindex/-/postcss-zindex-4.0.0-rc.2.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"trysound","email":"trysound@yandex.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-zindex-4.0.0-rc.2.tgz_1502049211746_0.799462185241282"},"directories":{}}},"name":"postcss-zindex","time":{"modified":"2017-08-06T23:48:24.033Z","created":"2015-03-17T10:57:03.263Z","1.0.0":"2015-03-17T10:57:03.263Z","1.0.1":"2015-03-25T13:56:20.508Z","1.1.0":"2015-04-02T12:06:20.459Z","1.1.1":"2015-04-02T15:30:15.431Z","1.1.2":"2015-05-28T19:10:51.811Z","1.1.3":"2015-08-13T14:01:58.138Z","2.0.0":"2015-09-04T23:23:37.224Z","2.0.1":"2016-01-02T15:26:33.903Z","2.1.0":"2016-04-03T11:50:43.280Z","2.1.1":"2016-04-13T15:26:49.910Z","2.2.0":"2016-11-25T16:53:30.434Z","4.0.0-rc.0":"2017-06-01T09:59:56.266Z","4.0.0-rc.2":"2017-08-06T19:53:32.630Z"},"readmeFilename":"README.md","homepage":"https://github.com/ben-eb/cssnano"}