{"maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"keywords":["gulpplugin","postcss","postcss-runner","css"],"dist-tags":{"latest":"10.0.0"},"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"description":"PostCSS gulp plugin","readme":"# gulp-postcss\n\n![Build Status](https://github.com/postcss/gulp-postcss/actions/workflows/test.yml/badge.svg?branch=main)\n[![Coverage Status](https://img.shields.io/coveralls/postcss/gulp-postcss.svg)](https://coveralls.io/r/postcss/gulp-postcss)\n\n[PostCSS](https://github.com/postcss/postcss) gulp plugin to pipe CSS through\nseveral plugins, but parse CSS only once.\n\n## Install\n\n    $ npm install --save-dev postcss gulp-postcss\n\nInstall required [postcss plugins](https://www.npmjs.com/browse/keyword/postcss-plugin) separately. E.g. for autoprefixer, you need to install [autoprefixer](https://github.com/postcss/autoprefixer) package.\n\n## Basic usage\n\nThe configuration is loaded automatically from `postcss.config.js`\nas [described here](https://www.npmjs.com/package/postcss-load-config),\nso you don't have to specify any options.\n\n```js\nvar postcss = require('gulp-postcss');\nvar gulp = require('gulp');\n\ngulp.task('css', function () {\n    return gulp.src('./src/*.css')\n        .pipe(postcss())\n        .pipe(gulp.dest('./dest'));\n});\n```\n\n## Passing plugins directly\n\n```js\nvar postcss = require('gulp-postcss');\nvar gulp = require('gulp');\nvar autoprefixer = require('autoprefixer');\nvar cssnano = require('cssnano');\n\ngulp.task('css', function () {\n    var plugins = [\n        autoprefixer({browsers: ['last 1 version']}),\n        cssnano()\n    ];\n    return gulp.src('./src/*.css')\n        .pipe(postcss(plugins))\n        .pipe(gulp.dest('./dest'));\n});\n```\n\n## Using with .pcss extension\n\nFor using gulp-postcss to have input files in .pcss format and get .css output need additional library like gulp-rename.\n\n```js\nvar postcss = require('gulp-postcss');\nvar gulp = require('gulp');\nconst rename = require('gulp-rename');\n\ngulp.task('css', function () {\n    return gulp.src('./src/*.pcss')\n        .pipe(postcss())\n        .pipe(rename({\n          extname: '.css'\n        }))\n        .pipe(gulp.dest('./dest'));\n});\n```\n\nThis is done for more explicit transformation. According to [gulp plugin guidelines](https://github.com/gulpjs/gulp/blob/master/docs/writing-a-plugin/guidelines.md#guidelines)\n\n> Your plugin should only do one thing, and do it well.\n\n\n## Passing additional options to PostCSS\n\nThe second optional argument to gulp-postcss is passed to PostCSS.\n\nThis, for instance, may be used to enable custom parser:\n\n```js\nvar gulp = require('gulp');\nvar postcss = require('gulp-postcss');\nvar nested = require('postcss-nested');\nvar sugarss = require('sugarss');\n\ngulp.task('default', function () {\n    var plugins = [nested];\n    return gulp.src('in.sss')\n        .pipe(postcss(plugins, { parser: sugarss }))\n        .pipe(gulp.dest('out'));\n});\n```\n\nIf you are using a `postcss.config.js` file, you can pass PostCSS options as the first argument to gulp-postcss.\n\nThis, for instance, will let PostCSS know what the final file destination path is, since it will be unaware of the path given to `gulp.dest()`:\n\n```js\nvar gulp = require('gulp');\nvar postcss = require('gulp-postcss');\n\ngulp.task('default', function () {\n    return gulp.src('in.scss')\n        .pipe(postcss({ to: 'out/in.css' }))\n        .pipe(gulp.dest('out'));\n});\n```\n\n## Using a custom processor\n\n```js\nvar postcss = require('gulp-postcss');\nvar cssnext = require('postcss-cssnext');\nvar opacity = function (css, opts) {\n    css.walkDecls(function(decl) {\n        if (decl.prop === 'opacity') {\n            decl.parent.insertAfter(decl, {\n                prop: '-ms-filter',\n                value: '\"progid:DXImageTransform.Microsoft.Alpha(Opacity=' + (parseFloat(decl.value) * 100) + ')\"'\n            });\n        }\n    });\n};\n\ngulp.task('css', function () {\n    var plugins = [\n        cssnext({browsers: ['last 1 version']}),\n        opacity\n    ];\n    return gulp.src('./src/*.css')\n        .pipe(postcss(plugins))\n        .pipe(gulp.dest('./dest'));\n});\n```\n\n## Source map support\n\nSource map is disabled by default, to extract map use together\nwith [gulp-sourcemaps](https://github.com/floridoo/gulp-sourcemaps).\n\n```js\nreturn gulp.src('./src/*.css')\n    .pipe(sourcemaps.init())\n    .pipe(postcss(plugins))\n    .pipe(sourcemaps.write('.'))\n    .pipe(gulp.dest('./dest'));\n```\n\n## Advanced usage\n\nIf you want to configure postcss on per-file-basis, you can pass a callback\nthat receives [vinyl file object](https://github.com/gulpjs/vinyl) and returns\n`{ plugins: plugins, options: options }`. For example, when you need to\nparse different extensions differntly:\n\n```js\nvar gulp = require('gulp');\nvar postcss = require('gulp-postcss');\n\ngulp.task('css', function () {\n    function callback(file) {\n        return {\n            plugins: [\n                require('postcss-import')({ root: file.dirname }),\n                require('postcss-modules')\n            ],\n            options: {\n                parser: file.extname === '.sss' ? require('sugarss') : false\n            }\n        }\n    }\n    return gulp.src('./src/*.css')\n        .pipe(postcss(callback))\n        .pipe(gulp.dest('./dest'));\n});\n```\n\nThe same result may be achieved with\n[`postcss-load-config`](https://www.npmjs.com/package/postcss-load-config),\nbecause it receives `ctx` with the context options and the vinyl file.\n\n```js\nvar gulp = require('gulp');\nvar postcss = require('gulp-postcss');\n\ngulp.task('css', function () {\n    var contextOptions = { modules: true };\n    return gulp.src('./src/*.css')\n        .pipe(postcss(contextOptions))\n        .pipe(gulp.dest('./dest'));\n});\n```\n\n```js\n// postcss.config.js or .postcssrc.js\nmodule.exports = function (ctx) {\n    var file = ctx.file;\n    var options = ctx;\n    return {\n        parser: file.extname === '.sss' ? : 'sugarss' : false,\n        plugins: {\n           'postcss-import': { root: file.dirname }\n           'postcss-modules': options.modules ? {} : false\n        }\n    }\n};\n```\n\n## Changelog\n\n* 10.0.0\n  * Released with the same changes as 9.1.0\n\n* 9.1.0 **deprecated, because it breaks semver by dropping support for node <18**\n  * Bump postcss-load-config to ^5.0.0\n  * Ensure options are passed to plugins when using postcss.config.js #170\n  * Update deps\n  * Drop support for node <18\n  * Add flake.nix for local dev with `nix develop`\n\n* 9.0.1\n  * Bump postcss-load-config to ^3.0.0\n\n* 9.0.0\n  * Bump PostCSS to 8.0\n  * Drop Node 6 support\n  * PostCSS is now a peer dependency\n\n* 8.0.0\n  * Bump PostCSS to 7.0\n  * Drop Node 4 support\n\n* 7.0.1\n  * Drop dependency on gulp-util\n\n* 7.0.0\n  * Bump PostCSS to 6.0\n  * Smaller module size\n  * Use eslint instead of jshint\n\n* 6.4.0\n  * Add more details to `PluginError` object\n\n* 6.3.0\n  * Integrated with postcss-load-config\n  * Added a callback to configure postcss on per-file-basis\n  * Dropped node 0.10 support\n\n* 6.2.0\n  * Fix syntax error message for PostCSS 5.2 compatibility\n\n* 6.1.1\n  * Fixed the error output\n\n* 6.1.0\n  * Support for `null` files\n  * Updated dependencies\n\n* 6.0.1\n  * Added an example and a test to pass options to PostCSS (e.g. `syntax` option)\n  * Updated vinyl-sourcemaps-apply to 0.2.0\n\n* 6.0.0\n  * Updated PostCSS to version 5.0.0\n\n* 5.1.10\n  * Use autoprefixer in README\n\n* 5.1.9\n  * Prevent unhandled exception of the following pipes from being suppressed by Promise\n\n* 5.1.8\n  * Prevent stream’s unhandled exception from being suppressed by Promise\n\n* 5.1.7\n  * Updated direct dependencies\n\n* 5.1.6\n  * Updated `CssSyntaxError` check\n\n* 5.1.4\n  * Simplified error handling\n  * Simplified postcss execution with object plugins\n\n* 5.1.3 Updated travis banner\n\n* 5.1.2 Transferred repo into postcss org on github\n\n* 5.1.1\n  * Allow override of `to` option\n\n* 5.1.0 PostCSS Runner Guidelines\n  * Set `from` and `to` processing options\n  * Don't output js stack trace for `CssSyntaxError`\n  * Display `result.warnings()` content\n\n* 5.0.1\n  * Fix to support object plugins\n\n* 5.0.0\n  * Use async API\n\n* 4.0.3\n  * Fixed bug with relative source map\n\n* 4.0.2\n  * Made PostCSS a simple dependency, because peer dependency is deprecated\n\n* 4.0.1\n  * Made PostCSS 4.x a peer dependency\n\n* 4.0.0\n  * Updated PostCSS to 4.0\n\n* 3.0.0\n  * Updated PostCSS to 3.0 and fixed tests\n\n* 2.0.1\n  * Added Changelog\n  * Added example for a custom processor in README\n\n* 2.0.0\n  * Disable source map by default\n  * Test source map\n  * Added Travis support\n  * Use autoprefixer-core in README\n\n* 1.0.2\n  * Improved README\n\n* 1.0.1\n  * Don't add source map comment if used with gulp-sourcemaps\n\n* 1.0.0\n  * Initial release\n","repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"users":{"326060588":true,"bnu":true,"ccwq":true,"4ster":true,"crysp":true,"gor0n":true,"h4des":true,"irish":true,"jruif":true,"jyyoi":true,"kurre":true,"mskjp":true,"sam16":true,"sonar":true,"biasso":true,"jaguar":true,"jlopvi":true,"koutak":true,"muzhen":true,"vivekm":true,"web94s":true,"acoyang":true,"bitmill":true,"cutshaw":true,"ezeikel":true,"imagion":true,"kiinlam":true,"kokoruz":true,"malitov":true,"seaniap":true,"skychen":true,"tomchao":true,"umetomo":true,"vicargo":true,"zzl81cn":true,"baskinco":true,"bob.cody":true,"dbuggerx":true,"dennykuo":true,"janet-lu":true,"jedchang":true,"lianhr12":true,"seleckis":true,"tdmalone":true,"alexc1212":true,"binaryjim":true,"chriscalo":true,"ehimimaru":true,"feiyu1995":true,"hz_hualuo":true,"jaevans36":true,"joaocunha":true,"ldq-first":true,"peunzhang":true,"phritolay":true,"rubiadias":true,"sternelee":true,"yodairish":true,"alexdevero":true,"chirag8642":true,"klimnikita":true,"sesamechee":true,"davidnyhuis":true,"flumpus-dev":true,"growdigital":true,"illuminator":true,"kongfupanda":true,"ookangzheng":true,"iori20091101":true,"runningtalus":true,"samhwang1990":true,"serge-nikitin":true,"astraloverflow":true,"kern.wienfluss":true},"bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"license":"MIT","versions":{"0.0.1":{"name":"gulp-postcss","version":"0.0.1","keywords":["gulp","postcss","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@0.0.1","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/w0rm/gulp-postcss","bugs":{"url":"https://github.com/w0rm/gulp-postcss/issues"},"dist":{"shasum":"ce9eca19771d39a8f1a0c79f47c8ad5fe8f8b3db","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-0.0.1.tgz","integrity":"sha512-NK0Zp2q9QQvZ0VvRW4wGW5owogViK5u3LerAB7rpGwy9b4ytIbAeZtExvPZiUmmifdzglo01msqfcGPa0aqNKw==","signatures":[{"sig":"MEYCIQDR4l7KGiMGGh8ER65TpVA/pGPDGzayFfRjcl/yTFFpyAIhAPnkEOPmOJgSFdhOVQ8pbx5CE3MHyehoWlcB2JEBVCCx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ce9eca19771d39a8f1a0c79f47c8ad5fe8f8b3db","gitHead":"e909c3be5e414d5a9c68efb3f62fa58f4ecfb765","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/w0rm/gulp-postcss.git","type":"git"},"_npmVersion":"1.4.16","description":"PostCSS gulp plugin","directories":{},"dependencies":{"lodash":"^2.4.1","postcss":"^2.1.2","through2":"^0.6.1","gulp-util":"^3.0.0","vinyl-sourcemaps-apply":"^0.1.1"},"devDependencies":{"mocha":"^1.21.4"}},"0.0.2":{"name":"gulp-postcss","version":"0.0.2","keywords":["gulp","postcss","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@0.0.2","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/w0rm/gulp-postcss","bugs":{"url":"https://github.com/w0rm/gulp-postcss/issues"},"dist":{"shasum":"5b4ea2a13f227f81c4bd41472a99bcd5cc21da9c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-0.0.2.tgz","integrity":"sha512-Yb7DWXpZO9kYuxdzvi9NS+Br6uCmTSKMk4ff82Q6BTgqjZe75u6FW3HgphdTYFD9fwLdraCWvh609s83Avz7bA==","signatures":[{"sig":"MEUCIQCx5wmLvHgMIP5Fd5UUZX3ZNu/yYzBPpvAd6m5tyY9DugIgYtwJJiiD0vaofTgpSKwkKKzvNhvp/+Kh967eGTMe+LY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"5b4ea2a13f227f81c4bd41472a99bcd5cc21da9c","gitHead":"886d4ecafea55b6dc320734cb184bc14ffe9139a","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/w0rm/gulp-postcss.git","type":"git"},"_npmVersion":"1.4.16","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^2.1.2","through2":"^0.6.1","gulp-util":"^3.0.0","vinyl-sourcemaps-apply":"^0.1.1"},"devDependencies":{"mocha":"^1.21.4"}},"1.0.0":{"name":"gulp-postcss","version":"1.0.0","keywords":["gulpplugin","postcss","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@1.0.0","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/w0rm/gulp-postcss","bugs":{"url":"https://github.com/w0rm/gulp-postcss/issues"},"dist":{"shasum":"fe3694fc30f9507c99596e1353ca9e6243f143ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-1.0.0.tgz","integrity":"sha512-0dciR883HO7iTw+vkpIs5bszl7mSqNfSW8Iuw8Petv5BceQNcTJ383/TU9EGiC7+TvBnUBr7dy7kSupVzRJUpQ==","signatures":[{"sig":"MEUCIQCt85Z+jV80MSDZNkEpEz2ETLwF1MIDGszLF7IUFcsElAIgKNujJaKYD0JQ6w27QvkPAJMdkAtoILqIg/47R+Mp34c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"fe3694fc30f9507c99596e1353ca9e6243f143ee","gitHead":"a837a855e491779b71dd52913650e130d8f06e9d","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/w0rm/gulp-postcss.git","type":"git"},"_npmVersion":"1.4.16","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^2.1.2","through2":"^0.6.1","gulp-util":"^3.0.0","vinyl-sourcemaps-apply":"^0.1.1"},"devDependencies":{"mocha":"^1.21.4"}},"1.0.1":{"name":"gulp-postcss","version":"1.0.1","keywords":["gulpplugin","postcss","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@1.0.1","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/w0rm/gulp-postcss","bugs":{"url":"https://github.com/w0rm/gulp-postcss/issues"},"dist":{"shasum":"c00fef6afdc4e00761d955857fcb591bf148abb5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-1.0.1.tgz","integrity":"sha512-OknlOae16wD7V1DGsshRsmsK5YT+5eWoz9jyb82NKcZSiAW8lutqvJGFHE+OaHoHwF7f0flTitiwSvBupukjXA==","signatures":[{"sig":"MEQCIFTwV3oKwCUxbqpzaMN3agl15BH+x0+ltOBoWutjiCFdAiA9IcyKmLYfUbUWKpEe9BhQRZTi4lMCd2wsv4ltVfexOg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c00fef6afdc4e00761d955857fcb591bf148abb5","gitHead":"a131f0c212d35b65f2484e986980769a138a0de8","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/w0rm/gulp-postcss.git","type":"git"},"_npmVersion":"1.4.16","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^2.1.2","through2":"^0.6.1","gulp-util":"^3.0.0","vinyl-sourcemaps-apply":"^0.1.1"},"devDependencies":{"mocha":"^1.21.4"}},"1.0.2":{"name":"gulp-postcss","version":"1.0.2","keywords":["gulpplugin","postcss","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@1.0.2","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/w0rm/gulp-postcss","bugs":{"url":"https://github.com/w0rm/gulp-postcss/issues"},"dist":{"shasum":"fc3c3b6de66570c24044c2430da2921b13f8351f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-1.0.2.tgz","integrity":"sha512-pNkpcCKB9UPJYG6fks+SVimSdbHT9HqLrxujpQ+JxIAmK11MalAaNB8NxuVks5JP5NBfiIsUHnE9C8oVyM1bTg==","signatures":[{"sig":"MEUCIH7bSOV5u4CYjKIrvaZnSY7653Uz2K8/HjNZhBwHKAlDAiEA+N+Da44ZnBFqr6XPuneO4omqi4SU/0aHX9m19uausxk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"fc3c3b6de66570c24044c2430da2921b13f8351f","gitHead":"cd6d2b1d7b00c18ecaec8cac0b3f82e1cc6ffce0","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/w0rm/gulp-postcss.git","type":"git"},"_npmVersion":"1.4.16","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^2.1.2","through2":"^0.6.1","gulp-util":"^3.0.0","vinyl-sourcemaps-apply":"^0.1.1"},"devDependencies":{"mocha":"^1.21.4"}},"2.0.0":{"name":"gulp-postcss","version":"2.0.0","keywords":["gulpplugin","postcss","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@2.0.0","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/w0rm/gulp-postcss","bugs":{"url":"https://github.com/w0rm/gulp-postcss/issues"},"dist":{"shasum":"ea5f0a01d99cea1036aaa0cb4545a2794f639384","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-2.0.0.tgz","integrity":"sha512-EboNoyxsP+CU7xeoEpQZLCkh1+SbsGkRMTUfP4KnKZSmR57d0WwwR/HtGp4q50s0bSAFNmrYoj2yrg5XWgBYPQ==","signatures":[{"sig":"MEUCIQCDilM1GuzYESi9PBSzG9IXBbPkKOqdCgLySpW1CKRi1QIgVkdDuwFL/8uak4EnVNrQPnh1iKasVX4i+E1hTL6kMxQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ea5f0a01d99cea1036aaa0cb4545a2794f639384","gitHead":"aaba55d051a0e71e5730afe23d0f5b4c812d44a0","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/w0rm/gulp-postcss.git","type":"git"},"_npmVersion":"1.4.16","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^2.1.2","through2":"^0.6.1","gulp-util":"^3.0.0","vinyl-sourcemaps-apply":"^0.1.1"},"devDependencies":{"mocha":"^1.21.4","gulp-sourcemaps":"^1.1.5"}},"2.0.1":{"name":"gulp-postcss","version":"2.0.1","keywords":["gulpplugin","postcss","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@2.0.1","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/w0rm/gulp-postcss","bugs":{"url":"https://github.com/w0rm/gulp-postcss/issues"},"dist":{"shasum":"30bbb5328dc0a697c95ecc8e9f56390bfa45dab8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-2.0.1.tgz","integrity":"sha512-BvBcvcslKj8jSEHkn9uuafUjrTwRM+UaxogGfT5w1Tbg2AnN6tPOqN6Rk+DHseNLo7EM6IN7w3P2jYXlvDFn6A==","signatures":[{"sig":"MEUCIQDva3ilbL1QfBMREZRMpqQx0lAjzotBBiHgHTXZAlMIzwIgVVA/9AO9Ws4cRO+PARJCCWyxTgl41gTYs5tjZdFi+s8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"30bbb5328dc0a697c95ecc8e9f56390bfa45dab8","gitHead":"c7c7ff74b208b0cb363fda3afed984242c3913d5","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/w0rm/gulp-postcss.git","type":"git"},"_npmVersion":"1.4.16","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^2.1.2","through2":"^0.6.1","gulp-util":"^3.0.0","vinyl-sourcemaps-apply":"^0.1.1"},"devDependencies":{"mocha":"^1.21.4","gulp-sourcemaps":"^1.1.5"}},"3.0.0":{"name":"gulp-postcss","version":"3.0.0","keywords":["gulpplugin","postcss","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@3.0.0","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/w0rm/gulp-postcss","bugs":{"url":"https://github.com/w0rm/gulp-postcss/issues"},"dist":{"shasum":"13b0e88f35cf65d23a253c830e718c7b5f60dd0f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-3.0.0.tgz","integrity":"sha512-VS8Q8knAxzOGS+WjDMhokyXd7+aOidiwJq4bPaROgTr3zzLViv/MgGv63rTYyneYnZxhOJhkZjVUapF8lc7XqA==","signatures":[{"sig":"MEUCIQCJ3x9R9Y5kBa+HgUFz6bX4BshDQmAPyoczrVTaJdPmXwIgOWrS33/qggYewpKj7MfBh76XywXxMJGARJK0dK4OUPc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"13b0e88f35cf65d23a253c830e718c7b5f60dd0f","gitHead":"84922b1db8ced4e8fd1ae77b29805d9aac7deadb","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/w0rm/gulp-postcss.git","type":"git"},"_npmVersion":"1.4.16","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^3.0.0","through2":"^0.6.1","gulp-util":"^3.0.0","vinyl-sourcemaps-apply":"^0.1.1"},"devDependencies":{"mocha":"^1.21.4","gulp-sourcemaps":"^1.1.5"}},"4.0.0":{"name":"gulp-postcss","version":"4.0.0","keywords":["gulpplugin","postcss","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@4.0.0","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/w0rm/gulp-postcss","bugs":{"url":"https://github.com/w0rm/gulp-postcss/issues"},"dist":{"shasum":"ec5469e4dcb1e78b1c91a94970afe6292ebc16f8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-4.0.0.tgz","integrity":"sha512-nhF7rRE6MshZ/JF/geKnsA9yTUy6QnN8KSl1GfBgGDCw/adASN3NALQQbQpF+Pz+ctU9Azsy/hfDSIB8BbOj/g==","signatures":[{"sig":"MEYCIQD6aNBwE065Wgzfn8t53SewFa9CPN7+bLBrEIiyktIJwQIhAM3yArjHNpqFCGBOK6IfCqlZ4Ke+jQq88E3SZrDo4Hcc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ec5469e4dcb1e78b1c91a94970afe6292ebc16f8","gitHead":"49181523583d53866c646785f28f2ec93c9ebf45","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/w0rm/gulp-postcss.git","type":"git"},"_npmVersion":"2.0.0","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^4.0.0","through2":"^0.6.1","gulp-util":"^3.0.0","vinyl-sourcemaps-apply":"^0.1.1"},"devDependencies":{"mocha":"^1.21.4","gulp-sourcemaps":"^1.1.5"}},"4.0.1":{"name":"gulp-postcss","version":"4.0.1","keywords":["gulpplugin","postcss","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@4.0.1","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/w0rm/gulp-postcss","bugs":{"url":"https://github.com/w0rm/gulp-postcss/issues"},"dist":{"shasum":"4d72796e1e736131d31bb2744196906a5075f4ec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-4.0.1.tgz","integrity":"sha512-4c+fVWpzuDCa1jFSD2wFfU8ZqXGwtKqHRQTHvg+ir0kq7aeKbvWvOi/wvkfDu71cE7BhyKKOYP+JI2sIZmE/4w==","signatures":[{"sig":"MEYCIQDioMmmyja3eOHpAD3AgvFnPW8H5BFMH81SYEGgvEoY5AIhALcvnbvzTMPWocNbzjgD/EA5QcR/OjgSB3I/HJNXWtaQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4d72796e1e736131d31bb2744196906a5075f4ec","gitHead":"a15839c4dac8ed476feb22c2dcdc3c89fb20d9a4","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/w0rm/gulp-postcss.git","type":"git"},"_npmVersion":"2.0.0","description":"PostCSS gulp plugin","directories":{},"dependencies":{"through2":"^0.6.1","gulp-util":"^3.0.0","vinyl-sourcemaps-apply":"^0.1.1"},"devDependencies":{"mocha":"^1.21.4","postcss":"4.*","gulp-sourcemaps":"^1.1.5"},"peerDependencies":{"postcss":"4.*"}},"4.0.2":{"name":"gulp-postcss","version":"4.0.2","keywords":["gulpplugin","postcss","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@4.0.2","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/w0rm/gulp-postcss","bugs":{"url":"https://github.com/w0rm/gulp-postcss/issues"},"dist":{"shasum":"723b9a8341040e2fee4ea47fad7bfbe43e51a9ea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-4.0.2.tgz","integrity":"sha512-TM/QgCiYGn6Exh1i2hxoPS2Wd9k0K6ozMKkiGyqfd0BkFJM9H6dosgECoN8ckZf6Co4MBbWvv9Cu5OSmXNpWiA==","signatures":[{"sig":"MEUCIQCsTeFmqb4fCMZfHv2btYH2L6f22W74jVzx1/dkTQo5sgIgSu261n6+3P58BypPvNxlcKHuklaWOFmIyNqOcl8UecY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"723b9a8341040e2fee4ea47fad7bfbe43e51a9ea","gitHead":"6bc9e3702a80229070f0201af89e1ab383518c00","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/w0rm/gulp-postcss.git","type":"git"},"_npmVersion":"2.0.0","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^4.0.1","through2":"^0.6.1","gulp-util":"^3.0.0","vinyl-sourcemaps-apply":"^0.1.1"},"devDependencies":{"mocha":"^1.21.4","gulp-sourcemaps":"^1.1.5"}},"4.0.3":{"name":"gulp-postcss","version":"4.0.3","keywords":["gulpplugin","postcss","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@4.0.3","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/w0rm/gulp-postcss","bugs":{"url":"https://github.com/w0rm/gulp-postcss/issues"},"dist":{"shasum":"e0d8839bdb3f5e02a1fec2b70343128ff3c9b448","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-4.0.3.tgz","integrity":"sha512-MwCMNPXIpjObOhZFJt8oNEIAAC0fCzlZqtbIHR/3ma62oyHOw43cOIyPdCIyBIdFAjTq+jjKp1ZlVvJKSdIwgw==","signatures":[{"sig":"MEUCIB373g/IJk0jOulPlXg9Bx3zQj7MvozmDkjOkVgthAZFAiEA3bjrmMSIpx2nMV6UedktnTCBqiqD+NOUNsSGTboyNes=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e0d8839bdb3f5e02a1fec2b70343128ff3c9b448","gitHead":"0ee945f93a3ca6169934afa7c8301b3ca5a6b917","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/w0rm/gulp-postcss.git","type":"git"},"_npmVersion":"2.0.0","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^4.0.1","through2":"^0.6.1","gulp-util":"^3.0.0","vinyl-sourcemaps-apply":"^0.1.1"},"devDependencies":{"mocha":"^1.21.4","gulp-sourcemaps":"^1.1.5"}},"5.0.0":{"name":"gulp-postcss","version":"5.0.0","keywords":["gulpplugin","postcss","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@5.0.0","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/w0rm/gulp-postcss","bugs":{"url":"https://github.com/w0rm/gulp-postcss/issues"},"dist":{"shasum":"8d4adb05a2dd1ff4a4d0ba434bfb8a5d9a700f18","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-5.0.0.tgz","integrity":"sha512-x4Gyrvy2Qrjx+AV74aNh65Vy0jvzrLJzSsM5A9VFzvOJ6NPLopuGefKI2EuK2wgUXMe3K82HM7eqEXmfA7OPLQ==","signatures":[{"sig":"MEUCIQDlLqxURy3m6Xqx6MF6XuRWx6GV1eN+ViBfNmxqW6oUxwIgcIwispr8MP9Ag0TW456oK4HqI5pibzGVTI1xPyTn/38=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8d4adb05a2dd1ff4a4d0ba434bfb8a5d9a700f18","gitHead":"62fd4e9cb8b56b192cb2414d36ae600423f494bd","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/w0rm/gulp-postcss.git","type":"git"},"_npmVersion":"2.0.0","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^4.1.0","gulp-util":"^3.0.4","vinyl-sourcemaps-apply":"^0.1.4"},"devDependencies":{"mocha":"^2.2.1","es6-promise":"^2.0.1","gulp-sourcemaps":"^1.5.1"}},"5.0.1":{"name":"gulp-postcss","version":"5.0.1","keywords":["gulpplugin","postcss","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@5.0.1","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/w0rm/gulp-postcss","bugs":{"url":"https://github.com/w0rm/gulp-postcss/issues"},"dist":{"shasum":"63b1191b6bcacec42da0bc670605a598e704545c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-5.0.1.tgz","integrity":"sha512-p3G/oT5RorY2f/s2kOpKupA14dtldzbiKUW/bQeerWG4auj6KoPYWKV5hCMqi3B7nPiyyH33esLftnbSvI1t3w==","signatures":[{"sig":"MEUCIQC02WNBLFe/oHt1NrFNl9cFkJY9yGRtxaMCZGrOwHdrwAIgVs/STXRI5BdwVhow0EgVbYO8JMlSCOSWy7IIP5xgt20=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"63b1191b6bcacec42da0bc670605a598e704545c","gitHead":"d2d956b605b84121d0a60b32cf1a61b74161d85e","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/w0rm/gulp-postcss.git","type":"git"},"_npmVersion":"2.0.0","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^4.1.0","gulp-util":"^3.0.4","vinyl-sourcemaps-apply":"^0.1.4"},"devDependencies":{"mocha":"^2.2.1","es6-promise":"^2.0.1","gulp-sourcemaps":"^1.5.1"}},"5.1.0":{"name":"gulp-postcss","version":"5.1.0","keywords":["gulpplugin","postcss","postcssrunner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@5.1.0","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/w0rm/gulp-postcss","bugs":{"url":"https://github.com/w0rm/gulp-postcss/issues"},"dist":{"shasum":"07c7f95269bb391ee0d40645a9ef7ef280d12da5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-5.1.0.tgz","integrity":"sha512-MnYih1Yni1M2RMc+RbKXwv7+809DDgXU4y8njS8Mgex3gasFw+uSCGC/MnjCg7psPDkFb/bc4vplJM+BHjCAbg==","signatures":[{"sig":"MEYCIQCyH+qRWC7bSjP3wTbDpEiQ1sl93JFpn+3jodnp0QCRnAIhALUTRfkf9aFpjV10/gjAFHwAfBOQDScHvK051QlTYNeF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"07c7f95269bb391ee0d40645a9ef7ef280d12da5","gitHead":"5e4f20eba3e1b86330e3be543801f0ecb0478591","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/w0rm/gulp-postcss.git","type":"git"},"_npmVersion":"2.0.0","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^4.1.0","gulp-util":"^3.0.4","vinyl-sourcemaps-apply":"^0.1.4"},"devDependencies":{"mocha":"^2.2.1","sinon":"^1.14.1","proxyquire":"^1.4.0","es6-promise":"^2.0.1","gulp-sourcemaps":"^1.5.1"}},"5.1.1":{"name":"gulp-postcss","version":"5.1.1","keywords":["gulpplugin","postcss","postcssrunner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@5.1.1","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/w0rm/gulp-postcss","bugs":{"url":"https://github.com/w0rm/gulp-postcss/issues"},"dist":{"shasum":"3f2b016eec138a1cf0b68924a46e320231fd1c40","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-5.1.1.tgz","integrity":"sha512-NwP7FGHZOqU+Jkhx9O3xH3uAr5OjZAIhShrUm8lIx0km0vTozy3TrRZKeeN5YaYoJNHQmU/ivlOkq80CIRzZmg==","signatures":[{"sig":"MEYCIQD/AGz+RxvZbp7bF4JQO/PBniCESbqcuTKe5wUAxCxCMgIhAKjVJ+xlM9Ox/HFqBjlS5VIGNDN5PLppGGo5HWnfAKtF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3f2b016eec138a1cf0b68924a46e320231fd1c40","gitHead":"1245750bfcd800b6d913224b2ccfa51725da63aa","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/w0rm/gulp-postcss.git","type":"git"},"_npmVersion":"2.0.0","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^4.1.0","gulp-util":"^3.0.4","vinyl-sourcemaps-apply":"^0.1.4"},"devDependencies":{"mocha":"^2.2.1","sinon":"^1.14.1","proxyquire":"^1.4.0","es6-promise":"^2.0.1","gulp-sourcemaps":"^1.5.1"}},"5.1.2":{"name":"gulp-postcss","version":"5.1.2","keywords":["gulpplugin","postcss","postcssrunner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@5.1.2","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"79d0c475c879714c64932f931a877e0b506cd8a3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-5.1.2.tgz","integrity":"sha512-esvLCcJQ3KGB1NkFFEQPeq2u5GMm+5aiL2dmprmzAkEUKOg2s+TUJs0YlPFhjXNQmWhTrItNo/WdlYwmQMZEAA==","signatures":[{"sig":"MEUCIQCIogfAURcSADJeUXuRTG9R57GqZilpj2yDmJbM3jwJVAIgZEt6FWAOXg2jwSOwWh7LF6t5EGvOLKRlTqVma4vX5QY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"79d0c475c879714c64932f931a877e0b506cd8a3","gitHead":"efe830f6360a7efa0a45da7b5950fe232ed55ab3","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"2.0.0","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^4.1.0","gulp-util":"^3.0.4","vinyl-sourcemaps-apply":"^0.1.4"},"devDependencies":{"mocha":"^2.2.1","sinon":"^1.14.1","proxyquire":"^1.4.0","es6-promise":"^2.0.1","gulp-sourcemaps":"^1.5.1"}},"5.1.3":{"name":"gulp-postcss","version":"5.1.3","keywords":["gulpplugin","postcss","postcssrunner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@5.1.3","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"81f27285c04b8387ddbb4c7960448e9fd32ebdc6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-5.1.3.tgz","integrity":"sha512-mhObHBQy0uomYTKCLdpLqlpB5wACubXcbfktfCBKSBg34KWMZMZoxXHDB67shyufjnINV15pTspumH9vVdPQDg==","signatures":[{"sig":"MEYCIQCf+nWbrZyrFdPCff/b7JTWwJuWb1A9sSUjhN3WDtlBngIhAIE8+O9+NjKxkPChYg/v8ML1IgWwDNArD9EXxYuCaYe4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"81f27285c04b8387ddbb4c7960448e9fd32ebdc6","gitHead":"5c413cb45aeaf3edbebe26e63045ed84231a0db4","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"2.0.0","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^4.1.0","gulp-util":"^3.0.4","vinyl-sourcemaps-apply":"^0.1.4"},"devDependencies":{"mocha":"^2.2.1","sinon":"^1.14.1","proxyquire":"^1.4.0","es6-promise":"^2.0.1","gulp-sourcemaps":"^1.5.1"}},"5.1.4":{"name":"gulp-postcss","version":"5.1.4","keywords":["gulpplugin","postcss","postcssrunner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@5.1.4","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"56ab219e3f41987728cea18ee4c5319b8a0d3a60","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-5.1.4.tgz","integrity":"sha512-JzD0w/Uz05sqC8Dtcx+1gklFwxxO6dt7hb65Bx6G+FKfRynLvpL2SAMj9/BPSs9N74fJ1LD5CCnWdfbp3HwK4w==","signatures":[{"sig":"MEUCIDnC685nF+UHlNMfG0tgB7cFYn6B8T1/zsy/I3zB+RDkAiEA91Qtji9D25RFQ2MLJedYOys9BwurizgjAez9QwYf/3Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"56ab219e3f41987728cea18ee4c5319b8a0d3a60","gitHead":"e133488821bcec46651551ae641b2cc106ce561f","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"2.0.0","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^4.1.8","gulp-util":"^3.0.4","vinyl-sourcemaps-apply":"^0.1.4"},"devDependencies":{"mocha":"^2.2.1","sinon":"^1.14.1","proxyquire":"^1.4.0","es6-promise":"^2.0.1","gulp-sourcemaps":"^1.5.1"}},"5.1.5":{"name":"gulp-postcss","version":"5.1.5","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@5.1.5","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"b4c8e2220331ee5d0312fbbf8e164cf149c09480","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-5.1.5.tgz","integrity":"sha512-uFm0FRMmBqU6+qQ5K/gk/QFcL9/UZJ3R8i2SVRHmvd9cek5IkNr2a3SFrxTxlOS+5kGuucbTT+LvajuLsEB62w==","signatures":[{"sig":"MEUCIAPRmO4UQBrNcxV49W2Znin1HgA/yj5B4zDsCns5nQ6wAiEA4xq9ciF9VG4GRBhE7YRlbxXrsqZ43D7mw8GEvau7/fI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b4c8e2220331ee5d0312fbbf8e164cf149c09480","gitHead":"95a20dbf8e09b92b36ea9cba98a0b65d2ab7e7e5","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"2.0.0","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^4.1.8","gulp-util":"^3.0.4","vinyl-sourcemaps-apply":"^0.1.4"},"devDependencies":{"mocha":"^2.2.1","sinon":"^1.14.1","proxyquire":"^1.4.0","es6-promise":"^2.0.1","gulp-sourcemaps":"^1.5.1"}},"5.1.6":{"name":"gulp-postcss","version":"5.1.6","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@5.1.6","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"12b469f3242781eb86d14e6703365c5e35fc8ace","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-5.1.6.tgz","integrity":"sha512-lo+D6zyoyEXrAboxRisYyBMAwUsshaOIfHPgUw+Je9ZWcwhrv/BPieT/H8HyJYzPUinn0IMIbCcxludLMzkeAA==","signatures":[{"sig":"MEYCIQDp3Uhr422T0AeZTZQvAkCvgfiojVS+hEtPsx+wKBJTvwIhALNDhn8IfXQXrNBrFsF6CJdfzuTB1SkyiKdICwVAHCvx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"12b469f3242781eb86d14e6703365c5e35fc8ace","gitHead":"78a99456cc491b48aa161e52257d5580b7b77f59","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"2.0.0","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^4.1.8","gulp-util":"^3.0.4","vinyl-sourcemaps-apply":"^0.1.4"},"devDependencies":{"mocha":"^2.2.1","sinon":"^1.14.1","proxyquire":"^1.4.0","es6-promise":"^2.0.1","gulp-sourcemaps":"^1.5.1"}},"5.1.7":{"name":"gulp-postcss","version":"5.1.7","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@5.1.7","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"e68b8ccc281a1045c0f4b4949c793f4eba9589f4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-5.1.7.tgz","integrity":"sha512-HMuZ9OXznmVlMe+2Dlo3v4Fkth7WX5IIzv6P+auyNc/HJrjmjzkNTB80GkkeHm6xWUhOdj45WuV5K3tH0k+szQ==","signatures":[{"sig":"MEQCIBKt7yqc3fImeKQsR3m+zLJwT+sAy0k5DhrsWzU0eWMnAiBCmONP/NNgR9w64OB0uHbaf+Us4P2x9stBTAwOXeVwyQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e68b8ccc281a1045c0f4b4949c793f4eba9589f4","gitHead":"9a93d53318826f575a42bdc69ec35f9c4fcad239","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"2.0.0","description":"PostCSS gulp plugin","directories":{},"dependencies":{"postcss":"^4.1.11","gulp-util":"^3.0.4","vinyl-sourcemaps-apply":"^0.1.4"},"devDependencies":{"mocha":"^2.2.5","sinon":"^1.14.1","proxyquire":"^1.5.0","es6-promise":"^2.0.1","gulp-sourcemaps":"^1.5.1"}},"5.1.8":{"name":"gulp-postcss","version":"5.1.8","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@5.1.8","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"1b5969c97b520880652d8c526d2f181eb090c508","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-5.1.8.tgz","integrity":"sha512-zUW2e3cNHihgZmEde3O7hlLNLpiLLOAFnd7DNXEIhemN4VCKTsmuyq1nFp0Fe0oz4/bYfc8hyyFwLWZa3kqZmA==","signatures":[{"sig":"MEYCIQDktrGZgbmiKWEaOHgqc9SVxy5A6sOtU0FxvyqDUnpFZQIhAIaBwFnLj8lMmEO9ef9dl8aj7p0rIdMsrnMTUXzrDh6f","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1b5969c97b520880652d8c526d2f181eb090c508","gitHead":"1f9f2ef8b5c0359828ba4e54ceffa8faaea5c2e8","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"2.10.1","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"0.12.2","dependencies":{"postcss":"^4.1.11","gulp-util":"^3.0.4","vinyl-sourcemaps-apply":"^0.1.4"},"devDependencies":{"mocha":"^2.2.5","sinon":"^1.14.1","proxyquire":"^1.5.0","es6-promise":"^2.0.1","gulp-sourcemaps":"^1.5.1"}},"5.1.9":{"name":"gulp-postcss","version":"5.1.9","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@5.1.9","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"e7689d17880f630f43cf5ecaaedd9d1bc68cb352","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-5.1.9.tgz","integrity":"sha512-d4OEQCt5wKvVHd/E63mqvi7G3WjYyFRjiqXk562VOf9GfOLlaFtnu4njH0kk8NTyDbwReT8AKWCmzryDYYpLMQ==","signatures":[{"sig":"MEUCIQDwk6zpU4hvscKjYYTf5viGqYMXMnPUaIGBtG/ZtTxhAwIgZkjAAv5TWKJp/9iEaMI3AdXqHUS30v76ia7xtCrg/B0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e7689d17880f630f43cf5ecaaedd9d1bc68cb352","gitHead":"5f659e932c3db0020f7cc62f045836efd47d7cbd","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"2.10.1","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"0.12.2","dependencies":{"postcss":"^4.1.11","gulp-util":"^3.0.4","vinyl-sourcemaps-apply":"^0.1.4"},"devDependencies":{"mocha":"^2.2.5","sinon":"^1.14.1","proxyquire":"^1.5.0","es6-promise":"^2.0.1","gulp-sourcemaps":"^1.5.1"}},"5.1.10":{"name":"gulp-postcss","version":"5.1.10","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@5.1.10","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"789bb488759df928506221749e99cc6a9c274601","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-5.1.10.tgz","integrity":"sha512-d7ngQMpMUo6mcPkFhxFU1Bar0vuUUqJWjYoJaLRgi4fsq/RkmX51WthzPWA+QDYflBPfJ2PsfLG058gniUyWZQ==","signatures":[{"sig":"MEUCICIqVNIsmhgayjVPkmgljIMw01muPANGR0TXFHvzFFgKAiEAzyXKgVkQAz2fj4vOicNz8iC0x1gDGDhE1pOs+qJRSY8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"789bb488759df928506221749e99cc6a9c274601","gitHead":"749d6b77e73ce93fb581064328980f692329602a","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"2.10.1","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"0.12.2","dependencies":{"postcss":"^4.1.11","gulp-util":"^3.0.4","vinyl-sourcemaps-apply":"^0.1.4"},"devDependencies":{"mocha":"^2.2.5","sinon":"^1.14.1","proxyquire":"^1.5.0","es6-promise":"^2.0.1","gulp-sourcemaps":"^1.5.1"}},"6.0.0":{"name":"gulp-postcss","version":"6.0.0","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@6.0.0","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"064b380b08e6f7199607e0e194b62b99342d46de","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-6.0.0.tgz","integrity":"sha512-JXQ/Pup7oSLqzbAl2fYYxw9jvCX+HLb5DBHqenRTM0PniiZVy9bNlIuLtWUIrfvbJBgOmE/9UNAkTI3195Ax7w==","signatures":[{"sig":"MEQCIGEWkBzMnRFyEKeTe7ifpmC6hOOSAW+p3fvi0gDeoXoXAiB/EHtvkUCzfTP1nz27YuTRyRigjGmRszxXwXeJU9XEIQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"064b380b08e6f7199607e0e194b62b99342d46de","gitHead":"75d52ccbb6f4ba8fc498dbd06520ed9b5c71ee38","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"2.5.1","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"0.12.0","dependencies":{"postcss":"^5.0.0","gulp-util":"^3.0.4","vinyl-sourcemaps-apply":"^0.1.4"},"devDependencies":{"mocha":"^2.2.5","sinon":"^1.14.1","proxyquire":"^1.5.0","es6-promise":"^2.0.1","gulp-sourcemaps":"^1.5.1"}},"6.0.1":{"name":"gulp-postcss","version":"6.0.1","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@6.0.1","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"df305ee2ee09d63e181621cfaf9713c902fa6767","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-6.0.1.tgz","integrity":"sha512-51P877aMOMoxXjbqJ7AYCcu3lu29xmf1e/PYmIlEaO2uHOEafAVsalcOk7fhwfyznRUs7O1ZX46MnRJYs4CDxQ==","signatures":[{"sig":"MEUCICgXL5gDTa89B+2lnOS71qvNYF4VDNg5dTDcc7eFUQUVAiEA4Qv2AlWyUiOjhkuMxCqRr2NgXSS88/JdbP+fxtZCzGI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"df305ee2ee09d63e181621cfaf9713c902fa6767","gitHead":"bbf0ef552a618db3d064b3c154c431c1cff458d5","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"2.10.1","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"0.12.2","dependencies":{"postcss":"^5.0.0","gulp-util":"^3.0.4","vinyl-sourcemaps-apply":"^0.2.0"},"devDependencies":{"mocha":"^2.2.5","sinon":"^1.14.1","proxyquire":"^1.5.0","es6-promise":"^2.0.1","gulp-sourcemaps":"^1.5.1"}},"6.1.0":{"name":"gulp-postcss","version":"6.1.0","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@6.1.0","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"6639d9289af3035a88b01e9fa7646f85c24a14c6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-6.1.0.tgz","integrity":"sha512-brwtNlLt9fdQcS44SzaG+MhJeidWAuq9ZTnsNc1UkYg5oogaa9CckeqGOZE6XWCfPpI7F9qXgh2CNy8tu5pl6w==","signatures":[{"sig":"MEQCICwoP4zAUoElYDUDwHdEhHfRo0ltgbBuxYm3F6Mk4JqCAiBTdhwS5+P+U/gvmI7tQRmWQrBtuMVgSqducBykeBZ7YQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6639d9289af3035a88b01e9fa7646f85c24a14c6","gitHead":"3031c1ed5a248908cdc2ba7a233e120c31c33173","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"2.14.7","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"4.2.1","dependencies":{"postcss":"^5.0.14","gulp-util":"^3.0.7","vinyl-sourcemaps-apply":"^0.2.0"},"devDependencies":{"mocha":"^2.2.5","sinon":"^1.17.3","proxyquire":"^1.7.4","es6-promise":"^3.0.2","gulp-sourcemaps":"^1.5.1"},"_npmOperationalInternal":{"tmp":"tmp/gulp-postcss-6.1.0.tgz_1454758454050_0.26832387782633305","host":"packages-5-east.internal.npmjs.com"}},"6.1.1":{"name":"gulp-postcss","version":"6.1.1","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@6.1.1","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"874d44e9ff6cadddd57ce3c955202e572d269015","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-6.1.1.tgz","integrity":"sha512-v6mwRnJbfpHqyBCqbWT+4Bn7bG1oMxXL4vhPVevkvKaQIbT9/U6RuoXsGIlHSr2/jS3krnYupkys/UISpYdgSg==","signatures":[{"sig":"MEYCIQC9SygBwrz7yZolHarPmaWkD7d8hxsVklZ9Tk9FW2zaHAIhAMdZfcZ9VHcUOOjM+h0+mu++Nl/h9mJ9HRoXZlRanzEn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"874d44e9ff6cadddd57ce3c955202e572d269015","gitHead":"52e6ad9567b80e028b429939629da9291e4315d5","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"3.6.0","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"5.6.0","dependencies":{"postcss":"^5.0.14","gulp-util":"^3.0.7","vinyl-sourcemaps-apply":"^0.2.0"},"devDependencies":{"mocha":"^2.2.5","sinon":"^1.17.3","proxyquire":"^1.7.4","es6-promise":"^3.0.2","gulp-sourcemaps":"^1.5.1"},"_npmOperationalInternal":{"tmp":"tmp/gulp-postcss-6.1.1.tgz_1462179589506_0.46972976182587445","host":"packages-16-east.internal.npmjs.com"}},"6.2.0":{"name":"gulp-postcss","version":"6.2.0","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@6.2.0","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"be0b7c3ab25aaa9a6ddef3fc65edf52d2be99640","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-6.2.0.tgz","integrity":"sha512-8H6GOyz+op/SbVJfrqTzmq/W+0Bcrxl4XzGer71Tt4fDP0nqnEgAmShCfXsophdHCbvi8wlLNNIbB+s2iMXhww==","signatures":[{"sig":"MEQCIFwI/L9XZYBmM/UhvxrpoNkMg/cUGhR9lXD2mrlGqmnmAiBDQv3cw4limpxehTtiSSyUMu2p9168S+Jmg++BK//wlA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"be0b7c3ab25aaa9a6ddef3fc65edf52d2be99640","gitHead":"2cdf9a8857eb6487422c6f3875b2449b81609996","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"3.6.0","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"5.6.0","dependencies":{"postcss":"^5.2.0","gulp-util":"^3.0.7","vinyl-sourcemaps-apply":"^0.2.0"},"devDependencies":{"mocha":"^2.2.5","sinon":"^1.17.3","proxyquire":"^1.7.4","es6-promise":"^3.0.2","gulp-sourcemaps":"^1.5.1"},"_npmOperationalInternal":{"tmp":"tmp/gulp-postcss-6.2.0.tgz_1473359525942_0.15197258512489498","host":"packages-16-east.internal.npmjs.com"}},"6.3.0":{"name":"gulp-postcss","version":"6.3.0","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@6.3.0","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"33ee9723e59c302f33d707fc4b7398b10f032bff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-6.3.0.tgz","integrity":"sha512-XHMQRgD7rfBq2MBtygVPKq+PGcikfq0ekKMwsUvMTK42XmteiDAvkTW+HJ34Znf8DIZzsv3EPDMWTdQw3Gy/MA==","signatures":[{"sig":"MEUCIQDiyv9RMu0vBQpkHlFJxz/Da31WCLPvV6eJOBCRiVK4HgIgKLtc6DW0YiEhKUr4b+ap4tWlKBqfnP30p5cFvA+Pgzc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"33ee9723e59c302f33d707fc4b7398b10f032bff","gitHead":"604a2641b687d5fa0cf472c516e3b0f24a08a82a","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"4.0.5","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"7.4.0","dependencies":{"postcss":"^5.2.10","gulp-util":"^3.0.8","postcss-load-config":"^1.1.0","vinyl-sourcemaps-apply":"^0.2.1"},"devDependencies":{"mocha":"^3.2.0","sinon":"^1.17.3","proxyquire":"^1.7.4","gulp-sourcemaps":"^1.11.0"},"_npmOperationalInternal":{"tmp":"tmp/gulp-postcss-6.3.0.tgz_1484500278456_0.8761730303522199","host":"packages-18-east.internal.npmjs.com"}},"6.4.0":{"name":"gulp-postcss","version":"6.4.0","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@6.4.0","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"78a32e3c87aa6cdcec5ae1c905e196d478e8c5d5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-6.4.0.tgz","integrity":"sha512-ZIk8D9Ysk1eX9W6CgrrLZGAYI7UJlOLT74kfys0FEABQEyiXGemfR1N1A0GsPuJJIufLP1NkWiAbrSAGvHNJvA==","signatures":[{"sig":"MEYCIQDqO/hM7o72ibeUQEpgVsLxqp8XrGicZU56Gvr7GnmGmAIhAOeN18U/E6KyzMoQ+dXgMmfapaIjxxhII8fWUfnFJTgC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"78a32e3c87aa6cdcec5ae1c905e196d478e8c5d5","gitHead":"0ab5177c292acfd9150f484c68ff4931edcb61d7","scripts":{"test":"mocha test.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"4.0.5","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"7.4.0","dependencies":{"postcss":"^5.2.12","gulp-util":"^3.0.8","postcss-load-config":"^1.2.0","vinyl-sourcemaps-apply":"^0.2.1"},"devDependencies":{"mocha":"^3.2.0","sinon":"^1.17.3","proxyquire":"^1.7.4","gulp-sourcemaps":"^1.11.0"},"_npmOperationalInternal":{"tmp":"tmp/gulp-postcss-6.4.0.tgz_1490035498294_0.13477004319429398","host":"packages-12-west.internal.npmjs.com"}},"7.0.0":{"name":"gulp-postcss","version":"7.0.0","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@7.0.0","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"dist":{"shasum":"cfb62a19fa947f8be67ce9ecae89ceb959f0cf93","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-7.0.0.tgz","integrity":"sha512-8k80qDpxonX3IvHzUCT8/6VViNXwO377wJk7wZ1lgOP/FHWC+xPh4xPQKCRHG7KvSlCCxARnGdCdWyycGjn1wQ==","signatures":[{"sig":"MEUCIQCMyIhuu+uYFRRo1G5dNk5vuhWsRSGyE5nDAdpd2aifhQIgSRYKnjFHps9RKZN0E4I/5n0IvZH/jNz5tF727ohQPps=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":[],"_shasum":"cfb62a19fa947f8be67ce9ecae89ceb959f0cf93","gitHead":"2cb352f9b474ca3287ebab4fc87b8358c193efb4","scripts":{"test":"mocha test.js","pretest":"eslint index.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"3.6.0","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"5.6.0","dependencies":{"postcss":"^6.0.0","gulp-util":"^3.0.8","postcss-load-config":"^1.2.0","vinyl-sourcemaps-apply":"^0.2.1"},"devDependencies":{"mocha":"^3.3.0","sinon":"^2.2.0","eslint":"^3.19.0","proxyquire":"^1.7.11","gulp-sourcemaps":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/gulp-postcss-7.0.0.tgz_1494078356589_0.17247563996352255","host":"packages-12-west.internal.npmjs.com"}},"7.0.1":{"name":"gulp-postcss","version":"7.0.1","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@7.0.1","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"nyc":{"all":true,"cache":true,"lines":100,"branches":100,"reporter":["lcov","text"],"functions":100,"statements":100,"check-coverage":true},"dist":{"shasum":"3f1c36db1197140c399c252ddff339129638e395","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-7.0.1.tgz","integrity":"sha512-JEB1NsfuNg9vtpkbonnKHhYxdDEfLZxOXGJey+T4eh5EwCjtvBJQLosocDOXp/CAxyMiH3cOIsamOW8uEtZ5Gw==","signatures":[{"sig":"MEQCICjzt4GQatHj+IWx+gnwpua8bKutnsB/hEEvs/fnHicXAiBhgYNEXmWmphogCWbkYE3ecFlKAT4uV6fAVR2Sz+kkcw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3f1c36db1197140c399c252ddff339129638e395","gitHead":"9166fdb5bb0281c3ba6fda740586de21485c4776","scripts":{"test":"nyc mocha test.js","pretest":"eslint *.js","coveralls":"coveralls < coverage/lcov.info"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"4.0.5","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"7.4.0","dependencies":{"postcss":"^6.0.0","fancy-log":"^1.3.2","plugin-error":"^0.1.2","postcss-load-config":"^1.2.0","vinyl-sourcemaps-apply":"^0.2.1"},"devDependencies":{"nyc":"^11.0.3","mocha":"^3.4.2","sinon":"^2.3.5","vinyl":"^2.1.0","eslint":"^4.1.1","coveralls":"^2.13.1","proxyquire":"^1.8.0","gulp-sourcemaps":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/gulp-postcss-7.0.1.tgz_1514715595131_0.8705225186422467","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"gulp-postcss","version":"8.0.0","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@8.0.0","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"nyc":{"all":true,"cache":true,"lines":100,"branches":100,"reporter":["lcov","text"],"functions":100,"statements":100,"check-coverage":true},"dist":{"shasum":"8d3772cd4d27bca55ec8cb4c8e576e3bde4dc550","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-8.0.0.tgz","fileCount":4,"integrity":"sha512-Wtl6vH7a+8IS/fU5W9IbOpcaLqKxd5L1DUOzaPmlnCbX1CrG0aWdwVnC3Spn8th0m8D59YbysV5zPUe1n/GJYg==","signatures":[{"sig":"MEYCIQCAnZeLav6PmrlYH/BdFpYov/z2XsUW035qS/8svROEywIhAO2F/kpC9rSnmfUPTZeUKLkp1t76/Ui/kDcP5wz73ED/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12961,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaBzNCRA9TVsSAnZWagAAXAAP/Annkl5lzJU6+9bzpKGl\nuEwEELfHhIcV9aBKetDFHvzAY4bKbGROPtYXwDasDpbAs93axro5wIQMcyL/\nvhsLLfrTyClT6LAVJ8wh1e4JVDc4JyVbSY7TetfJsKN8bb0+QuG08skJI1A8\nwAhX/JGc8579/USU1pGI6F/sey1XKFzFyuxYEtWOI5tnhpisYQEWl65FMZNJ\n3UTsr1TgIctmEYpMQSQDyVkaULvz/y4ZBx0+LWuS/qC7Q3DnRRi4hFk65q4F\nswbUgb8PbU45m3JR1br7W2OE035egppdK/B4zJgOLbmX97rkCtfvIt2yRjUr\ndRbwkFZKyKQI8wuZUpSgNiLwqt3VEjluDcB7WF59Vs9+u9UP7iuqCkRQ1H4p\nODCqt5q6UgwOjz3VfTmPprrXjfUmSJqZEum9J5zQfRDR0s3b4JUs/mldZUyN\nJVeYkVOeIVJ0Z+bmkObJMSMVgLwm2CVzBvfK10Nj7JAV0z2/mYaYFzumJikP\n4oifgYNHlxrU4TteS4bGED4Lmt9yxooap7+/dFS3Ogagm/zogYSTGZ73Tamz\nfgvzwJ4B5LVGQc69dEk6Y0ePdHb2GOcfDcwMNX8VLKDmfTaJcEx3YV03S6p0\nB6s4Nqafgj83dv7HqBt1FOTPcO+dSV586RhKpzdwcB4VowOgib+TydiUgNiu\nYNfG\r\n=ZJyD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"d1197f8f951adfde2c880ba275be4fd0608652e5","scripts":{"test":"nyc mocha test.js","pretest":"eslint *.js","coveralls":"coveralls < coverage/lcov.info"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"5.6.0","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"8.9.4","dependencies":{"postcss":"^7.0.2","fancy-log":"^1.3.2","plugin-error":"^1.0.1","postcss-load-config":"^2.0.0","vinyl-sourcemaps-apply":"^0.2.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^12.0.2","mocha":"^5.2.0","sinon":"^6.1.4","vinyl":"^2.2.0","eslint":"^5.3.0","coveralls":"^3.0.2","proxyquire":"^2.0.1","gulp-sourcemaps":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/gulp-postcss_8.0.0_1533549772264_0.12617627347104654","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"gulp-postcss","version":"9.0.0","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@9.0.0","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"nyc":{"all":true,"cache":true,"lines":100,"branches":100,"reporter":["lcov","text"],"functions":100,"statements":100,"check-coverage":true},"dist":{"shasum":"2ade18809ab475dae743a88bd6501af0b04ee54e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-9.0.0.tgz","fileCount":4,"integrity":"sha512-5mSQ9CK8salSagrXgrVyILfEMy6I5rUGPRiR9rVjgJV9m/rwdZYUhekMr+XxDlApfc5ZdEJ8gXNZrU/TsgT5dQ==","signatures":[{"sig":"MEQCIDtrg37hM92npGDLKGXV7P6Bppxj7Zo3ilT1xc+0n1xMAiAtuoqz5KBOdAiHMhSgm5Gtc7+lOkJNzX4mS8d/JoWkpw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13871,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfa4/4CRA9TVsSAnZWagAAtnkP/2ZbF6LeE4mE7dalnZS3\n+MbQKXYo31pj71B0Sme+aAdt89okeMJUMufK5WOS0sS3fiPibia00+dz9aeE\n+QFVUHFpW8O6KPDspOiEC7/ylQsKfF7NyQr16nnJsm8QMpC3HC+e3HibyXIT\nGf12hmwtNDgp7HZoC1ig+Bk+wFdq7N7gGGmg6OaH5E05RrEtGtR4TG7Vqo3p\nuf9u4/Rq9yIPuFXr05HMN5xSbhRgtXSGhyjjG0g9HAwgQMOR3bN5lF+BHQ76\nmdRgNNv5Ih/0Y8MtClEuS+Hlxf+4E42mAFMY0oL0+4cFgYARWDowXqRnj69N\n3OlCxJfJ5cVyYROT73KYpOapTcFBFRm/7MgOrhz4OUl6QsbAezaLhMK1I27A\nmBGalrJy0Js7Cr9HcCQPEDrFqwsDLpGs/BvDdpCj6vKYVwfefn4sdnhi1ZjI\nBqOeRX4xl0BPEcwd4820vij+YV7fu2xxvTEGmDpVew+0Nl9kD/MOQCi0Ag+Y\nkwovETS5z93ILOBB2arcSxCjF9eRbKcdlITwd89WXBDK+UU54Fy7MZFuflMK\nRPJYNUXWgAHR5G1uSdXJWKPHldBOPUszVouaus5zDUifd6NCxsrJA9fl0H9N\nRM+ZkKN8J6upF8DWoevsJgMpOAUzh2jMvUoiRIEdSNxFo3+nlWQrjuMT+vJ7\n+WwE\r\n=VCbn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^10 || ^12 || >=14"},"gitHead":"94170d67c106d3f7260d55ca5a5a8669c061b0b6","scripts":{"test":"nyc mocha test.js","pretest":"eslint *.js","coveralls":"coveralls < coverage/lcov.info"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"6.14.5","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"14.5.0","dependencies":{"fancy-log":"^1.3.3","plugin-error":"^1.0.1","postcss-load-config":"^2.1.1","vinyl-sourcemaps-apply":"^0.2.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^12.0.2","mocha":"^5.2.0","sinon":"^6.3.5","vinyl":"^2.2.0","eslint":"^5.16.0","postcss":"^8.0.0","coveralls":"^3.0.3","proxyquire":"^2.1.0","gulp-sourcemaps":"^2.6.5"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/gulp-postcss_9.0.0_1600884728415_0.6869762087144331","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"gulp-postcss","version":"9.0.1","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@9.0.1","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"nyc":{"all":true,"cache":true,"lines":100,"branches":100,"reporter":["lcov","text"],"functions":100,"statements":100,"check-coverage":true},"dist":{"shasum":"d43caa2f2ce1018f889f7c1296faf82e9928b66f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-9.0.1.tgz","fileCount":5,"integrity":"sha512-9QUHam5JyXwGUxaaMvoFQVT44tohpEFpM8xBdPfdwTYGM0AItS1iTQz0MpsF8Jroh7GF5Jt2GVPaYgvy8qD2Fw==","signatures":[{"sig":"MEUCIDg2iSmLlQMBKZF0aDDB8e0NsGl8Bzmr5RPYKx87M84bAiEAsHvA9CFL+JQKAg2zNGFdSw8JTSM3aevI1L4oPm5bnNA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14327,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhK3PkCRA9TVsSAnZWagAAzi4P/iRiLWxjw1tgvzgyHauq\nBaz/Nrgpt0/Ej1ug+5/PAlZ1lKivTla8VbvwOhlY+zgi3rW1Dh83uQQAPMem\n3c2ann9QBpHUu1EEHR77/KK6C56SD6ilX3uMMh4kNjiFTqbQrZydUzUb5duk\nMl0Xfy0OMfNtuvQkHkEWrfDtpvnqdSlsgteOW8iO4AZcjyDzKR6gekSMbMBp\n9qQFXZR4Rt/KeRBL2CjDHIXIpODHT0g9aNrPKc67E7LrpXTdKbTP6twVQ97e\ny8/yLGRPnsZj8RM3huwyM8bNzUQAvEihICRccjzME7/KviLoGlGGAxiSUElE\nL5e6cnpQPvfW7EFB2ISTbfe/qihRMyfWcx3iu77zwE/pJ+qNJ935LoHaeFC/\nzMkCAqpiYBtl0xsulAe/trQN3+RmjvcNxNCmfj2eNSHLkP6dS7SDgffqbu81\n5U0ctxwYWcgDuYGbkiIim0qWs88fFM4Ji/nb+jFPuPRR4aZZQf2LOLPDvXnL\ncCbtMPr8/at7p4CjDiCyV2oyGSrqBw4bDNUMkIJpCsf3bxEvJgNsMkPpdQC1\n/qFV//UL0HImkfYVjxtty9X1dzJ/Q9h+3ehjRvacLKWS3kQBZpngN0IoqfO+\n6h8CNoS8UCPg17scpLI/tIwSZvmtHsYouIJHwgDe0VzzwPkgFpDcM8LfGOJ+\nix6Z\r\n=L5b2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^10 || ^12 || >=14"},"gitHead":"70dfabe8ab65c4e2a7a5fca6f25156b1076b40c7","scripts":{"test":"nyc mocha test.js","pretest":"eslint *.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"6.14.13","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"14.17.0","dependencies":{"fancy-log":"^1.3.3","plugin-error":"^1.0.1","postcss-load-config":"^3.0.0","vinyl-sourcemaps-apply":"^0.2.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^12.0.2","mocha":"^5.2.0","sinon":"^6.3.5","vinyl":"^2.2.0","eslint":"^5.16.0","postcss":"^8.0.0","proxyquire":"^2.1.0","gulp-sourcemaps":"^2.6.5"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/gulp-postcss_9.0.1_1630237668621_0.04055387027658064","host":"s3://npm-registry-packages"}},"9.1.0":{"name":"gulp-postcss","version":"9.1.0","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@9.1.0","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"nyc":{"all":true,"cache":true,"lines":100,"branches":100,"reporter":["lcov","text"],"functions":100,"statements":100,"check-coverage":true},"dist":{"shasum":"0d317134d40d9565f265bd32c7f71605a54cadd8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-9.1.0.tgz","fileCount":5,"integrity":"sha512-a843mcKPApfeI987uqQbc8l50xXeWIXBsiVvYxtCI5XtVAMzTi/HnU2qzQpGwkB/PAOfsLV8OsqDv2iJZ9qvdw==","signatures":[{"sig":"MEQCIDNS1RaRp95c8dbS4qh0aom66tQJSznB3nTr6nSi7VP+AiAHcqawUAXiefnZJYVr7AzQSvCg04I5nnZCKGhdLDb/+Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15179},"main":"index.js","engines":{"node":">=18"},"gitHead":"77ed79a333bb5e88023de311bcbd3d75b4a67f09","scripts":{"test":"nyc mocha test.js","pretest":"eslint *.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"deprecated":"Republished as 10.0.0 to follow the semver spec","repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"10.2.4","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"21.5.0","dependencies":{"fancy-log":"^2.0.0","plugin-error":"^2.0.1","postcss-load-config":"^5.0.0","vinyl-sourcemaps-apply":"^0.2.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^10.2.0","sinon":"^6.3.5","vinyl":"^2.2.0","eslint":"^5.16.0","postcss":"^8.0.0","proxyquire":"^2.1.0","gulp-sourcemaps":"^2.6.5"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/gulp-postcss_9.1.0_1705086191564_0.8906083057480529","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"gulp-postcss","version":"10.0.0","keywords":["gulpplugin","postcss","postcss-runner","css"],"author":{"name":"Andrey Kuzmin","email":"unsoundscapes@gmail.com"},"license":"MIT","_id":"gulp-postcss@10.0.0","maintainers":[{"name":"anonymous","email":"unsoundscapes@gmail.com"}],"homepage":"https://github.com/postcss/gulp-postcss","bugs":{"url":"https://github.com/postcss/gulp-postcss/issues"},"nyc":{"all":true,"cache":true,"lines":100,"branches":100,"reporter":["lcov","text"],"functions":100,"statements":100,"check-coverage":true},"dist":{"shasum":"a88d7c6602f8a8c94aaa9f28ac3a68def00c7ada","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gulp-postcss/-/gulp-postcss-10.0.0.tgz","fileCount":5,"integrity":"sha512-z1RF2RJEX/BvFsKN11PXai8lRmihZTiHnlJf7Zu8uHaA/Q7Om4IeN8z1NtMAW5OiLwUY02H0DIFl9tHl0CNSgA==","signatures":[{"sig":"MEUCIQDS8dhzhs2Nl+GOIP/dccsxwS5cHKCSPW9dGzZTPppfiQIgNJXdmCXEjkXSKyAZCcHQoEjYBM3EmYOwVFb8M3s5xB4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15308},"main":"index.js","engines":{"node":">=18"},"gitHead":"46533ec1ced0e8db61af609f4d5075ab9396e17b","scripts":{"test":"nyc mocha test.js","pretest":"eslint *.js"},"_npmUser":{"name":"anonymous","email":"unsoundscapes@gmail.com"},"repository":{"url":"git+https://github.com/postcss/gulp-postcss.git","type":"git"},"_npmVersion":"10.2.4","description":"PostCSS gulp plugin","directories":{},"_nodeVersion":"21.5.0","dependencies":{"fancy-log":"^2.0.0","plugin-error":"^2.0.1","postcss-load-config":"^5.0.0","vinyl-sourcemaps-apply":"^0.2.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","mocha":"^10.2.0","sinon":"^6.3.5","vinyl":"^2.2.0","eslint":"^5.16.0","postcss":"^8.0.0","proxyquire":"^2.1.0","gulp-sourcemaps":"^2.6.5"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/gulp-postcss_10.0.0_1707216531303_0.6681786673095029","host":"s3://npm-registry-packages"}}},"name":"gulp-postcss","time":{"created":"2014-08-17T15:28:39.851Z","modified":"2025-10-17T09:30:24.449Z","0.0.1":"2014-08-17T15:28:39.851Z","0.0.2":"2014-08-17T20:20:13.788Z","1.0.0":"2014-08-18T04:39:14.724Z","1.0.1":"2014-08-18T05:01:53.972Z","1.0.2":"2014-08-18T18:56:08.517Z","2.0.0":"2014-09-20T14:03:22.371Z","2.0.1":"2014-11-12T21:19:05.609Z","3.0.0":"2014-11-12T21:33:57.020Z","4.0.0":"2015-01-01T14:15:39.565Z","4.0.1":"2015-01-05T22:15:34.131Z","4.0.2":"2015-01-19T21:54:54.081Z","4.0.3":"2015-01-27T00:48:07.549Z","5.0.0":"2015-04-02T20:43:41.584Z","5.0.1":"2015-04-08T20:18:57.107Z","5.1.0":"2015-04-12T10:19:39.465Z","5.1.1":"2015-04-13T17:59:19.902Z","5.1.2":"2015-04-20T16:55:16.024Z","5.1.3":"2015-04-20T16:58:21.491Z","5.1.4":"2015-05-01T00:30:23.169Z","5.1.5":"2015-05-03T22:07:40.268Z","5.1.6":"2015-05-05T21:10:36.461Z","5.1.7":"2015-05-23T16:32:51.281Z","5.1.8":"2015-05-25T11:19:43.156Z","5.1.9":"2015-06-23T07:11:28.753Z","5.1.10":"2015-07-20T20:17:59.026Z","6.0.0":"2015-08-20T17:55:10.240Z","6.0.1":"2015-10-03T17:51:30.300Z","6.1.0":"2016-02-06T11:34:15.129Z","6.1.1":"2016-05-02T08:59:51.601Z","6.2.0":"2016-09-08T18:32:07.228Z","6.3.0":"2017-01-15T17:11:19.134Z","6.4.0":"2017-03-20T18:45:00.404Z","7.0.0":"2017-05-06T13:45:58.809Z","7.0.1":"2017-12-31T10:19:55.220Z","8.0.0":"2018-08-06T10:02:53.493Z","9.0.0":"2020-09-23T18:12:08.528Z","9.0.1":"2021-08-29T11:47:48.754Z","9.1.0":"2024-01-12T19:03:11.715Z","10.0.0":"2024-02-06T10:48:51.474Z"},"readmeFilename":"README.md","homepage":"https://github.com/postcss/gulp-postcss"}