{"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"ryanzim","email":"opensrc@ryanzim.com"}],"keywords":["cli","postcss","postcss-runner"],"dist-tags":{"latest":"11.0.1"},"_rev":"10","description":"CLI for PostCSS","readme":"[![npm][npm]][npm-url]\n[![node][node]][node-url]\n[![tests][tests]][tests-url]\n[![cover][cover]][cover-url]\n[![chat][chat]][chat-url]\n\n<div align=\"center\">\n  <img width=\"100\" height=\"100\" title=\"CLI\" src=\"https://raw.githubusercontent.com/postcss/postcss-cli/HEAD/logo.svg\">\n  <a href=\"https://github.com/postcss/postcss\">\n    <img width=\"110\" height=\"110\" title=\"PostCSS\" src=\"http://postcss.github.io/postcss/logo.svg\" hspace=\"10\">\n  </a>\n  <h1>PostCSS CLI</h1>\n</div>\n\nPostCSS CLI is a command line interface for [PostCSS](https://postcss.org/)\n\n<h2 align=\"center\">Install</h2>\n\n```bash\nnpm i -D postcss postcss-cli\n```\n\n<h2 align=\"center\">Usage</h2>\n\n```\nUsage:\n  postcss [input.css] [OPTIONS] [-o|--output output.css] [--watch|-w]\n  postcss <input.css>... [OPTIONS] --dir <output-directory> [--watch|-w]\n  postcss <input-directory> [OPTIONS] --dir <output-directory> [--watch|-w]\n  postcss <input-glob-pattern> [OPTIONS] --dir <output-directory> [--watch|-w]\n  postcss <input.css>... [OPTIONS] --replace\n\nBasic options:\n  -o, --output   Output file                                            [string]\n  -d, --dir      Output directory                                       [string]\n  -r, --replace  Replace (overwrite) the input file                    [boolean]\n  -m, --map      Create an external sourcemap\n  --no-map       Disable the default inline sourcemaps\n  -w, --watch    Watch files for changes and recompile as needed       [boolean]\n  --verbose      Be verbose                                            [boolean]\n  --env          A shortcut for setting NODE_ENV                        [string]\n\nOptions for use without a config file:\n  -u, --use      List of postcss plugins to use                          [array]\n  --parser       Custom postcss parser                                  [string]\n  --stringifier  Custom postcss stringifier                             [string]\n  --syntax       Custom postcss syntax                                  [string]\n\nOptions for use with --dir:\n  --ext   Override the output file extension; for use with --dir        [string]\n  --base  Mirror the directory structure relative to this path in the output\n          directory, for use with --dir                                 [string]\n\nAdvanced options:\n  --include-dotfiles  Enable glob to match files/dirs that begin with \".\"\n                                                                       [boolean]\n  --poll              Use polling for file watching. Can optionally pass polling\n                      interval; default 100 ms\n  --config            Set a custom directory to look for a config file  [string]\n\nOptions:\n  --version   Show version number                                      [boolean]\n  -h, --help  Show help                                                [boolean]\n\nExamples:\n  postcss input.css -o output.css                       Basic usage\n  postcss src/**/*.css --base src --dir build           Glob Pattern & output\n  cat input.css | postcss -u autoprefixer > output.css  Piping input & output\n\nIf no input files are passed, it reads from stdin. If neither -o, --dir, or\n--replace is passed, it writes to stdout.\n\nIf there are multiple input files, the --dir or --replace option must be passed.\n\nInput files may contain globs (e.g. src/**/*.css). If you pass an input\ndirectory, it will process all files in the directory and any subdirectories,\nrespecting the glob pattern.\n```\n\n> ℹ️ More details on custom parsers, stringifiers and syntaxes, can be found [here](https://github.com/postcss/postcss#syntaxes).\n\n### [Config](https://github.com/michael-ciniawsky/postcss-load-config)\n\nIf you need to pass options to your plugins, or have a long plugin chain, you'll want to use a configuration file.\n\n**postcss.config.js**\n\n```js\nmodule.exports = {\n  parser: 'sugarss',\n  plugins: [\n    require('postcss-import')({ ...options }),\n    require('postcss-url')({ url: 'copy', useHash: true }),\n  ],\n}\n```\n\nNote that you **can not** set the `from` or `to` options for postcss in the config file. They are set automatically based on the CLI arguments.\n\n### Context\n\nFor more advanced usage, it's recommended to use a function in `postcss.config.js`; this gives you access to the CLI context to dynamically apply options and plugins **per file**\n\n|   Name    |    Type    |              Default               | Description          |\n| :-------: | :--------: | :--------------------------------: | :------------------- |\n|   `env`   | `{String}` |          `'development'`           | process.env.NODE_ENV |\n|  `file`   | `{Object}` |    `dirname, basename, extname`    | File                 |\n| `options` | `{Object}` | `map, parser, syntax, stringifier` | PostCSS Options      |\n\n**postcss.config.js**\n\n```js\nmodule.exports = (ctx) => ({\n  map: ctx.options.map,\n  parser: ctx.file.extname === '.sss' ? 'sugarss' : false,\n  plugins: {\n    'postcss-import': { root: ctx.file.dirname },\n    cssnano: ctx.env === 'production' ? {} : false,\n  },\n})\n```\n\n> ⚠️ If you want to set options via CLI, it's mandatory to reference `ctx.options` in `postcss.config.js`\n\n```bash\npostcss input.sss -p sugarss -o output.css -m\n```\n\n**postcss.config.js**\n\n```js\nmodule.exports = (ctx) => ({\n  map: ctx.options.map,\n  parser: ctx.options.parser,\n  plugins: {\n    'postcss-import': { root: ctx.file.dirname },\n    cssnano: ctx.env === 'production' ? {} : false,\n  },\n})\n```\n\n[npm]: https://img.shields.io/npm/v/postcss-cli.svg\n[npm-url]: https://npmjs.com/package/postcss-cli\n[node]: https://img.shields.io/node/v/postcss-cli.svg\n[node-url]: https://nodejs.org/\n[tests]: https://img.shields.io/github/workflow/status/postcss/postcss-cli/Node.js%20CI/master\n[tests-url]: https://github.com/postcss/postcss-cli/actions?query=branch%3Amaster\n[cover]: https://img.shields.io/coveralls/postcss/postcss-cli/master.svg\n[cover-url]: https://coveralls.io/github/postcss/postcss-cli\n[chat]: https://img.shields.io/gitter/room/postcss/postcss.svg\n[chat-url]: https://gitter.im/postcss/postcss\n","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-cli.git"},"users":{"bebaps":true,"mrzool":true,"bcawrse":true,"timwzou":true,"tomchao":true,"isenricho":true,"alexdevero":true,"pixelcraft":true,"princetoad":true,"seangenabe":true,"yoseph9969":true,"flumpus-dev":true,"iandstanley":true,"schwartzman":true,"battlemidget":true,"jasonwang1888":true,"shanerobinson":true},"bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"license":"MIT","versions":{"0.1.0":{"name":"postcss-cli","version":"0.1.0","keywords":["postcss","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@0.1.0","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"a909b3520e6751d974eb0da2568b52f66b766f2c","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-0.1.0.tgz","integrity":"sha512-bigx+Z17T07tRnekmdiKIb1WX83F3wmcUpn6jNV22xUkk4yrQtmAfFaF2a7Oei3f8nkdrVuzkt3rAbUEFP646g==","signatures":[{"sig":"MEUCIQCI8oKzIE2h8sIebK+IHmhQyxuHzp7xa5qUlL40G3aoigIgdxvC80uWjwrjPp/vqQHr7BQp9iDIE48+cCy11BaLHsw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a909b3520e6751d974eb0da2568b52f66b766f2c","gitHead":"cc049a98791662ec7b45e87095492d5df9b2399e","scripts":{},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"1.4.28","description":"CLI for postcss","directories":{},"dependencies":{"yargs":"^3.5.3","postcss":"^4.0.6"},"devDependencies":{"jshint":"^2.6.3"}},"0.2.0":{"name":"postcss-cli","version":"0.2.0","keywords":["postcss","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@0.2.0","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"4ae89ed0392a5f2a5eb5fd13415d8e30689ae7a9","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-0.2.0.tgz","integrity":"sha512-aq4kTJD/G2OEJV1n20Unu/NfmCdclp7mMdmMTsZQmIVbZzz01mRhJXpuh1+rH4SeJqKoYg8TP64ptWNHBQc4Sg==","signatures":[{"sig":"MEYCIQCfuWFVc7KLPz7D3fiUAsCudZeo/3lY4ojdNlN+lUa/FgIhAMZaJUF0Kf6LZWrUlPy1KWsSqYxR+TRu7Bti5SPaXjfG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4ae89ed0392a5f2a5eb5fd13415d8e30689ae7a9","gitHead":"d4e208dad388f94f943c1dbaac6c3bd660466cff","scripts":{},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"1.4.28","description":"CLI for postcss","directories":{},"dependencies":{"yargs":"^3.5.3","postcss":"^4.0.6"},"devDependencies":{"jshint":"^2.6.3"}},"0.3.0":{"name":"postcss-cli","version":"0.3.0","keywords":["postcss","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@0.3.0","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"59850a4c36a7dc3b28156419ed40c8ccade934f3","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-0.3.0.tgz","integrity":"sha512-TjOiWukUrrGu+Pcn16H7JKReHxnYdsCQc/8gL9rA5onWyI6iQtAWrC5TkM7jyki6ZMZWHc7MQ7i0Lt9M3DBC1w==","signatures":[{"sig":"MEYCIQCocc1zkLOz1Vp0lk2Vvb+hWrpujaf4/Ohy0OOZmGWEuAIhANo1q36V3PFJ63ya4oEdwyIyM7CpRVvEivmcp4znf3O3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"59850a4c36a7dc3b28156419ed40c8ccade934f3","gitHead":"2b6041672cb9073643cbe77da2f0d216f47c395a","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"1.4.28","description":"CLI for postcss","directories":{},"dependencies":{"yargs":"pirxpilot/yargs#3.5.4-postcss-cli","postcss":"^4.0.6"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^2.1.0"}},"1.0.0":{"name":"postcss-cli","version":"1.0.0","keywords":["postcss","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@1.0.0","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"7ea7c76a176ca1be576bce77dd3788cea2f6b525","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-1.0.0.tgz","integrity":"sha512-+PeWl7lLxSXr2oqIfShwtwXUcJaQeGigiRZQu1wDHAaQvairWJOKKtYeyd+ZfP9CXFhueJJWID3pZRvRDdIKgg==","signatures":[{"sig":"MEUCICVQJbfIxCv/eD+B+QD0/ewjCuHDWAImslKodf17keg1AiEA4c4gi8Xt5ePZl3yMorzNHnuLP4Ee5S6LK3VFvB1q9I8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7ea7c76a176ca1be576bce77dd3788cea2f6b525","gitHead":"d74a8c76e7098cb81c7dcb32cde1604b6f354601","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"1.4.28","description":"CLI for postcss","directories":{},"dependencies":{"yargs":"^3.6.0","postcss":"^4.0.6"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^2.1.0"}},"1.1.0":{"name":"postcss-cli","version":"1.1.0","keywords":["postcss","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@1.1.0","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"ba6beb6ad41283538ad716b39e91e7ba04d7ad37","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-1.1.0.tgz","integrity":"sha512-6NqU2DFHXZUOokOdImFmZ4hGj2Z7MLpYALoeStPXlPyhpMKkbD/sNHjUZiyxAKOC5BkvX28BGXGyPGNiK9W2Kw==","signatures":[{"sig":"MEUCIGzEQDf96DsGrpBsmGxwXs5tSYAVeIcW6lZT5joC4wpZAiEAy6xesqSCI1MMHrTPPhNgTP9UxUNQp3S0eKWKhaXIMZE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ba6beb6ad41283538ad716b39e91e7ba04d7ad37","gitHead":"7ef0455f13df03644a0e74fe1e92aa3e7de00c25","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"1.4.28","description":"CLI for postcss","directories":{},"dependencies":{"yargs":"^3.6.0","postcss":"^4.0.6","neo-async":"^0.6.3"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^2.1.0"}},"1.2.0":{"name":"postcss-cli","version":"1.2.0","keywords":["postcss","postcssrunner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@1.2.0","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"a992983ce757d61e3f4f0e549be31ce40aa0aa8a","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-1.2.0.tgz","integrity":"sha512-t9a5YJgNMIWu8P/7t4U+vVUe1nbQD/XIl8+gRplFlyNXIq29eDhBMe+vfnNB7L9mMj7amDMBZNB50rfePR8Szw==","signatures":[{"sig":"MEUCIQCbOVLgPEQ7CVE/t194/6hmTSCL500HSVQOmBhDnsA8HAIgGWBGBdwR4WmzPQBcq3PZ2Y7RWBeXUkG1o7Z7gYt8V/M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a992983ce757d61e3f4f0e549be31ce40aa0aa8a","gitHead":"47787e41b2a71c80e03c0e6cf0ec642e24453c59","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"2.7.4","description":"CLI for postcss","directories":{},"_nodeVersion":"0.12.2","dependencies":{"yargs":"^3.6.0","postcss":"^4.0.6","neo-async":"^0.6.3"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^2.1.0"}},"1.2.1":{"name":"postcss-cli","version":"1.2.1","keywords":["postcss","postcssrunner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@1.2.1","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"2045d281fd2d997495e9c9f703381c3a894bd619","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-1.2.1.tgz","integrity":"sha512-5CO3qdL3j7PbWgrqGK+Mygqw+Kv0euzo7qvdbUKWkbnPOsZ7z8rg84s6iQRdOHGGsXJW0S45zAOIy2AEBRmsLw==","signatures":[{"sig":"MEUCIFOJUn4ICBtez8UC8gMdKUtsK39JF50Ix0gohDXdmKEyAiEA0YkCE6CKWzGLkmJkyNkGO5bOJRsK5gaHVwaX2UTAvMQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"2045d281fd2d997495e9c9f703381c3a894bd619","gitHead":"0c70b190ea6dc85508c0b5c87cd5efe2052ba5b0","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"1.4.28","description":"CLI for postcss","directories":{},"dependencies":{"yargs":"^3.6.0","postcss":"^4.0.6","neo-async":"^0.6.3"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^2.1.0"}},"1.3.0":{"name":"postcss-cli","version":"1.3.0","keywords":["postcss","postcssrunner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@1.3.0","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"2b3e41ab987d9ecdac4b065932386cfbff172e56","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-1.3.0.tgz","integrity":"sha512-jOrBA8JYpbJ1/zu5Ku9WVzuyKzV58jhbkWCwuha6cePJK3p0tUwRARrGNuG3ZHM6i8cFF+dEv88jdKFMmfXNag==","signatures":[{"sig":"MEQCIDgEKktEixHlu9uNUOehZT2A+0O8OzoPmzEieGxoMb1UAiAnHKoMszNp3DE2Nk3QGJsPtwPEDvYslcpx5vnUC3Hpbw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"2b3e41ab987d9ecdac4b065932386cfbff172e56","gitHead":"f0c2a87db39731c0c0762d89a54f7fde147e5661","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"1.4.28","description":"CLI for postcss","directories":{},"dependencies":{"yargs":"^3.8.0","postcss":"^4.0.6","neo-async":"^0.6.3","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^2.1.0"}},"1.3.1":{"name":"postcss-cli","version":"1.3.1","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@1.3.1","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"16beaed85157c60db08e47c4f44b754a9bc4bd95","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-1.3.1.tgz","integrity":"sha512-PYF5E8q9EDIPKS00d9Hv3Uw/ablKZ+/2DytjYkA8nQkjP5GwsFXn9546rOqdyPdh/dwn4nhsLOQ3n9In8HM2YQ==","signatures":[{"sig":"MEUCIQDYlGoMYKRBLB1RVmHq69hcwdpCdmFjrCa+lgEvtK+HiAIgPRcvYKCjnoQtnVqrXL7vVNop0W4S+dCc0rYNel5ZAuM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"16beaed85157c60db08e47c4f44b754a9bc4bd95","gitHead":"6a0ef9281092bf5999978b37e7fc7ea9086b90b5","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"1.4.28","description":"CLI for postcss","directories":{},"dependencies":{"yargs":"^3.8.0","postcss":"^4.0.6","neo-async":"^0.6.3","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^2.1.0"}},"1.4.0":{"name":"postcss-cli","version":"1.4.0","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@1.4.0","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli#readme","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"c66d09a6ed0b5b67e9c12c5fd156298d14dc99ae","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-1.4.0.tgz","integrity":"sha512-K3xhDPIFBsjUMcUcEjaXuQ0e0lbdfKxlK3ppXvDnbOsgF2KhcMBYpvAbJBa2ajSr4g3lQa6E54SWaEI3G22xsA==","signatures":[{"sig":"MEQCIGrh38SdXhXYAktn1hGeZXDaDDmV6KTnppcI7DR9lTHjAiAqrlld0CNKv7+mAyzeFNokuu5HFh3yUx0MYrs1INPI4g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c66d09a6ed0b5b67e9c12c5fd156298d14dc99ae","gitHead":"81f0a0fc4948e2e79ab9a85b88e8d0f328244676","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"git+https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"2.13.0","description":"CLI for postcss","directories":{},"_nodeVersion":"0.10.40","dependencies":{"yargs":"^3.8.0","postcss":"^4.0.6","neo-async":"^0.6.3","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^2.1.0"}},"1.5.0":{"name":"postcss-cli","version":"1.5.0","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@1.5.0","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli#readme","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"4eed6d45911c367926958c8699831042672e9b14","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-1.5.0.tgz","integrity":"sha512-K6b1JMfxqlGcSCI2btfHTOIlaOG1rhjLkMTkLWw1h2thb1cGUwgnJMX/M/JIDM8ZWNGv2yrKKRIlcYDUpcLItQ==","signatures":[{"sig":"MEUCIQC4KW3VDR8Jrkp49Ns5D/CNdffYhY0TWoXrSotgqpMxiAIgFSMpSa6gufpBVVKthn+Fza91OxdIUycVaDr++aaP3L8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4eed6d45911c367926958c8699831042672e9b14","gitHead":"4f4a65d57baf457387693cb98457dfebbd37fcc5","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"git+https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"2.13.0","description":"CLI for postcss","directories":{},"_nodeVersion":"0.10.40","dependencies":{"yargs":"^3.8.0","postcss":"^4.0.6","chokidar":"^1.0.3","neo-async":"^1.0.0","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^4.0.0","postcss-import":"^6.1.1"},"optionalDependencies":{"chokidar":"^1.0.3"}},"2.0.0":{"name":"postcss-cli","version":"2.0.0","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@2.0.0","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli#readme","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"8861522b4e35c31130eeefdae313cd23ad0d215f","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-2.0.0.tgz","integrity":"sha512-2Q8tSSqvdrBo18cQlnowJ8ATXHpMPXPZHx513wueHw7k6V0ohN4uID9Idked+Hm1RT6M53wL7PdO209lsUU2pQ==","signatures":[{"sig":"MEYCIQChgS5nuGDXP70Ns/FFGp/fGoKLch9XaG8xqt5i/MJ0KgIhAIMJJOx09ZMPYdAuG9AHIi/UV2HkfSGO4xtiMPXzBQF9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8861522b4e35c31130eeefdae313cd23ad0d215f","gitHead":"256b504026e7781bb536846627a3cd67ebfaecd4","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"git+https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"2.13.2","description":"CLI for postcss","directories":{},"_nodeVersion":"0.10.40","dependencies":{"yargs":"^3.8.0","postcss":"^5.0.0","chokidar":"^1.0.3","neo-async":"^1.0.0","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^4.0.0","postcss-import":"^6.1.1"},"optionalDependencies":{"chokidar":"^1.0.3"}},"2.1.0":{"name":"postcss-cli","version":"2.1.0","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@2.1.0","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli#readme","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"a5d0d0671224e70a93aa75f1e99b987c31f04ac4","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-2.1.0.tgz","integrity":"sha512-YaE9YiNkDsbIUeyibr/JhAxJNW0Vqr8QhqA/VBtK511odsB4si0EL0cJ0xheOck9p9GUBALOYuZ9aQtnVMR6Xw==","signatures":[{"sig":"MEQCICnr2byHNUx/tSMWvea0GRo9Ygt/T8dnnsOudaB4nHhYAiASTWQyS0No2O+VAbk3ZtV5TROXxlO//Aox0IwqJ/LqcQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a5d0d0671224e70a93aa75f1e99b987c31f04ac4","gitHead":"4a74842c6dd66a4ad7eb029f80fa5f97e62f948d","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"git+https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"2.13.3","description":"CLI for postcss","directories":{},"_nodeVersion":"3.0.0","dependencies":{"yargs":"^3.8.0","postcss":"^5.0.0","chokidar":"^1.0.3","neo-async":"^1.0.0","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^4.0.0","postcss-import":"^6.1.1"},"optionalDependencies":{"chokidar":"^1.0.3"}},"2.1.1":{"name":"postcss-cli","version":"2.1.1","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@2.1.1","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli#readme","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"6870c936dcbc91af370c646b06cfd1fcc03dfa54","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-2.1.1.tgz","integrity":"sha512-VRYiW8m822MsuFpsc9bRSfzXYTjeyOG6Kn071CShLQoK+hrCy2z2fvaYMyDEDE5ORUJe1ftXaxLcHikNMhis/A==","signatures":[{"sig":"MEUCIGc1GjiKWHhS+8/e8u3XyOsM5RHREDKf+0kDtoNzGq/CAiEAgj+dn6O9rzVPH+lrpSZ/pNFys+8qf6ZpKnT0CRCpPIs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6870c936dcbc91af370c646b06cfd1fcc03dfa54","gitHead":"5117a9583c3f068bb891ee30400e5cb85840de53","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"git+https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"2.14.3","description":"CLI for postcss","directories":{},"_nodeVersion":"4.1.0","dependencies":{"yargs":"^3.8.0","globby":"^3.0.1","postcss":"^5.0.0","chokidar":"^1.0.3","neo-async":"^1.0.0","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^4.0.0","postcss-import":"^6.1.1"},"optionalDependencies":{"chokidar":"^1.0.3"}},"2.2.0":{"name":"postcss-cli","version":"2.2.0","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@2.2.0","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli#readme","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"8547ce3a086226f79c8f7269ee5b732dbe0e4af7","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-2.2.0.tgz","integrity":"sha512-+DId0wllhuDu4oxyuv/7FYbGwU+ZwDEDlys0k1FcaDt3ggYx5byVEdFwjlhKA4KvhE1x/82vM6yXF2RQNRDRVA==","signatures":[{"sig":"MEYCIQDNchgJnPu6purUAbQvURyrp5uaMPJLTLcOcYuRRf0S2wIhANKKisnT6PSld5XhQPpw3z2esULJdFaHSH/oi0aJ3BqI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8547ce3a086226f79c8f7269ee5b732dbe0e4af7","gitHead":"8d4d281e55f0ca0ca5eae853994af3b71eada5af","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"git+https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"2.14.3","description":"CLI for postcss","directories":{},"_nodeVersion":"4.1.0","dependencies":{"yargs":"^3.8.0","globby":"^3.0.1","postcss":"^5.0.0","chokidar":"^1.0.3","neo-async":"^1.0.0","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^4.0.0","postcss-import":"^6.1.1"},"optionalDependencies":{"chokidar":"^1.0.3"}},"2.3.0":{"name":"postcss-cli","version":"2.3.0","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@2.3.0","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli#readme","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"bd7896f9dccc8598aa9a0f02c64579d5907e5460","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-2.3.0.tgz","integrity":"sha512-UGMa2W4mIGEhQKcy/oQzdqNDImik/a4iyl7Xyy1a/efKhjyFHAQlmNgV/5xfo3Pa8NZdNJ55+zQHl23h8+adIw==","signatures":[{"sig":"MEQCIHJaYyNXvN14Rd6P7Lsy103o0osbO7LAC+SJNSmi1AtpAiBXHMF0m4KvRRHJsTGOQP0T4wlpV1khnvPBNmWYGYVkBg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"bd7896f9dccc8598aa9a0f02c64579d5907e5460","gitHead":"97ab4939b8035c4bf6e63fe238afaae7a594ac05","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"git+https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"2.14.7","description":"CLI for postcss","directories":{},"_nodeVersion":"4.2.0","dependencies":{"yargs":"^3.8.0","globby":"^3.0.1","postcss":"^5.0.0","resolve":"^1.1.6","chokidar":"^1.0.3","neo-async":"^1.0.0","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^4.0.0","postcss-import":"^6.1.1"},"optionalDependencies":{"chokidar":"^1.0.3"}},"2.3.1":{"name":"postcss-cli","version":"2.3.1","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@2.3.1","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli#readme","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"4e2bded95583b51f2a3faeb5b54515550d63193d","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-2.3.1.tgz","integrity":"sha512-Y9Yn6lEMptrvIBA5/r1TAcuwKO2y6/U8uEB7jljP2dYrjoOf5enj1xz/w486O9CQwJXGuFwsg59s4rY35bd8AA==","signatures":[{"sig":"MEUCIQCbgAb/GIt/ptFK/1W4W+rdOBINwIe7AvWLffFCnt4EgQIgQcbRyh/ySUdLdMnscFiiirTBRnenNEN5HZHPlXuEhXM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4e2bded95583b51f2a3faeb5b54515550d63193d","gitHead":"dafdb9b39bb03e03747a87137ea66eac180bc93f","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"git+https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"2.11.3","description":"CLI for postcss","directories":{},"_nodeVersion":"0.12.7","dependencies":{"yargs":"^3.8.0","globby":"^3.0.1","postcss":"^5.0.0","resolve":"^1.1.6","chokidar":"^1.0.3","neo-async":"^1.0.0","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^4.0.0","postcss-import":"^7.1.0"},"optionalDependencies":{"chokidar":"^1.0.3"}},"2.3.2":{"name":"postcss-cli","version":"2.3.2","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@2.3.2","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli#readme","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"1ae7fab714fe54d6d9505c48d19f9843f80c78d8","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-2.3.2.tgz","integrity":"sha512-m/OY3EE3saEuaVLDjuocYjzTEb67fQkGyH9zPsi2DudNat8Ftui4hNYFUG8z0624Oww28o2AsGOOtPU+m4n94A==","signatures":[{"sig":"MEQCIFr7FhiZvJuC8kd0bpO6VCKbaRYTf+uVWbgnPEerxBulAiAkxo4c/OoPaW3AsnFB/SjWDYXjMiNF599ktkRZaGwQzg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1ae7fab714fe54d6d9505c48d19f9843f80c78d8","gitHead":"81ea905fad73f9e354aaf54f46c6eb1d29021c25","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"git+https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"2.14.7","description":"CLI for postcss","directories":{},"_nodeVersion":"4.2.0","dependencies":{"yargs":"^3.8.0","globby":"^3.0.1","postcss":"^5.0.0","resolve":"^1.1.6","chokidar":"^1.0.3","neo-async":"^1.0.0","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^4.0.0","postcss-import":"^7.1.0"},"optionalDependencies":{"chokidar":"^1.0.3"}},"2.3.3":{"name":"postcss-cli","version":"2.3.3","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@2.3.3","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli#readme","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"1a7fd2476f3396c19799fdb8f1b2a17687a88684","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-2.3.3.tgz","integrity":"sha512-QdH8nm37l9BBbckikUFbYeDKP6Kkhg+A6prtXsxSSW2tlVa6THDcwaViKCawgJtmAS4aIdalc37pV6hJgBk4AQ==","signatures":[{"sig":"MEYCIQDeVaPLV4wPHbXmVElnTLZ4gP5qVMxdSZ9ETks/uEneyQIhALwqqFfmhrrDkkart0XjhTmQqCzI4BPTbyzeW0YMJGw9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1a7fd2476f3396c19799fdb8f1b2a17687a88684","gitHead":"40b1a5e3e1a66852738769e3d9c12db110134a7e","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"git+https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"2.14.13","description":"CLI for postcss","directories":{},"_nodeVersion":"4.2.2","dependencies":{"yargs":"^3.8.0","globby":"^3.0.1","postcss":"^5.0.0","resolve":"^1.1.6","chokidar":"^1.0.3","neo-async":"^1.0.0","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^4.0.0","postcss-import":"^7.1.0"},"optionalDependencies":{"chokidar":"^1.0.3"}},"2.4.0":{"name":"postcss-cli","version":"2.4.0","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@2.4.0","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli#readme","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"0d9b30b8fd2749e9dddbdc5498dc587fa7232e40","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-2.4.0.tgz","integrity":"sha512-VlM5URzMWoXAqFgvzoriM06330eXJAIo1GOfRYheMEuIbu2FAYR8bSB5jWURIInRqnJ09rgW3xXMB5p5qyNzLQ==","signatures":[{"sig":"MEUCIFRort4CQ+vxUbMctNg16SZvg0ajqLZE6L2oadGuFG8mAiEAkC4jzLls2AZucAshiubA71La9odeyEmIA40xz/auXvs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0d9b30b8fd2749e9dddbdc5498dc587fa7232e40","gitHead":"be57c9354bcbfbb92f4b4426d1a9b376af6d3c69","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"git+https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"2.14.12","description":"CLI for postcss","directories":{},"_nodeVersion":"4.2.4","dependencies":{"yargs":"^3.8.0","globby":"^3.0.1","postcss":"^5.0.0","resolve":"^1.1.6","chokidar":"^1.0.3","neo-async":"^1.0.0","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^4.0.0","postcss-import":"^7.1.0"},"optionalDependencies":{"chokidar":"^1.0.3"}},"2.4.1":{"name":"postcss-cli","version":"2.4.1","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@2.4.1","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/code42day/postcss-cli#readme","bugs":{"url":"https://github.com/code42day/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"58fa8c9737ea824819acdbdace06b89d7fe35222","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-2.4.1.tgz","integrity":"sha512-1e89tgGwFrROn7dNiA5cD1z7EWq6LTP4GlHT8xs4FlpranBnO4J74s+BYnB7Ujf62mkmoO2nWdBA6+GaFnMTWg==","signatures":[{"sig":"MEQCIG3Z7RS+AxQnOK9Zjg/WGvfR/DVKQSyU4pTxnYyrBAViAiB+a2XGXoA4axmkLcP1lTVEWP8OMPkq9dTiljm4K4UV5A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"58fa8c9737ea824819acdbdace06b89d7fe35222","gitHead":"3a616c7fd622f2bfb61383f1408ca12de83d18f3","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"git+https://github.com/code42day/postcss-cli.git","type":"git"},"_npmVersion":"2.14.12","description":"CLI for postcss","directories":{},"_nodeVersion":"4.2.5","dependencies":{"yargs":"^3.8.0","globby":"^3.0.1","postcss":"^5.0.0","resolve":"^1.1.6","chokidar":"^1.0.3","neo-async":"^1.0.0","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^4.0.0","postcss-import":"^7.1.0"},"optionalDependencies":{"chokidar":"^1.0.3"}},"2.5.0":{"name":"postcss-cli","version":"2.5.0","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@2.5.0","maintainers":[{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"fb2357e937991c6132cfb7e5bbb3227c558d681b","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-2.5.0.tgz","integrity":"sha512-OSU61ITFFHbXyIr0SsBVKin4Z66D0xyh/KCS81n9XcgO6zmKkacjTH8hugVHIawhp7CW0so+gJoQ880FqsJWqg==","signatures":[{"sig":"MEUCIFILisDJQB0skidozBifmN3+AQIqnn6ppk0dzMKkSYRyAiEA8nqCQDYHh9yp4wW5I8nZQPhN73RVQFIyY3JPVgEHheA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"fb2357e937991c6132cfb7e5bbb3227c558d681b","gitHead":"cd3baca2d1e89ced965e646d9bc3206e0b7990be","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"2.14.12","description":"CLI for postcss","directories":{},"_nodeVersion":"4.2.5","dependencies":{"yargs":"^3.8.0","globby":"^3.0.1","postcss":"^5.0.0","resolve":"^1.1.6","chokidar":"^1.0.3","neo-async":"^1.0.0","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^4.0.0","postcss-import":"^7.1.0"},"optionalDependencies":{"chokidar":"^1.0.3"}},"2.5.1":{"name":"postcss-cli","version":"2.5.1","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@2.5.1","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@code42day.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"bb01c54521ba7e0d654ed4d183c53b1cae9b5f7d","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-2.5.1.tgz","integrity":"sha512-MVAf+X9D+Sd5wvv5H8IjEJasaWiHIZnvfjiSWZ+XaguDz/cj76YSLcmfj+V0q9nYEQ5qp2ia8nnMLryC/DcQ0A==","signatures":[{"sig":"MEUCIQCrlMwJRHdZ8mPTUsiAeKxrcS/j81QzsKJ3nW7tFhu1OQIgSe1GLYRUQghIzbPZWV6BTV7glkT2MEDwvD5dzAp5v4Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"bb01c54521ba7e0d654ed4d183c53b1cae9b5f7d","gitHead":"9bc847e8536884c88e7f3150121c9251246d67b1","scripts":{"test":"make"},"_npmUser":{"name":"pirxpilot","email":"pirxpilot@code42day.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"2.14.18","description":"CLI for postcss","directories":{},"_nodeVersion":"4.2.5","dependencies":{"yargs":"^3.8.0","globby":"^3.0.1","postcss":"^5.0.0","resolve":"^1.1.6","chokidar":"^1.0.3","neo-async":"^1.0.0","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^4.0.0","postcss-import":"^7.1.0"},"optionalDependencies":{"chokidar":"^1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli-2.5.1.tgz_1455196790703_0.9260532308835536","host":"packages-5-east.internal.npmjs.com"}},"2.5.2":{"name":"postcss-cli","version":"2.5.2","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@2.5.2","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@code42day.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"e0607efb43714fd95a3ed1d8ef4569a1a743ee92","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-2.5.2.tgz","integrity":"sha512-UgxxMgiiCTT+vJ+sdC2LFeXNRmE+zZV8K66WQFFNKYJqKA0CNHwFzTqGj7/nt6Wdt44M2Crf3J9zFECUL09CBA==","signatures":[{"sig":"MEQCIHHXrccPH45e8T5/dCK81+Ciqt/FuOzDnkWKEWxAb+mrAiBtgiXUQb1c5Hfn3s1W8yZMSM4XWGEt7TcBEujGGnkEJw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e0607efb43714fd95a3ed1d8ef4569a1a743ee92","gitHead":"2d9c50f22113557157f466673641c5eafb1d8f0f","scripts":{"test":"make"},"_npmUser":{"name":"watilde","email":"daijiro.wachi@gmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"3.8.8","description":"CLI for postcss","directories":{},"_nodeVersion":"5.4.0","dependencies":{"yargs":"^3.32.0","globby":"^3.0.1","mkdirp":"^0.5.1","postcss":"^5.0.0","resolve":"^1.1.6","chokidar":"^1.0.3","neo-async":"^1.0.0","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.6.3","postcss-url":"^4.0.0","postcss-import":"^7.1.0"},"optionalDependencies":{"chokidar":"^1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli-2.5.2.tgz_1461444294618_0.3110028642695397","host":"packages-16-east.internal.npmjs.com"}},"2.6.0":{"name":"postcss-cli","version":"2.6.0","keywords":["postcss","postcss-runner","cli"],"author":{"name":"Damian Krzeminski","email":"pirxpilot@code42day.com"},"license":"MIT","_id":"postcss-cli@2.6.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@code42day.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"f0de393caa026fcfc1b1479822989af508ed515d","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-2.6.0.tgz","integrity":"sha512-abYrExW/EEbZJKnUcduqBamsAkyPGpeuqxdnbZXZ7T6qtORyhLueP+gb6IW+NgVrFiM+6zLYNkDU6q/Gs/70XQ==","signatures":[{"sig":"MEYCIQD7hss7CEaTc5w9Yt33LYKRzEWRoR4cW4n3tM/wuZgALAIhAMTuBUHBJfojsX0R0YEAOB0iUlrLl3bgYn+/g7Iuqehz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f0de393caa026fcfc1b1479822989af508ed515d","gitHead":"80bf8615cd6f3a98af4200dc7bdd89e4a88d3705","scripts":{"test":"make"},"_npmUser":{"name":"watilde","email":"daijiro.wachi@gmail.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"3.10.7","description":"CLI for postcss","directories":{},"_nodeVersion":"6.0.0","dependencies":{"yargs":"^4.7.1","globby":"^4.1.0","mkdirp":"^0.5.1","postcss":"^5.0.0","resolve":"^1.1.6","chokidar":"^1.5.1","neo-async":"^1.0.0","read-file-stdin":"^0.2.0"},"devDependencies":{"jshint":"^2.9.2","postcss-url":"^5.1.2","postcss-import":"^8.1.2"},"optionalDependencies":{"chokidar":"^1.5.1"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli-2.6.0.tgz_1472513746351_0.19306418811902404","host":"packages-12-west.internal.npmjs.com"}},"3.0.0-beta":{"name":"postcss-cli","version":"3.0.0-beta","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@3.0.0-beta","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"7e7387a8a626bbfaa86933b81bf235d20875f3aa","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-3.0.0-beta.tgz","integrity":"sha512-qduxHLLTGE0UUWLhG+hOSK1/EWLRXOMsYCcdwlC6ZWncEFTzLSz7iZH0OgfXHMXlFVQHfLqxcZfCn0D6og968A==","signatures":[{"sig":"MEUCIBUSXFogHLIJSgcgPIEQeWfJdemdQM8E7tT75eErmNz9AiEAooUK1NW3LUFrDVwG6zBW98WRhQlAPz9d5udJ414OBeE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7e7387a8a626bbfaa86933b81bf235d20875f3aa","authors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"engines":{"node":">=4"},"gitHead":"92353199bb463cc654fdb46748800f3cacd93926","scripts":{"lint":"standard","test":"nyc ava -v","clean":"node test/helpers/clean.js","pretest":"npm run clean && npm run lint"},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"4.0.5","description":"CLI for PostCSS","directories":{},"_nodeVersion":"7.4.0","dependencies":{"ora":"^1.1.0","chalk":"^1.1.3","yargs":"^6.6.0","globby":"^6.1.0","postcss":"^5.2.11","chokidar":"^1.6.1","get-stdin":"^5.0.1","fs-promise":"^1.0.0","postcss-reporter":"^3.0.0","postcss-load-config":"^1.1.0"},"devDependencies":{"ava":"^0.18.1","nyc":"^10.1.2","uuid":"^3.0.1","sugarss":"^0.2.0","standard":"^8.6.0","coveralls":"^2.11.15","postcss-import":"^9.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli-3.0.0-beta.tgz_1487340246524_0.9283283285330981","host":"packages-12-west.internal.npmjs.com"}},"3.0.0":{"name":"postcss-cli","version":"3.0.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@3.0.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"1ead66c9ab61ccb9f1f222933bf582825d370b98","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-3.0.0.tgz","integrity":"sha512-HV3B9ohzOYYrsObH4sObac2LxZe8ERlgYq/EYS05zhLdsW+z5b6zgLqN8YI1ecD9ixQnTjvZ2W7T0jqg5LNX8A==","signatures":[{"sig":"MEUCIQCJ5f7ziSLN+J2ah+vsjTaiVrlE1pQqlf9H42vI4bHl8QIgWwLPgp20LcTsa1/mii1kOJmAQ1s91os1cFZ/0CS0Tmk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["bin","index.js"],"_shasum":"1ead66c9ab61ccb9f1f222933bf582825d370b98","authors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"engines":{"node":">=4"},"gitHead":"4e82b213f72c72a780356caf3a6a903fc431a48b","scripts":{"lint":"standard","test":"nyc ava -v","clean":"node test/helpers/clean.js","pretest":"npm run clean && npm run lint"},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"4.0.5","description":"CLI for PostCSS","directories":{},"_nodeVersion":"7.4.0","dependencies":{"ora":"^1.1.0","chalk":"^1.1.3","yargs":"^7.0.2","globby":"^6.1.0","postcss":"^5.2.16","chokidar":"^1.6.1","get-stdin":"^5.0.1","fs-promise":"^1.0.0","postcss-reporter":"^3.0.0","postcss-load-config":"^1.1.0"},"devDependencies":{"ava":"^0.18.2","nyc":"^10.1.2","uuid":"^3.0.1","sugarss":"^0.2.0","standard":"^9.0.1","coveralls":"^2.12.0","postcss-import":"^9.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli-3.0.0.tgz_1489622251189_0.7313835937529802","host":"packages-18-east.internal.npmjs.com"}},"3.1.0":{"name":"postcss-cli","version":"3.1.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@3.1.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"13a2a72c03274d4158b1cbaef2aad0f126de9a3f","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-3.1.0.tgz","integrity":"sha512-5w+OTZ7Aei9JrBiR3Yk6XzMzaVFgFTFcet7Bu27NIiH6tF6G9cL8KxN74nQmGMVYIzczcEY5wNHCONbKBtonXQ==","signatures":[{"sig":"MEYCIQD8xWH1pZ4JcanwpK6OJ8krV4+/EoWmU3Iae1pcyCy/hwIhAOSIigyKGjwCvqn7hdD7SV1aFTCuifpz5DhbjNTM4wXL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["bin","index.js"],"_shasum":"13a2a72c03274d4158b1cbaef2aad0f126de9a3f","authors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"engines":{"node":">=4"},"gitHead":"0681c8d5202025bbb1e1e55b32deb64d2c593b98","scripts":{"lint":"standard","test":"nyc ava -v","clean":"node test/helpers/clean.js","pretest":"npm run clean && npm run lint"},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"deprecated":"v3.1.0 is broken; use v3.1.1 instead","repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"4.0.5","description":"CLI for PostCSS","directories":{},"_nodeVersion":"7.4.0","dependencies":{"ora":"^1.1.0","chalk":"^1.1.3","yargs":"^7.0.2","globby":"^6.1.0","postcss":"^5.2.16","chokidar":"^1.6.1","get-stdin":"^5.0.1","fs-promise":"^2.0.2","read-cache":"^1.0.0","dependency-graph":"^0.5.0","postcss-reporter":"^3.0.0","postcss-load-config":"^1.1.0"},"devDependencies":{"ava":"^0.18.2","nyc":"^10.1.2","uuid":"^3.0.1","sugarss":"^0.2.0","standard":"^9.0.1","coveralls":"^2.12.0","postcss-import":"^9.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli-3.1.0.tgz_1491314757421_0.9629808897152543","host":"packages-18-east.internal.npmjs.com"}},"3.1.1":{"name":"postcss-cli","version":"3.1.1","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@3.1.1","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"cccc4f8db12ad7e3058bf87aade68eaef2b4b7f1","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-3.1.1.tgz","integrity":"sha512-8vzcVjDDduToGz+/5DI8+UbnpuYOS48CL26WmQJz9mMph2ziNnv9U7nmqV56DteyWX5R2NEdjcdvJrhaGJ1rLA==","signatures":[{"sig":"MEQCIHUh3f//02BgRmdC6fxgJKYCFmHG06b+n8F6rbxF3DxaAiAQVasXL1CpBjzGtfk0FF3mjImWI90ZMdyZPwGpMIouhQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["bin","index.js","lib"],"_shasum":"cccc4f8db12ad7e3058bf87aade68eaef2b4b7f1","authors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"engines":{"node":">=4"},"gitHead":"32e540b24963fcb8a4eddcb551c28ae7baf6649b","scripts":{"lint":"standard","test":"nyc ava -v","clean":"node test/helpers/clean.js","pretest":"npm run clean && npm run lint"},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"4.0.5","description":"CLI for PostCSS","directories":{},"_nodeVersion":"7.4.0","dependencies":{"ora":"^1.1.0","chalk":"^1.1.3","yargs":"^7.0.2","globby":"^6.1.0","postcss":"^5.2.16","chokidar":"^1.6.1","get-stdin":"^5.0.1","fs-promise":"^2.0.2","read-cache":"^1.0.0","dependency-graph":"^0.5.0","postcss-reporter":"^3.0.0","postcss-load-config":"^1.1.0"},"devDependencies":{"ava":"^0.18.2","nyc":"^10.1.2","uuid":"^3.0.1","sugarss":"^0.2.0","standard":"^9.0.1","coveralls":"^2.12.0","postcss-import":"^9.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli-3.1.1.tgz_1491317926913_0.3037467780523002","host":"packages-12-west.internal.npmjs.com"}},"3.2.0":{"name":"postcss-cli","version":"3.2.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@3.2.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"6128d913e250d07f41834cc76f714882cfa247ab","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-3.2.0.tgz","integrity":"sha512-TkchuHZ0rK7eaN73bKgMkNKHa6PA0NvI1TspgYGDHVgCrEErkkHU2v2HI5I8ZnasVQ9SPzUQhH9clr/bnIcnjg==","signatures":[{"sig":"MEUCIQDEy8pORCx9NqbH79R02s/EyW1InjuZk08SjCTT/EZ5lAIgZOIbIbMJGkpKbcUrcTm2mSsnvt7ixkCyErR+jQmZX2U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["bin","index.js","lib"],"_shasum":"6128d913e250d07f41834cc76f714882cfa247ab","authors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"engines":{"node":">=4"},"gitHead":"1dac9bc5dd75488197fde1a83909a907e20cf588","scripts":{"lint":"standard","test":"nyc ava -v","clean":"node test/helpers/clean.js","pretest":"npm run clean && npm run lint"},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"4.2.0","description":"CLI for PostCSS","directories":{},"_nodeVersion":"7.8.0","dependencies":{"ora":"^1.1.0","chalk":"^1.1.3","yargs":"^7.0.2","globby":"^6.1.0","postcss":"^5.2.16","chokidar":"^1.6.1","get-stdin":"^5.0.1","fs-promise":"^2.0.2","read-cache":"^1.0.0","dependency-graph":"^0.5.0","postcss-reporter":"^3.0.0","postcss-load-config":"^1.1.0"},"devDependencies":{"ava":"^0.18.2","nyc":"^10.1.2","uuid":"^3.0.1","sugarss":"^0.2.0","standard":"^9.0.1","coveralls":"^2.12.0","postcss-import":"^9.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli-3.2.0.tgz_1492812470987_0.9784036681521684","host":"packages-12-west.internal.npmjs.com"}},"4.0.0":{"name":"postcss-cli","version":"4.0.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@4.0.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"b13e1b1019ab4581ed7147104e0191e9335502d3","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-4.0.0.tgz","integrity":"sha512-S4ovsMa1PpnKiobtR1L6PPsRACd/BMseTAi7qxSDnQRL1DlbfUtW5rhAkODQEmUZ3zxKMln7j6xbuuvKPa6f8Q==","signatures":[{"sig":"MEYCIQDODGlKQNabifkmt6v53PhFAVpLHX3riucfE/CcBfBrvgIhAOxMgPH17vRTwG4lb3go5WyHGTK7qxA9Be0gwAp07K5R","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["bin","index.js","lib"],"_shasum":"b13e1b1019ab4581ed7147104e0191e9335502d3","authors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"engines":{"node":">=4"},"gitHead":"dfc68e7ddc8bccf88b9d00445c057e2f8975ff3a","scripts":{"lint":"standard","test":"nyc ava -v","clean":"node test/helpers/clean.js","pretest":"npm run clean && npm run lint"},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"4.2.0","description":"CLI for PostCSS","directories":{},"_nodeVersion":"7.8.0","dependencies":{"ora":"^1.1.0","chalk":"^1.1.3","yargs":"^8.0.1","globby":"^6.1.0","postcss":"^6.0.1","chokidar":"^1.6.1","fs-extra":"^3.0.1","get-stdin":"^5.0.1","read-cache":"^1.0.0","dependency-graph":"^0.5.0","postcss-reporter":"^3.0.0","postcss-load-config":"^1.1.0"},"devDependencies":{"ava":"^0.19.1","nyc":"^10.1.2","uuid":"^3.0.1","sugarss":"^1.0.0","standard":"^10.0.2","coveralls":"^2.12.0","postcss-import":"^9.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli-4.0.0.tgz_1494341475405_0.8299410538747907","host":"packages-18-east.internal.npmjs.com"}},"4.1.0":{"name":"postcss-cli","version":"4.1.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@4.1.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"8f6803678acd7a4f21483f1a4039136f6e1c214f","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-4.1.0.tgz","integrity":"sha512-fXdBXy0a0HuqvXnQ5m1dRpnA+zvfliTU5S8vUeXrXKf+gp3tiY5PFo9/rYnA1WPP+GmpKnECfw5N7G7THozRMA==","signatures":[{"sig":"MEUCIQCXugvKOaCNtviY5okjdhDh9t75ZtGvccmJw+l1x0Jn4QIgAeqBHESJ76ChulcNP9V8soYkTcUk5f8h/czm4crN8sU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["bin","index.js","lib"],"_shasum":"8f6803678acd7a4f21483f1a4039136f6e1c214f","authors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"engines":{"node":">=4"},"gitHead":"1dd64080a6fdda2f434789ed9abdd010d817ed1e","scripts":{"lint":"standard","test":"nyc ava -v","clean":"node test/helpers/clean.js","pretest":"npm run clean && npm run lint"},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"4.2.0","description":"CLI for PostCSS","directories":{},"_nodeVersion":"7.8.0","dependencies":{"ora":"^1.1.0","chalk":"^1.1.3","yargs":"^8.0.1","globby":"^6.1.0","postcss":"^6.0.1","chokidar":"^1.6.1","fs-extra":"^3.0.1","get-stdin":"^5.0.1","read-cache":"^1.0.0","dependency-graph":"^0.5.0","postcss-reporter":"^4.0.0","postcss-load-config":"^1.1.0"},"devDependencies":{"ava":"^0.19.1","nyc":"^11.0.2","uuid":"^3.0.1","sugarss":"^1.0.0","standard":"^10.0.2","coveralls":"^2.12.0","postcss-import":"^10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli-4.1.0.tgz_1497110296713_0.04036941030062735","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"postcss-cli","version":"4.1.1","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@4.1.1","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"b94bd8fffbb7ac1f62f2607e78fc9397f7f63a5d","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-4.1.1.tgz","integrity":"sha512-Mp21ROBZsInE5vYxpI3r+1tSiGtQvkLuMFBOJzPALu5Dpayx+tdNUXYLoa2f22C+oVUyQpkbT/Di1/kiJXzwtw==","signatures":[{"sig":"MEUCIEYgygHtXAe0jWGOsLwcsNXsDuuMp1Fu9yC7rbh0SSgBAiEAqdWXCgimlRfkTuhTN+2EOApOPqi1jXVU9EmNHo/EDYI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["bin","index.js","lib"],"_shasum":"b94bd8fffbb7ac1f62f2607e78fc9397f7f63a5d","authors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"engines":{"node":">=4"},"gitHead":"0ac612c5cf144e415e52e358661057347acbb2cf","scripts":{"ci":"eslint . && nyc ava -v","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"eslint . --fix","pretest":"npm run clean && npm run format"},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"4.2.0","description":"CLI for PostCSS","directories":{},"_nodeVersion":"7.8.0","dependencies":{"ora":"^1.1.0","chalk":"^2.1.0","yargs":"^8.0.1","globby":"^6.1.0","postcss":"^6.0.1","chokidar":"^1.6.1","fs-extra":"^4.0.1","get-stdin":"^5.0.1","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.5.0","postcss-reporter":"^5.0.0","postcss-load-config":"^1.1.0"},"devDependencies":{"ava":"^0.22.0","nyc":"^11.0.2","uuid":"^3.0.1","eslint":"^4.2.0","per-env":"^1.0.2","sugarss":"^1.0.0","prettier":"^1.5.3","standard":"^10.0.2","coveralls":"^2.12.0","postcss-import":"^10.0.0","eslint-config-problems":"0.0.2","eslint-plugin-prettier":"^2.1.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli-4.1.1.tgz_1504883709368_0.14210313325747848","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"postcss-cli","version":"5.0.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@5.0.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"3d6aee7652b8dc6566f0189dd90d11bb0a535a20","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-5.0.0.tgz","integrity":"sha512-LbSZQUu1fh7hiIU/JCitSWd+V3MO60DWi9ETUKiO7i9fDZN/9XqI3ACbAOnymd9a+8v5x5XI5SjeEv4/R+l/Ow==","signatures":[{"sig":"MEQCIHT5WR9jzMmq/0ivYEXOZSHUMyOQtCw/tyqlmnMCJ7/LAiBcGuuKEt1L2dNSfm+y1/NXcbs+BLZE2w8MbD8mZjyzvw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["bin","index.js","lib"],"engines":{"node":">=4"},"gitHead":"1bf8822f26c22f4cda87be302daac78c9ff90066","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi **/*.{js,md}"},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"5.6.0","description":"CLI for PostCSS","directories":{},"_nodeVersion":"8.9.4","dependencies":{"chalk":"^2.1.0","yargs":"^11.0.0","globby":"^7.1.1","postcss":"^6.0.1","chokidar":"^2.0.0","fs-extra":"^5.0.0","get-stdin":"^5.0.1","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.7.0","postcss-reporter":"^5.0.0","postcss-load-config":"^1.1.0"},"devDependencies":{"ava":"^0.25.0","nyc":"^11.0.2","uuid":"^3.0.1","eslint":"^4.2.0","per-env":"^1.0.2","sugarss":"^1.0.0","prettier":"1.10.2","standard":"^10.0.2","coveralls":"^3.0.0","postcss-import":"^11.0.0","eslint-config-problems":"0.0.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli-5.0.0.tgz_1517941670206_0.5632261352147907","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"postcss-cli","version":"5.0.1","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@5.0.1","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"95f309fffbee3273c161704e2b9f58d5a4993cf1","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-5.0.1.tgz","fileCount":8,"integrity":"sha512-yrvWl8axFdiXlJuVQRIHM4qskvl0F4/fWUUIYyYo0RV6lOdB0Vcyt8Rv7lBvtwVuNa0pClz88LgxzT4ZzC7UWA==","signatures":[{"sig":"MEUCIQDcco3LeOxetGgRLMyZVVeCFj15H3egswiqUEfPVa7lAwIgdwNv9Lke0xgU9tubqhr8kQtUA0JNJi3jsNeATevZzZ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28329,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbJ6dZCRA9TVsSAnZWagAArIcP/0/ppO7d38fBUXgQdry7\nmx6RMeLP5zJrhQxK6F1xSUtuuLF7yHmCsfOpyJvO08laFMJPU2i1LPBbmOPb\nzwpE7yAPft3qaT3tHz7ygo76IUAi/h6yIixcSS4l+Gvk8tXayqH6dN50yAqg\niY1jG7dBgz2aJCNW5CC9PNRzptRiQXUlmxw3qqDyuWi/Hq79LYuz/jrJFbQj\nkKDKOnNih9uAPR4R7q1znbpMnWxv7ww2HluAQlAuCUB95dN77+S7s5Yk/kFy\nNRaQvleIBDykTUBdaRGV+jP8xtyvPEZMBK8+a+uyPeDpUj8vspDQWoEOpyJj\ng64mZgGH1NRB6IKo01tZPewKOvDUd7zldc/YJhCdYrnI6x6KgU+jHype9XQJ\nsELR4Qze14B9etZET8xkpf2Hqz9dar6ktLXiUj8wbk5ONh5r6JhspTvs4Wq0\nSYAwRoJU3rq9Xe1gGe+gsv2M5+OMzwjXhhj7yhWOYvni4Kz96RDXMiCfPAtt\n7EL7fAPLCkXfFHFkZOAiUpZgAPfJJBjYReoRR3IbQeAIRAVWwbJUOgNK6RXW\nuk6icKf8GqhaDtNsMVrSgvUqV+ay2J33ReLBw6tte+hGGBJVRdH7yNi6p8AN\nBPBDTK8MQwbgmO9cUnGBAPZVDx8xR26JgD352iRRxLrLLGp5LIuG7Qmh+aFv\ndy1M\r\n=gBjZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["bin","index.js","lib"],"engines":{"node":">=4"},"gitHead":"095ac7d1486b2124dbf46470f330b730cee23a8d","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi **/*.{js,md}"},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"5.6.0","description":"CLI for PostCSS","directories":{},"_nodeVersion":"10.1.0","dependencies":{"chalk":"^2.1.0","yargs":"^11.0.0","globby":"^8.0.0","postcss":"^6.0.1","chokidar":"^2.0.0","fs-extra":"^5.0.0","get-stdin":"^6.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.7.0","postcss-reporter":"^5.0.0","postcss-load-config":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","nyc":"^11.0.2","uuid":"^3.0.1","eslint":"^4.2.0","sugarss":"^1.0.0","prettier":"1.13.0","coveralls":"^3.0.0","postcss-import":"^11.0.0","eslint-config-problems":"0.0.2"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_5.0.1_1529325400475_0.8870184497763263","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"postcss-cli","version":"6.0.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@6.0.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"688e3750735a7bc21ea6e2f0e427f5f873c16f0b","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-6.0.0.tgz","fileCount":8,"integrity":"sha512-7DuxMn1Wj6dJKbjKpZXOdAc5nl5NfPXiJbg0m/+tdObPvgk1xv4+lZgNKD3jL/kCrDRPf1jgFlmq1cHh8lBR2w==","signatures":[{"sig":"MEUCIF33/mv/sdgmDS9wA/euoaKO8JhkpuBq2XGwHTQf1QZUAiEAzqu4kr9QtEwH9rAEZiXl+wZ4gGrW8EjaX4BuoKeE2rY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28173,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbT7hyCRA9TVsSAnZWagAAoDUQAJhlu0jVwv4IjNJxvIdF\nxQ7swjykbIMDvx0/fjxy4NSKYN8VLw2HxNQeqSxycI4JjjDGarikhw2FK5ra\n7gMxpztbCDexWf24QZh4a2vOzhGI66mQi9dq85HJesxVIoQQ79TAL2ArgnMo\nmlFSHpbsGke73MzsPR4jUxl3YK5jY7KKedhWJpJQqGEdMrYsDZqJOJlLNmQY\nHpEYNGiEW3Fu19jwklbvfQzaZECN/FiuF3Jk/J1FDLo6Tk3+oVrW7oXOxy1j\nm21XJv73vR40EeWkRjQVOXWMNLoxAjW+7ABX7ytSX1eK5RRdtt1whFNEDGqd\nO+G59/lERDPjHmKnouxgldeis/WEl2WwQFwdHIsm7NhJZcoSKhyZoyYh+x8X\nSlzCicyEbJmjsUmGldD7rpOAbw9sdWluzffQBIbyjnEtJ92Gi8NQmboNYuLc\nbFNHZaJsIALAj06QJ4YY1uJor8MJFjUTgVlo2bEvdFtWW+Id+XFFJHDP0wuI\nJ0LGAteOhKUAnMNxSviD10JKNGnVRvu1GHk2GxJlmhFenYHolYSLZiKtg4UU\n9rn+0XsUXG8GWA84WPfja2lIqQKQOJ6f6Ww0B36pNweybwz9EAWHer5vzCjO\nhXvw2ObHqksr97Obq4Uv/3q7FtVu5BtJkkw425cchwbW95xOJk2LUQrCQRSo\nIZ7n\r\n=BS18\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["bin","index.js","lib"],"engines":{"node":">=6"},"gitHead":"52bce09f731fcd60a6b1a176eaba548f4c89b740","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi **/*.{js,md}"},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"5.6.0","description":"CLI for PostCSS","directories":{},"_nodeVersion":"10.1.0","dependencies":{"chalk":"^2.1.0","yargs":"^12.0.1","globby":"^8.0.0","postcss":"^7.0.0","chokidar":"^2.0.0","fs-extra":"^7.0.0","get-stdin":"^6.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.7.0","postcss-reporter":"^5.0.0","postcss-load-config":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","nyc":"^11.0.2","uuid":"^3.0.1","eslint":"^5.0.0","sugarss":"^1.0.0","prettier":"~1.13.0","coveralls":"^3.0.0","postcss-import":"^11.0.0","eslint-config-problems":"1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_6.0.0_1531951218597_0.6781890298830859","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"postcss-cli","version":"6.0.1","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@6.0.1","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"24c990f9313c7b21b2c4b2301c8f21591240c23f","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-6.0.1.tgz","fileCount":8,"integrity":"sha512-M9GiEMzXVMlI4ln8e+mdeHT+qvoHVZdlN06hj5/EhrRZWDr+J1sniPeGJ4nghknl+du3Oj2UoqqhgpKKhiZ9+w==","signatures":[{"sig":"MEUCICPDXtNSnwX8XToZDczZn/tmco+xYNzQqqqyNAAfGBY9AiEAxvTgeEIEO+bm5JVqVHi89UH90S4vneUM4x5MRqOIoPo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28658,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbx+fKCRA9TVsSAnZWagAA15IQAKL6GCs2/+eNPcOPgqX3\ns3NmZPvCMs1ExjHD/o5+bPsE8C3SUaPpMK9M0GfZsoKx4gwouaRwGDhRLlUQ\noFYDLm7IkFIJXb4U+KWfs4fsbjCLyVpyOxWJ5/IdB1qq1nS5tVZwXrimaGkC\nx5uRYfbrQYiikEh2hq+NCUueKyrojJi3vdu1CVlcfR/LMauj1mg/gzW2Fwgi\nexrNffuzUbla8Xuuc6MvPV/MPPxVn6W8NmzM+5rd9qvF4K1oYpHLJ6L4Q56t\nM0Fhd0d8N84FKTGTxcxGvHtYnp3D3/bmnhubJ4BTQc+gtBHCX8rbLFOldKr0\n6uljwS+4+FndaOQE3Y/2wb/RxGZ3/NeuDyx+fgh4M5svPR0wNIPvpYeKk0TB\ndkfO6TuEdgGKjG3pgbaruHnGWMoC/yrMN+5/x0Gdo7HZgazNHNxTeJ+1xWae\ntmkEeVyosSfzHIH4lKX7e3W/KQ80jf4i+v0t+oShR2FjMDOycPaJrcYNpnHe\nAjGMq0z2yaa04rUzgFa6EkJEwwVthmbpTu9KZIiuU78WC10MOpWcUkoZQtyA\nzEAFZ4YDiaw/ORaifjwzv8g5KX77G9A7kV9ppEobEo1o8RVYJ991QQQM0tET\n4IcG22SM5JesnO5tFTAoCG3+idsBro0cti82Rgq+rWeydNQPsh1G/o7o9yJ7\nj0Hw\r\n=YS5Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6"},"gitHead":"46b7c10c59e4b3fa17f7a55f86f398d25861416d","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi **/*.{js,md}"},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"6.1.0","description":"CLI for PostCSS","directories":{},"_nodeVersion":"10.7.0","dependencies":{"chalk":"^2.1.0","yargs":"^12.0.1","globby":"^8.0.0","postcss":"^7.0.0","chokidar":"^2.0.0","fs-extra":"^7.0.0","get-stdin":"^6.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.7.0","postcss-reporter":"^6.0.0","postcss-load-config":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0","nyc":"^13.1.0","uuid":"^3.0.1","eslint":"^5.0.0","sugarss":"^2.0.0","prettier":"~1.14.0","coveralls":"^3.0.0","postcss-import":"^12.0.0","eslint-config-problems":"1.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_6.0.1_1539827657661_0.8375634748736926","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"postcss-cli","version":"6.1.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@6.1.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"a2eb4e6b8d7fe85a9b30321685049fa3c542891f","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-6.1.0.tgz","fileCount":8,"integrity":"sha512-qXufMvDOvD0fvcnDYO6Rz85nSmXjIDpx2IP8CzrGv8RxAfxx5Zjvfx1GGXxbOyk8terq1Q1O8GL4ZTzBuZ1TYg==","signatures":[{"sig":"MEUCIQCzMJ1YFxLmYzoVNbVA19cbKdAD8ozUg/CIfIPeJIZGeAIgR0thCVpSPJc60xYAA8J5aA5K3OKF/X/Sm1MCa4DcjTw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29351,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcGuBcCRA9TVsSAnZWagAAiJYP/ArUZrDJO1s7Ab6maSRo\nXwiFG+ZAm6DiXJ0ZKE6CEFbPZT9nRlvzJT6jXXRt90a65qd661+ag5uZRm3M\ndHih1CdqxolS5fjeyOTLwWefcxk5/YPdwObKWCLp7XooArfupYvfitig3DWx\nYL4MpAvowm+TaGOROHZVz5PPQQ1PfJ/7fnI+P77IKHBO8c7EShoJVH0RDA17\nPOjeluYSzktW9rffCE40tFV6l33P20EzjCIIhUpARtnnd3WFDCqHUJcoQnQ0\nET/6DMaZJfUa+ti5Aqu5Sd0qw9eTLxOAB8IDHwkihWYwPJ4Oohif1zbsMUZs\nAnfeEbHQKjVajbB3d7tAiy9h4FhYQk02hMwG8jb5T3frGCaHdcAT2xPNd9CC\n5W9FjypOY3oXzJJoI0RYRNCk+5eYP/rYoImh861vAsV+333CouiJ4SeqWKy3\n/+6Fs8vGKXPEolsYF19D64XNMdO3piz0j6aNWfa5xg0EmoFwl5B9aTBfa+er\nUTcOA6VSnxVpJUoSr8PqABC743pqnHC5bC+MhYaq24Ne3vlIrFW6FLFD80hw\n51RiM0TFO/U3/ZGU6OjB/7VFz71VAgpqR6nQ9oS21fyYprVmV2AWyZ5a5sHM\nSvWy8AtcVf9COrtgPRQis0viuqo7lxL3WQJcb6uVsvj4odJGdvneeYf/sh3U\np/AZ\r\n=vHSy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6"},"gitHead":"afdc65f46757961a70439f6fb23d5d8c2f368056","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"6.4.1","description":"CLI for PostCSS","directories":{},"_nodeVersion":"10.13.0","dependencies":{"chalk":"^2.1.0","yargs":"^12.0.1","globby":"^8.0.0","postcss":"^7.0.0","chokidar":"^2.0.0","fs-extra":"^7.0.0","get-stdin":"^6.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.8.0","postcss-reporter":"^6.0.0","postcss-load-config":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.0.1","nyc":"^13.1.0","uuid":"^3.0.1","eslint":"^5.0.0","sugarss":"^2.0.0","prettier":"~1.15.0","coveralls":"^3.0.0","postcss-import":"^12.0.0","eslint-config-problems":"2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_6.1.0_1545265243140_0.5140482811642011","host":"s3://npm-registry-packages"}},"6.1.1":{"name":"postcss-cli","version":"6.1.1","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@6.1.1","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"2214bbcfb804724d7f8331c2b220a2da34336560","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-6.1.1.tgz","fileCount":8,"integrity":"sha512-18PQO4qCDWY6vggnG3k+i5zrUnRc4I6P4MpKQWGbNyTfWBaRgu/nScunw6VH5QnUKtRu0NuPF5SpxhcYzWVXDg==","signatures":[{"sig":"MEYCIQCotk8tUC6ORSYOaLo3HiQ0h0zMO/YO3aWUhKvHGTLX0QIhAMqWMGjexsFHA4th26Qz9nI8SDf1JrwDjyxUn4g41L/J","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29628,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcL4fwCRA9TVsSAnZWagAAuRsP/1Y+Ud/P8Ufsr2/EVtil\ngxWzTEbrLWHi6D3H3AqgsuJL/q07OGYjre1O52n9t6Gwedy4fus2Is8F+4K0\nOi3WX0W8q3xbxJqAjVO7ho1N3/FtZgYOtJR5p2O8zORhXnFpL+kh5a4NOxjB\ng1NXLBGN0j4yPAsj0znn+F+MZxtPU3PE9nBSnAl6Ms8zibeWLdG4vKgc/nhf\n37geT4VdSsQ9p9Oy8eo/X6eNi2g9s0LmUCERcZUnsx8IgO6np60furG3yCpe\nOR1vXd4L+3KdWcZn4tXxbzQ+kZL9YYlZKxvo00lD1HJMfO9r3VwEg3Us0U34\n8LJpcMV7kQoElOFWy22eBc68LwPeLczCKhVZV5dNfELIS/U8EbitSDOQg8Ou\n61GgYMW4eFp79xA2T+dNrh4kxyxbXrCC7IOot9SvdCt/WFpKG9ITqBcbMW8N\nCVIC9uK99bipzv4XHFscr5nZvPD2nOp7SOQh5fWWDRvkY6KwlNfAmod0FDFn\nZ5/f6uLUUp4crgFdbGRcxYbNOJpI2QziPEjK/DFgGEp/qdqpZaA4EZntuC9+\nvds55xK7pkHQSWHvLDQVWevdrLPiAjOveA2btOBehgNp71p1DmTKPCftNSsr\nRYOMMqJu98YaguW1iyG3B6VivjghGkeiE8YVy6PhQLhn0BUlTopY22cqSj77\nabOh\r\n=k2EQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6"},"gitHead":"f2aba4918ee9a0a8f0ffae886ab2326d1e6ad544","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"6.4.1","description":"CLI for PostCSS","directories":{},"_nodeVersion":"10.13.0","dependencies":{"chalk":"^2.1.0","yargs":"^12.0.1","globby":"^8.0.0","postcss":"^7.0.0","chokidar":"^2.0.0","fs-extra":"^7.0.0","get-stdin":"^6.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.8.0","postcss-reporter":"^6.0.0","postcss-load-config":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.0.1","nyc":"^13.1.0","uuid":"^3.0.1","eslint":"^5.0.0","sugarss":"^2.0.0","prettier":"~1.15.0","coveralls":"^3.0.0","postcss-import":"^12.0.0","eslint-config-problems":"2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_6.1.1_1546618863661_0.8394430415602063","host":"s3://npm-registry-packages"}},"6.1.2":{"name":"postcss-cli","version":"6.1.2","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@6.1.2","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"9c24174614f4d2f6b5b6de8676fed992766173bc","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-6.1.2.tgz","fileCount":8,"integrity":"sha512-jIWfIkqt8cTThSpH8DBaNxHlBf99OKSem2RseRpfVPqWayxHKQB0IWdS/IF5XSGeFU5QslSDTdVHnw6qggXGkA==","signatures":[{"sig":"MEUCIQCTThachttsilual8GG2OdC1lhxSQhiqCt4LUnRnn26qAIgGgt43qZlbkqzl4/mrzYafK1cKxi33h4lUtRLpoC0bkY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29825,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccAEwCRA9TVsSAnZWagAAAccP/0XSXFMrbWFtZkQSwWiu\nQcoQHEQCMwg2d1OnfkflB9WkLO0cgkxW0aSPxNWJViCx7hS0M1dZh6N85aKC\nsRi0OcEsduQAK0zlZX+gni+QgGu/LhHq89B1pk03uMTLxF61hPIy30NDLYP5\nj0drzr/Wd1y1zVBXN6EAnTBFE96jpk/4l4azXAL0kw+GcKKiitrGusTnJsSE\nv1dUK/H2bkV7TTk2GIGW7TJkVf3v7ygchj2BQNaY2CiYUqpEzGh46sg9Rf2C\nt6Om+Da7gwRr+0IM1dcXJD5fbyQEF15/Cpjatox5tYrJ2/AnjwT6OqltlECr\n4PHkW/FowIWoDkT7QCTZZay/0gL8V0gUvNN/XCRMsKGNRmpsKbH/hYM5mg3H\nGs6i2/s/bKB06gWVfy9JWzYPwEZvsJuoNCDrhE975+3spQzlV+yExih39jWm\nHnArgHV9OoJM9jiYgqARqCLOGz1oBH1OveeEdjFf5+fxiFSykIlWE+fEznbZ\n64pRQD3BiLk6sToXxGfM23VgUDzLD/gMRCru3Cbz3G1RfaxusJGGIAdLkLpZ\nB6nL0yKVjE47r33lOs5FpVXgYydHj2pQaWZ5/CyR+usdNjEFVYeZsVzorNX7\nq7q5S/Xyh93vRTeIYrG1iN9ec0+KX/hl0jyM/VP8hH/yU/saI7SNd8tzZvm4\nzSqs\r\n=+HaJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6"},"gitHead":"8fd79b02a8445f2647605ac28ccc346bdf1cffed","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"6.5.0-next.0","description":"CLI for PostCSS","directories":{},"_nodeVersion":"11.6.0","dependencies":{"chalk":"^2.1.0","yargs":"^12.0.1","globby":"^9.0.0","postcss":"^7.0.0","chokidar":"^2.0.0","fs-extra":"^7.0.0","get-stdin":"^6.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.8.0","postcss-reporter":"^6.0.0","postcss-load-config":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.0.1","nyc":"^13.1.0","uuid":"^3.0.1","eslint":"^5.0.0","sugarss":"^2.0.0","prettier":"~1.16.4","coveralls":"^3.0.0","postcss-import":"^12.0.0","eslint-config-problems":"2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_6.1.2_1550844208039_0.8017212986172244","host":"s3://npm-registry-packages"}},"6.1.3":{"name":"postcss-cli","version":"6.1.3","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@6.1.3","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"a9eec3e9cde4aaa90170546baf706f8af6f8ecec","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-6.1.3.tgz","fileCount":9,"integrity":"sha512-eieqJU+OR1OFc/lQqMsDmROTJpoMZFvoAQ+82utBQ8/8qGMTfH9bBSPsTdsagYA8uvNzxHw2I2cNSSJkLAGhvw==","signatures":[{"sig":"MEUCIQDVKeHedxEBAWLqxZq3/XcK9kFA4aCwpnN4ZE+VOpoBLQIgXCb748pdK5i6jzr7o/HResVDnwSKEg6pWQNZtUS0sAU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30058,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdI3VWCRA9TVsSAnZWagAAlXAP/2aABkfw4N39sYxLlasq\nAEr6p3H2NjoFMgOrPJgqgy5GuIg7PynZnI5qHe179fU2cJgVr6j1S+5dUNls\n3mLoHbDmTwHCScCo81sThYp/8Q88mQq0GUNS/JfyCkqPR/kNQaT5NgZs1GXa\nnCw37h7+jQ6jwZsuu2JhSR7fv6R1NUHnZLaaGQ8A9ukN6IxUsN8jkEYEgek4\nZG51u8INFEUko2ZXTnNIGm7/+AdhDOXzHZEhHHiutBhjNabD5Lewu75P1k+A\norKbM1fgThXseKogqc/Cb5THZk22u2cT1yMo/E7ERDfxCiVbdi/Sy7GPIWGB\nffeTWAfMPdYY9KcS2Iqu9yzmAWsuPRRv6N3T5hNn14kdj4/1NRQGCETME86u\nIwuQLMBNi3wdoiOOTPxIVahJpiXSJfT1bLx0RkTMoEKQqGr8bBZp4Qs2VNCJ\nJ/0fxGqSHw4WQRKpgNRTIKbPPbe3hBCsoQNphug/s8edjwc0+Ppu2gW0Td7T\n+zT66kLmPeQ8zrqspEO8T8E4GdBef2ulveNYiKgk55rTEEjrpfJIrf4by/1B\nTObdDHJ2jEViyHrR+08hSyqlqjzsI3EejvcZDEaZr8Vy6WbEMDFcSZt8n4DW\nf4EODM5xcrTGJYS1oHFHi2Qi6WOhmMXr4bxsW37EBNxqGfQH5qybo+CjoI23\nR/CG\r\n=G+Zy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6"},"gitHead":"709181958455e56e277340daa86d94d8cbe61b26","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"6.9.0","description":"CLI for PostCSS","directories":{},"_nodeVersion":"12.3.0","dependencies":{"chalk":"^2.1.0","yargs":"^12.0.1","globby":"^9.0.0","postcss":"^7.0.0","chokidar":"^2.0.0","fs-extra":"^7.0.0","get-stdin":"^6.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.8.0","postcss-reporter":"^6.0.0","postcss-load-config":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^1.0.1","nyc":"^14.0.0","uuid":"^3.0.1","eslint":"^5.0.0","sugarss":"^2.0.0","prettier":"~1.18.0","coveralls":"^3.0.0","postcss-import":"^12.0.0","eslint-config-problems":"2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_6.1.3_1562604885547_0.32720652462922106","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"postcss-cli","version":"7.0.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@7.0.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"ava":{"helpers":["test/helpers/*"]},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"00edbbc68f7510cd57028f3e53ddecb787934572","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-7.0.0.tgz","fileCount":9,"integrity":"sha512-dxn73RcKOennwaijmo2DjTOM3f2bcl/GSSUEqpguiHfRSfRLY3sUvbEy2vvuJ1RasuXCcJ0KvoGe9nSSA7mHQw==","signatures":[{"sig":"MEUCIAx+fQvBzfjcf2aeVfWPChG935zY++zgXNoI+4l2/QeVAiEA6GzwwGHnm4Q2VOHebkTMyuO4ylvtUeu5hLUYeKSooLs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30309,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeFLPQCRA9TVsSAnZWagAA/uwQAI1LVaiVQZyTcoBMA9ha\n3Ytr7pEErg35aA42r0syI0fNLaX4P0stSX2ppNeq1GQLtxTiKeJUuWPwWSH8\nIS3bqnCX2TxlT/OFK3q5wdZ/E0l+GbywwWn1vwCy8YZ8fFqwE9WtRI94kqNl\nfuhp1ZYEF/LD4SB0m/t+5dGlB8lCY7u6lQG5seX+l5FCM8HMha7igs/H8A0U\nQ6yKHuaUkQvY8wktZZIRf6rkF2FGsDUM9B83bVV1Y2Z+YQE7DQrsTKNkzBOk\nfcXiMyLNxnPqkXUM3Xwu6TwS2Zw3SOgyDFEd9G809vJSLHNOSFcOP0I4sS3Z\nYNSGXfzcy64Jjh/Ie9aqezikPGTqoyEedjjDaLIrd6Jmnfj+0VzMAONvvllX\niT7mF0POYpPsdmVpT2xB0mNqh15hKQsgKQxQPOdIutWY+9JB62h9DGhG+fCC\ncJKi32mx0QLlyvmeRNGUj+Qpelw1yS6rUgrLXZ1cfISvAQ1koVqhY44hDeln\nYafYCQecNdP+6kyn/p5kWYIP2gMMtX+Twq0pZp+8cogglpjdvIzPzjdR03gW\nzgZ9uXNB6hvjnrLG7x7tV2/IYDZucDho1dw+70jqtmRM20PEuLFeZMkUyTcY\n24Sqd66i3yBiwNd3gJNvsatAzjRFTPBjeviWkm8jrfC3UkpnJCZS2gh0HTd5\nEwub\r\n=bUUE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=10"},"gitHead":"745ad2cedec4b8b9fc793f3748d72ce03c5d2f9e","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"6.12.1","description":"CLI for PostCSS","directories":{},"_nodeVersion":"12.13.1","dependencies":{"chalk":"^3.0.0","yargs":"^15.0.2","globby":"^10.0.1","postcss":"^7.0.0","chokidar":"^3.3.0","fs-extra":"^8.1.0","get-stdin":"^7.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.8.0","postcss-reporter":"^6.0.0","postcss-load-config":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","nyc":"^15.0.0","uuid":"^3.0.1","eslint":"^6.8.0","sugarss":"^2.0.0","prettier":"~1.19.1","coveralls":"^3.0.0","postcss-import":"^12.0.0","eslint-config-problems":"3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_7.0.0_1578415056067_0.1771375610048207","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"postcss-cli","version":"7.1.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@7.1.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"pirxpilot","email":"pirxpilot@furkot.com"},{"name":"ryanzim","email":"opensrc@ryanzim.com"},{"name":"watilde","email":"daijiro.wachi@gmail.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"ava":{"helpers":["test/helpers/*"]},"bin":{"postcss":"./bin/postcss"},"dist":{"shasum":"769b07b8865aaa3e98c7c63a3d256b4f51e3e237","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-7.1.0.tgz","fileCount":9,"integrity":"sha512-tCGK0GO2reu644dUHxks8U2SAtKnzftQTAXN1dwzFPoKXZr0b7VX4vTkQ2Pl2Lunas6+o8uHR56hlcYBm1srZg==","signatures":[{"sig":"MEUCIHCh5EUhfN7MpYaCz5TniMbkEhgCtJPnrU7wjGshBLz8AiEA2q443HuEcs+r+hZdjrzdm2JanIvLoRmqv3Cgh/6NyuU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30624,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeFyuKCRA9TVsSAnZWagAALjkP/0z9YU2nGu3xtGk9UDPS\n+E+ZpUynwg4Vj/4dnODpQRpxH7lxl+jU5eOCW7jT+Dddow5pNkwhQyIdTC2d\nV8hUt300G4ybK7MDHb7R/G0pY9HlLVvf0MtU4y9CUjOcKvgPNwNYIkTPeBQ3\nlgCPWr+rpp46/kOECeD5h9nOjy2sVx1MqdrjH5RHLDADqa+JPKQSNlyLOlXA\n5TiIDyR7wT65c3VAuK4C8MU5MTvkJqr8BDXsYLrhsbKyddgSKF/9Dar0X7y7\neQoyeqq/QOwOBbIvzfmBkbGXYMBNzK5d7eLRRotpp+MtPGDopBjbAoonIGF/\nqgd/ok6K6o2hzC9rYd0840iyviHE0wXBM7nXwMGiY/MeRYPKUM7qmJWAAaib\n5YkZbKIZKXlq/E2Ws3UUlJYMw1DrBb/YDrjv7u6jgUZu6J60F1VKgVvfSlOL\nOKdw+mJsRCO/WfCJWB2AkbrIG0xA4sNPl1clwSLIkL1hPntmurfMQ4losKxc\nAtle5ivcOFVzyWoy5sB0BdU6bXvPAlzCWYg0r9rfepZE1Kk9fss7qCrbMqZ9\n7rf7KINSIKWSpPWeVi8AB95xvZcpSLUEDqm7f6+q2ILYQgQv8c1xYIBlIJBl\n0bZM2DKz9H//s+zqG9z6DgxUYGpw0oSUaWvC+6NQPHwBv/CkvAuQMXwIMXZX\nLph/\r\n=ZaX7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=10"},"gitHead":"9fb5dbe9b6be4b881a6fa3157b28a4645050f36f","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"6.12.1","description":"CLI for PostCSS","directories":{},"_nodeVersion":"12.13.1","dependencies":{"chalk":"^3.0.0","yargs":"^15.0.2","globby":"^10.0.1","postcss":"^7.0.0","chokidar":"^3.3.0","fs-extra":"^8.1.0","get-stdin":"^7.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.8.0","postcss-reporter":"^6.0.0","postcss-load-config":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^2.4.0","nyc":"^15.0.0","uuid":"^3.0.1","eslint":"^6.8.0","sugarss":"^2.0.0","prettier":"~1.19.1","coveralls":"^3.0.0","postcss-import":"^12.0.0","eslint-config-problems":"3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_7.1.0_1578576778078_0.23002436170262341","host":"s3://npm-registry-packages"}},"7.1.1":{"name":"postcss-cli","version":"7.1.1","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@7.1.1","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"ryanzim","email":"opensrc@ryanzim.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"bin/postcss"},"dist":{"shasum":"260f9546be260b2149bf32e28d785a0d79c9aab8","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-7.1.1.tgz","fileCount":9,"integrity":"sha512-bYQy5ydAQJKCMSpvaMg0ThPBeGYqhQXumjbFOmWnL4u65CYXQ16RfS6afGQpit0dGv/fNzxbdDtx8dkqOhhIbg==","signatures":[{"sig":"MEYCIQC8hVVI7eIU9H/yktzAxRN6acuWUC7TeODXGiPvetO3wAIhAKNE+kJ9YVS8wOjxbwLXMHwcexA24qXZEbdqSQ/3J6Tl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30812,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJepxP3CRA9TVsSAnZWagAAIf8QAIt3SvnAtHWe0ikIf018\n5xpmiT64CU5j1/FqHZYfv/azk5osQ0bKe7z5mvV94u+7lj3BuTK+aN2DSjbZ\nuQfTUPvDQ2Ugmviu5pWpjmmqvf5WDuBF4C8Z4G4g3/Eyx05bG1NyEJW3sdMG\netbZ7Chd3/TlEhPDf5bOZlJnezhmr7fEm1MXnuf/YNVKxl6sTQVrIxRZSYIP\nNdeS2mDW3jKEN+KiZm8oK9yZ3SK4khQ90d9W/K4uNu0invf0vKFyqYXoI+/K\naJEAcVfT4L0dLNKiJowFc/Rnx7LdzgeTDh7tdOyWUKOdriQMf+eDxGj3EPMp\ncGPHRNGtPxczbZsSXE2Q3riUA8pKPLSArtxDDpHevDcMoBPw4R7HSpDxV3bT\nb5s0tpLXNXVqdL8aHt1YZM930R+BLkqwetlsgi+e7eWNOi8P+Snxx+rMtU90\nEWhcrW22goMFHGZoLNHRV4QdVD/3dlTdrz5Z8nIcMmKGA5i0CcGjO1XW4tHw\nTQynfmYpbsnCYBszTBhHcW35Yg/44iHuB6ywaCtN2XgE3cUxu5Y0aZhQz+kM\nke6PU6ISGKeUzz9BIY0yDGk4GG/OeG8wmjZXa4u0q45mjq9qGp86HvNynD4l\nqkUizIJXGRD9PQD5NqwDbMwz3ZADKIV8pK5SDnKiDlxCOuI85A1N7dvhBrRS\njBN+\r\n=rKCn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=10"},"gitHead":"d2e76781e14eb2a836b80a2e24aca54a8930b96d","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"6.14.4","description":"CLI for PostCSS","directories":{},"_nodeVersion":"14.0.0","dependencies":{"chalk":"^4.0.0","yargs":"^15.0.2","globby":"^11.0.0","postcss":"^7.0.0","chokidar":"^3.3.0","fs-extra":"^9.0.0","get-stdin":"^7.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.9.0","postcss-reporter":"^6.0.0","postcss-load-config":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.1.0","nyc":"^15.0.0","uuid":"^7.0.0","eslint":"^6.8.0","sugarss":"^2.0.0","prettier":"~2.0.0","coveralls":"^3.0.0","postcss-import":"^12.0.0","eslint-config-problems":"4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_7.1.1_1588007926933_0.5685602020742304","host":"s3://npm-registry-packages"}},"7.1.2":{"name":"postcss-cli","version":"7.1.2","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@7.1.2","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"ryanzim","email":"opensrc@ryanzim.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"bin/postcss"},"dist":{"shasum":"ba8d5d918b644bd18e80ad2c698064d4c0da51cd","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-7.1.2.tgz","fileCount":9,"integrity":"sha512-3mlEmN1v2NVuosMWZM2tP8bgZn7rO5PYxRRrXtdSyL5KipcgBDjJ9ct8/LKxImMCJJi3x5nYhCGFJOkGyEqXBQ==","signatures":[{"sig":"MEQCIGJw9JLyX7IPrGLc9tVYPWfB59VVj1os/T/ubgPsNDQBAiAWcwVyhAL+/3hYdLCIrRJP4XW1uHGPfl8nBBaja7eVWQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30680,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfTZ65CRA9TVsSAnZWagAAGc4P/0nuh0Ju8KxHxykZ5Lbb\nFo9Tyqvslz8QjvmN1rZia83GXeCVks6b4LzpDyJ4tb6AmWN9s+tYls41l4b0\nN9ZaNYUagARUTxMFuh0+8WWmMpifSxej6yPs0+k3Zm5ODPL83fyItuvQwnz+\naC/HHPbEkxfHmlVU5+4cuydf7UDg1U/64sNmONdO/Nb6TsO9gBH7Iq004VT/\nBTWkRpv03p9qt7JPSHpBJQ+ONJz5l7eHMJb+LQSS3iGPPkz8cJVsa4i2vHyY\nKO2eT3wpnZVChHT/Nn7pVxKka9TcoDXA2SGLvLnVydRNKZ2AJlzDOG/tgxGt\ntHtObkE7b4ndSvPm9adHp/GpwDu++Tey84LV5t4c1eGpAUQld8YiRKKD37Fg\nuxKTkU0gb6ttFrtqRnhiRyekP+dUmRRIdMvSxlETOBsW+6cuLT8ViAqXgzLh\nPQbVWIiOrEdKo+ABwurZy7lz1YMWJmPa/+AZY0vqiGYWGC6j+dNKE/GwfQYs\nkrYpw/obgoZz+ajDcuOwykSlMufCgMQAxKQiX/8jXKZkD3jtdYFeF+fRx5++\nH107t0V2sGBNWMVtPzt0lUi0BWNFdLva4EoK9Ex2R/hg/kNXTu6NQQ2DHeio\n1fbT/VzmGPCw4NJxuLMeAj7wm/5aHod0x1NDxZx/hdRmCpRi+G8rwyScy8eC\nNlE/\r\n=IoGE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=10"},"gitHead":"d94f0c6559cad74d09a7429cd62c1ec385c13440","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"6.14.4","description":"CLI for PostCSS","directories":{},"_nodeVersion":"14.0.0","dependencies":{"chalk":"^4.0.0","yargs":"^15.0.2","globby":"^11.0.0","postcss":"^7.0.0","chokidar":"^3.3.0","fs-extra":"^9.0.0","get-stdin":"^8.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.9.0","postcss-reporter":"^6.0.0","postcss-load-config":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.1.0","nyc":"^15.0.0","uuid":"^8.0.0","eslint":"^6.8.0","sugarss":"^2.0.0","prettier":"~2.0.0","coveralls":"^3.0.0","postcss-import":"^12.0.0","eslint-config-problems":"4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_7.1.2_1598922424816_0.9310131714223229","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"postcss-cli","version":"8.0.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@8.0.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"ryanzim","email":"opensrc@ryanzim.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"bin/postcss"},"dist":{"shasum":"f4930e9ef201b08e62661483607bfd9efc74b596","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-8.0.0.tgz","fileCount":9,"integrity":"sha512-WgQIz1tc8htjob2DULE6dTssDzItuBh3UbscdrAlvid7M6X2WBZUrHCaLMtIuFkHFijAnimIq3nkpXV6FdDTSg==","signatures":[{"sig":"MEQCIATE7jN7XuZ/VpjeQsTZ2wMNo7+3kek/f+LcZIZR7wrwAiBoNnnZHEiTLDEiJG4Kxx8Qokh6Ch28B9BZWhQzDodWzg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31188,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfaQ+QCRA9TVsSAnZWagAA+xgP/0wartvkrzuuqIOtLvvz\nof5c4w3taSWDm0jXdc7sHyYhTBij+gbpcfwGHy0yBMxK4RFSi5YPLt1cyf0i\n00aZT4+1CVNmDQfRSrjhy5ozlXoI/ccMjtDi5O5v2f+qW931CcxYIe1FWqsu\nMi1X2d5uBXZmkx0RHTs0g0GxhKmgUETrVKCwbkzCMb6DxJDiop9xK2qCGZ8p\nsyKTo/mDo5MjU4zT+VTWJAYJ5kdtSaWktrIoQgZzMBHHZ8ji0ld4xhtCovLP\ngsUi5+gafWNaQ+icDUtvG6yCyjTJa3Qf3JTfPrVOpibQKvI0DiiJcxdnpp5n\nMqmUsHDkkWud19zZBgjDTJ11rwHxR/OZHXKiB9d5dWLufRqKClBM6Ppzzg0h\nS+P7eeFLlE0eRlnKnVFsu47/j/iyU6oIU7BLRZjGMRARqbHleLUwbsW2GmK6\nW+4ApkosHgrqsumThcHZNgBtFfAX1KeO0au/G6EJH2aKr71k0iftVs4A/lDT\nFnaMPylvJuIAWQHMsodCSvab1k6W4ToojOea8+hw5y8CBI4EHOwUl9ek5ivn\nxFP6dnVt4wSmH3NzflgJBV6t0/oKxhGsM/if+wY5a7+jyN8bJxlkQzfA2f1O\nWA6trGmrQ+2z4+I2jfyssiJd/R+h8CBP6PIY1Z612G4NrxbXfnIvmrJ7SpPD\nxjfO\r\n=D+3B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=10"},"gitHead":"9e03d5c001a68027d569bf8c10fe3e448a40851d","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"6.14.8","description":"CLI for PostCSS","directories":{},"_nodeVersion":"14.10.1","dependencies":{"chalk":"^4.0.0","yargs":"^16.0.0","globby":"^11.0.0","chokidar":"^3.3.0","fs-extra":"^9.0.0","get-stdin":"^8.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.9.0","postcss-reporter":"^7.0.0","postcss-load-config":"^2.1.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.1.0","nyc":"^15.0.0","uuid":"^8.0.0","eslint":"^7.8.0","postcss":"^8.0.4","sugarss":"^3.0.0","prettier":"~2.1.0","coveralls":"^3.0.0","postcss-import":"^12.0.0","eslint-config-problems":"5.0.0"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_8.0.0_1600720783839_0.27578484629573796","host":"s3://npm-registry-packages"}},"8.1.0":{"name":"postcss-cli","version":"8.1.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@8.1.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"ryanzim","email":"opensrc@ryanzim.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"bin/postcss"},"dist":{"shasum":"cc93de3c652bf167a213ef689a855ae7fb1c8745","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-8.1.0.tgz","fileCount":9,"integrity":"sha512-FYuV5zyYX53X5RywInxjWLqHZ4oCBC3nDwrHYU3Z75mFqUo5IHfbeY593heWSagG90nPnXq3tXCck8+2CUl8EA==","signatures":[{"sig":"MEYCIQC9L9yLWDMU66Okg2S+rQ22ga+U1g2VqMcnnij6W0RJTwIhALki4HK7z+zNTwZw2eCut2f47imaHNLMjDY27OywNEj5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31467,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJff6LcCRA9TVsSAnZWagAAAssP/iEwrgJuvd0Xf+EsrpY4\nFnQJxo7EW170287l4Jbtvcs8R9XC4HeucTfEJ5SpVMqFes5wpnkccVVLnHeb\nTGJKGl79qxKQrOU/OBz3FhkVnaSDfb60XGnuyzLdz2soatWdE7NJkZs1T6XE\nyCpo2Zz0i2QwD0v4IJKeFJBeBk/3WwOK+ax+y9IJXFu7Zsuvvcmc0wqb0L7Z\ntZUsq/OYnIlh+JRjcP79K7Ozl+cGZtT5VFB2syEawq3vz4cFZu0J6ZlndoS7\nlmtvRy2zQPuQPpefjPy2O9pBwWnEvAXd9yJm/s4zAebHU6EZDHbmo0NvGrB0\nvcf0JupXp2nAsxYIAVCW8RynOCuYn+6e8AF3hZz5y15dfj7XhYEihwAaOGaI\nRio/F2A8nk/YSU/yrWpOhoLpzI+xog528tygF7PJscF1bO6F5ACnfEyIzBW1\n1BmC52n4nqUDjBmuw2E6nqJKhZtfBKO3FUPDKfLPuGFCxJC9UxSaKSQ64mTt\nX9VhJ3e1EbUGSNIzSJ6pJsrrihcN6gnEyN4RdLGBjrlw/FeIoEu9uhxdA+au\nlWCR9r3OH1scYxOsqEEuD95/Ue/7QnOcCs/qeghK0PQ41dqSUWXpSOTzhfEb\nMLyoZTLyuZoKM0yOlWSkk4TWxCx0iifKSWS7gBo3P2RDw/WHbX/N8LeqRVxL\nC0Wt\r\n=aLfe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=10"},"gitHead":"c94c1885a97f30627ba31c386fce0d8eed483a71","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"6.14.8","description":"CLI for PostCSS","directories":{},"_nodeVersion":"14.10.1","dependencies":{"chalk":"^4.0.0","yargs":"^16.0.0","globby":"^11.0.0","chokidar":"^3.3.0","fs-extra":"^9.0.0","get-stdin":"^8.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.9.0","postcss-reporter":"^7.0.0","postcss-load-config":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.1.0","nyc":"^15.0.0","uuid":"^8.0.0","eslint":"^7.8.0","postcss":"^8.0.4","sugarss":"^3.0.0","prettier":"~2.1.0","coveralls":"^3.0.0","postcss-import":"^12.0.0","eslint-config-problems":"5.0.0"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_8.1.0_1602200283834_0.4635245472615672","host":"s3://npm-registry-packages"}},"8.2.0":{"name":"postcss-cli","version":"8.2.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@8.2.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"ryanzim","email":"opensrc@ryanzim.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"bin/postcss"},"dist":{"shasum":"f94ad3792e4daece87f70fb4bda9368bb02bbf60","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-8.2.0.tgz","fileCount":9,"integrity":"sha512-N7tgPpB/2yXk/04irc/RiImCkftVw42STaploQBeOT1xvrIkyG+YW+TsHAJ57xWwL+b0AjXnqs5/RL/1XIh2Lw==","signatures":[{"sig":"MEUCIDEvFsn+kyWvfBLJDcU3XEMgB8RL6OsfQJ84XiXCm4XvAiEAihOVrKoJcXmMaLkTvs10brn8tgQ2VkYeSUsm6+YAeRk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31671,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfm0VjCRA9TVsSAnZWagAAaHIQAIejSj6ldIFxCTPyyke9\nCKDyTE36dp2UF6Yp/JWmPgQXQpa+7Na8mLJ3nqt5ZsN1KMFNDXzt96PVZj/N\n0nwbWsP+nioY+OUo4BMTGG6oiXh0yuEIahowLVVuxY7KxLAGPly7PRHByakb\nw3ejRakK/5n6+W9usnsk8QF1+G6uhruObfHxRYFtwMwTXm1svtQyv4zjzncB\nkznSJvLJw8zn7b+/ihpDlZo6gq6nmctKRwQEoy+SlyfFY1Qw6COAdG3OCNMn\n53oULhr5nS25hZzOxK/PtpxqBa4fFwlvQ7JS1UW/XA0RbAI9e7IA4Gp1VPrM\n88Y/Chi7FfN4oTFivDTyEmkeHlc8T8Nv7XxeDfyyyAYpJnTiBcTBAhgMp3KW\nlj7a+L9sw0KlyUyiItwO/B19Se0pEYmbgsk+le/NncL507owWzCLqn/S7jFm\nWkkxNkWr7KLpW2o+cCQ7fZ7cgvX0k7CvwopFgn6shVlxRb/0YdFijvkhIDMI\nx7nUdSRIXKK/54RW3lFQ8dxvl01YTBoWN5Jmpwrg4V7Vu0Put1o6IYJdkqs7\n/dGoBSYyEvJR9V/VsZR326keJGQuQZeNxJ3AbnDqqN9AFDrcoYmLUR+QI7RL\nPJBPKvW5zOxgPQVHbq55vmvd8xogDQo951XYpUSvTg1r7PCp7gi6cG8CRW8k\nVcOU\r\n=xlUC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=10"},"gitHead":"e279de81cb48a008070fea20f9db2e6db2feb675","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"6.14.8","description":"CLI for PostCSS","directories":{},"_nodeVersion":"14.10.1","dependencies":{"chalk":"^4.0.0","slash":"^3.0.0","yargs":"^16.0.0","globby":"^11.0.0","chokidar":"^3.3.0","fs-extra":"^9.0.0","get-stdin":"^8.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.9.0","postcss-reporter":"^7.0.0","postcss-load-config":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.1.0","nyc":"^15.0.0","uuid":"^8.0.0","eslint":"^7.8.0","postcss":"^8.0.4","sugarss":"^3.0.0","prettier":"~2.1.0","coveralls":"^3.0.0","postcss-import":"^12.0.0","eslint-config-problems":"5.0.0"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_8.2.0_1604011363037_0.20350671567485135","host":"s3://npm-registry-packages"}},"8.3.0":{"name":"postcss-cli","version":"8.3.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@8.3.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"ryanzim","email":"opensrc@ryanzim.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"bin/postcss"},"dist":{"shasum":"fa06c96cbd0620768c788cae74ba462622a9013c","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-8.3.0.tgz","fileCount":9,"integrity":"sha512-GqWohD9VmH+LCe+xsv6VCdcgNylNBmsrbxJlyXUGteGGdcmazj2YxSiJMUmQpg8pE6LRox9idtsTB7JZq5a+rw==","signatures":[{"sig":"MEUCIQDeYzPE89AN2rLdOAqzyfop/c4iTICwToq9IHZFwGE7zgIgeu93qVKadbCqRyTLSO70mAUwlohNBJp2faMjuqNeHs8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31866,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfs+kmCRA9TVsSAnZWagAAKEwP/0Q68T1IxqIY/Kus3573\nQ5oNsc+uPCzi5YIPOtnbB87LcU7fpb782Vk2qy6mbEe7AvdB/lb+iINbc78p\nq8lC/ignWsNsxxlNCIou70tNoLZEQarkDtPh//HW8gI4Oa7ycLlabFykU0hU\nPDVwfO3OkhB3Mr3mBf89wx+28pLExhHpxN/W+v5Z/+raK5SfXjk20laf7ElT\nHAZP073gf4wIgVsVRylYVZ6QNcYVGPehwiuF2f8x79/oF6qgtIvtEX2fpSW4\nAGfjObNA/1eVXEQJV5Hl7RxtNne7vrRi5mNPAtg6uXCalaG3SWGRm9V9lZCM\ngHDUG6VpodlxbsyHtLxJbOjJ/pROp91GuGAvy+DyXw+6r484t2THAG6U7yqt\nLtLoooUL7m41DqjbIv8Sj0ZZ0rj+u12NlpPFY+QHvMrhKcNdX4uNBoEuwSZ+\nSdP9u4OAauRdPhA3JSHKZTcBKS4fGMneVNrIlTmhnq98dUVMfsc8H2TcTn1h\ntQVd/h4SenLglVvdJSH3J1tTqshWj67AYp0jHAEpottS9W7xih4byfV/ms80\nNJ3WZ5fHYuhFaoWA5Fb6dcXTk+kvP08tfVoQiVfc5UVDiWxc6ft8U2+VSnc7\nPaEjyN2lbLOEwDK2LCkKP09M4jZ8LVfWl5/T2i6HiJD4bDq693yNRGdvKGgt\njKsI\r\n=m/ma\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=10"},"gitHead":"1e7bf403f352caf67b45d48870e29900e6b9aa9e","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"6.14.8","description":"CLI for PostCSS","directories":{},"_nodeVersion":"14.10.1","dependencies":{"chalk":"^4.0.0","slash":"^3.0.0","yargs":"^16.0.0","globby":"^11.0.0","chokidar":"^3.3.0","fs-extra":"^9.0.0","get-stdin":"^8.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.9.0","postcss-reporter":"^7.0.0","postcss-load-config":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.1.0","nyc":"^15.0.0","uuid":"^8.0.0","eslint":"^7.8.0","postcss":"^8.0.4","sugarss":"^3.0.0","prettier":"~2.1.0","coveralls":"^3.0.0","postcss-import":"^12.0.0","eslint-config-problems":"5.0.0"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_8.3.0_1605626150378_0.22993453191612767","host":"s3://npm-registry-packages"}},"8.3.1":{"name":"postcss-cli","version":"8.3.1","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@8.3.1","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"ryanzim","email":"opensrc@ryanzim.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"bin/postcss"},"dist":{"shasum":"865dad08300ac59ae9cecb7066780aa81c767a77","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-8.3.1.tgz","fileCount":9,"integrity":"sha512-leHXsQRq89S3JC9zw/tKyiVV2jAhnfQe0J8VI4eQQbUjwIe0XxVqLrR+7UsahF1s9wi4GlqP6SJ8ydf44cgF2Q==","signatures":[{"sig":"MEUCIHCmbaelDYIFu65n1GsjW76AluqTeXj4I9DAgOCEQipXAiEAzWscsssoWaU/KDS71KE7fhoJWHusmk9UIgIgLqHTxxE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32336,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf1NpACRA9TVsSAnZWagAAo+0P/RMX0Ig7fzK4w28ZSs4F\nOfNKcbGv7abqLL55kEIyYM40vcRhREPC5RyEps+78OBAwcix7YxN86cCH8IB\nPXo0Y17lGPBpDNPUJcCoAFjpmOB6j5JeAG2JtrIiN+bYh8/Y/4yAkIlFFA3A\nU/GvXe4YEPLxJnb2K45kVWOnDIpIm5lpDPSWcLnYb2m7RKOeDwmhF/fm3oYs\nTsVPAADKcWexrPwswbC+aWJxNSVS/xg/3iTM4wp44CxV8/YxrrRo32ybAASQ\nj2n4rcIF5t5IqNpc674KAfk7pwJDeiXf72fbAqLw1mYCowlxlS9lFaAnwK4v\nfgpjr9fHUYkc+rInjYQqhdR4nh/CQQn1bAD2HzZ+fWzy9V/FhIml5XaQYdSp\ny0+acT/RIRf/hJ5IFt8R3mBMRA659FkaiFmfKH5qmsQ8nRt4ufMHKsIeeLMj\ngzXIuBpXVMt2QnKDPWTU9Q0WNcU8xlnD39HnoA9Ka3dyJrg5VqxN9z/pYeyJ\nFOF+ZLl4nL4jMTJ7w4bp9O7o2EkYPF0cuu0/CnHcXYnTZ14EdJ4OSptbom8k\nMCAS2QVnTHuyfR6A652ZWeKG1pyr++2O68/CjXGw6WVzYZrvuscaZ0E8MFD5\nd1YUAHyEqzE+1psvWDhg5yIw8vgXE7Wwqua+5a+NVYvg+29NyAlBW1JZGiF3\n7yJC\r\n=dYBF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=10"},"gitHead":"35545bdb384d0e75ffa4385de960968f4a6cd28d","scripts":{"ci":"eslint . && nyc ava -v && npm run prettier -- --list-different","test":"nyc ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"6.14.8","description":"CLI for PostCSS","directories":{},"_nodeVersion":"14.10.1","dependencies":{"chalk":"^4.0.0","slash":"^3.0.0","yargs":"^16.0.0","globby":"^11.0.0","chokidar":"^3.3.0","fs-extra":"^9.0.0","get-stdin":"^8.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.9.0","postcss-reporter":"^7.0.0","postcss-load-config":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^3.1.0","nyc":"^15.0.0","uuid":"^8.0.0","eslint":"^7.8.0","postcss":"^8.0.4","sugarss":"^3.0.0","prettier":"~2.2.0","coveralls":"^3.0.0","postcss-import":"^12.0.0","eslint-config-problems":"5.0.0"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_8.3.1_1607785024191_0.5875896066160657","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"postcss-cli","version":"9.0.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@9.0.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"ryanzim","email":"opensrc@ryanzim.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"index.js"},"dist":{"shasum":"5e605987900bf6663f786e0e4de715a65603aadd","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-9.0.0.tgz","fileCount":9,"integrity":"sha512-tg6MK/jYyO7Ye9PObPYkjCQa7Bh2K6dA3a3I0muczRuw4T4HAtOTpPR+nOCw+On+WDB2sdsbGOsjlwO8BNRbUw==","signatures":[{"sig":"MEUCIQCq0IpTXdWy95t4+T2wvhTBb+8U+cQVge0l0rADwgtr+wIgOIO7bnjJ5KhbLUaibOu2yfHGtEXGfObdiXHbH8hYMiU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23488},"type":"module","engines":{"node":">=12"},"gitHead":"b90bd7f2e3ec08db50157d11fe83e24f068b9abf","scripts":{"ci":"eslint . && c8 ava -v && npm run prettier -- --list-different","test":"c8 ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"7.21.1","description":"CLI for PostCSS","directories":{},"_nodeVersion":"16.9.1","dependencies":{"slash":"^4.0.0","yargs":"^17.0.0","globby":"^12.0.0","chokidar":"^3.3.0","fs-extra":"^10.0.0","colorette":"^2.0.0","get-stdin":"^9.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.11.0","postcss-reporter":"^7.0.0","postcss-load-config":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.9.0","ava":"^3.1.0","uuid":"^8.0.0","eslint":"^7.8.0","postcss":"^8.0.4","sugarss":"^4.0.0","prettier":"~2.4.0","coveralls":"^3.0.0","postcss-import":"^14.0.0","eslint-config-problems":"5.0.0"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_9.0.0_1632501596616_0.13417079035455326","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"postcss-cli","version":"9.0.1","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@9.0.1","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"ryanzim","email":"opensrc@ryanzim.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"index.js"},"dist":{"shasum":"4c3c5dac092fd048457ffc337eeff9e6415d55e7","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-9.0.1.tgz","fileCount":9,"integrity":"sha512-zO160OBaAZBFUWO+QZIzEKMjnPIc5c61dMg1d7xafblh9cxbNb6s16ahJuP91PcVsu//gqr7BKllJxRiRDsSYw==","signatures":[{"sig":"MEUCIQDBs9+DYtn5IXkOkF6DpeE+oxM+CWcCdXBErGs0JyX+kgIgC44ECTtwq6X3JOUa5J8KRbOAUIKU1+OIc3sbZNu/el8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23582},"type":"module","engines":{"node":">=12"},"gitHead":"392c4f51f6ed11d5fdb857e486005ab29b09b41c","scripts":{"ci":"eslint . && c8 ava -v && npm run prettier -- --list-different","test":"c8 ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"7.21.1","description":"CLI for PostCSS","directories":{},"_nodeVersion":"16.9.1","dependencies":{"slash":"^4.0.0","yargs":"^17.0.0","globby":"^12.0.0","chokidar":"^3.3.0","fs-extra":"^10.0.0","get-stdin":"^9.0.0","nanocolors":"^0.2.11","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.11.0","postcss-reporter":"^7.0.0","postcss-load-config":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.9.0","ava":"^3.1.0","uuid":"^8.0.0","eslint":"^7.8.0","postcss":"^8.0.4","sugarss":"^4.0.0","prettier":"~2.4.0","coveralls":"^3.0.0","postcss-import":"^14.0.0","eslint-config-problems":"5.0.0"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_9.0.1_1632840256045_0.8568618607186032","host":"s3://npm-registry-packages"}},"9.0.2":{"name":"postcss-cli","version":"9.0.2","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@9.0.2","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"ryanzim","email":"opensrc@ryanzim.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"index.js"},"dist":{"shasum":"96081b2fe1e94e7c4a0b4d6bb361aba16d541045","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-9.0.2.tgz","fileCount":7,"integrity":"sha512-08Wujoy7YGhKCFrGsT9OXqWjtHlGQ+JmyaD/4McjCiwor2IUTRVzXiJd+xmLTGdSWjceS6/TePaJQwBlkVWHiw==","signatures":[{"sig":"MEUCIDPDQUhxoX2r1rU8rjI4B0UgyYIoJ0A7YeqCjPifRim2AiEArNr8wboMzmM1mKpY993OktBL0DQR2mjvDC3eE0eK7sQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22268},"type":"module","engines":{"node":">=12"},"gitHead":"538b6f52442fba732190fff93ab8d977be3b667a","scripts":{"ci":"eslint . && c8 ava -v && npm run prettier -- --list-different","test":"c8 ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"7.21.1","description":"CLI for PostCSS","directories":{},"_nodeVersion":"16.9.1","dependencies":{"slash":"^4.0.0","yargs":"^17.0.0","globby":"^12.0.0","chokidar":"^3.3.0","fs-extra":"^10.0.0","get-stdin":"^9.0.0","picocolors":"^1.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.11.0","postcss-reporter":"^7.0.0","postcss-load-config":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.9.0","ava":"^3.1.0","uuid":"^8.0.0","eslint":"^7.8.0","postcss":"^8.0.4","sugarss":"^4.0.0","prettier":"~2.4.0","coveralls":"^3.0.0","postcss-import":"^14.0.0","eslint-config-problems":"5.0.0"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_9.0.2_1636066874354_0.21050101613336225","host":"s3://npm-registry-packages"}},"9.1.0":{"name":"postcss-cli","version":"9.1.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@9.1.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"ryanzim","email":"opensrc@ryanzim.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"index.js"},"dist":{"shasum":"1a86404cbe848e370127b4bdf5cd2be83bc45ebe","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-9.1.0.tgz","fileCount":7,"integrity":"sha512-zvDN2ADbWfza42sAnj+O2uUWyL0eRL1V+6giM2vi4SqTR3gTYy8XzcpfwccayF2szcUif0HMmXiEaDv9iEhcpw==","signatures":[{"sig":"MEYCIQC8zUz/A9hI+Myf4kkfM8UCtlYKlRpwRwCRtzNogagLVAIhAMoAsuC/fwyrCx9ov4e2bZVrje8MyrHWBn9VTn5YR/Sb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22516,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhs79qCRA9TVsSAnZWagAAcw0P/j56mesMoYX07Bf1ieK6\nRH3OOAmfy3e04CzaFTO6My2BopHWsNE0HfXOFgtpeeaqU2Mv8fPIPKFU35x4\nQPkQQSJzV3JhnGWb3HZsMuZz7knUBic5AmQfy1iuypkWJ/JYfba3SiZnPJlL\nVSz06fQJ94dDZVASKS2Z2Z5A+xMUwbxVen7Swr6icA232ZJ3i5nlJyqwUDFT\n7/NBiGJPfUbqYPm5HRXF1MavlHq3ZVIkiQzLgbDjUhwILuLSWOu4rsqpyuvH\nI4qZRb0c+yh0U99mov9IFJTdJlTM2AGLZXJgly8oT7IDkTueUIcwhG3nYfIo\nAdXcPcm3CmHrzX3RQQEkrXR8JKbf6jX1ThtItYE6HOE1yNeEy8P+u4zfIRD2\nm+IjIhMPZZZWLrIkVojm33VzplQhRN88lMVYSFmfuCnzTmRpJE64Kuo/J3xI\nvI5LQDYi81BEGGwJ9GZQScx7vM/7+XqlyLVk8hEcOT69ZDl6S1avFz9tP8ZU\nC3d/2eWxr9/5fuZb/FZb/Z5anDjwNVU883G4+Jctl7gI9Ff7Y3x76+hSdgBd\nj+3l/zvB9o9lpVimI8yUKVPFS9y+CBv8d/+SG3EmPmX+OCUW49KR5I3w2kLB\nAoOcOWqUs+e2u91AKfF6QsrTr/rzvJYiOFrKp6EJsoHVQKW3ZkEiHnovF3OA\nXwVI\r\n=T0YE\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","engines":{"node":">=12"},"gitHead":"c9f69057ddefd4595faa14b847d57f148211ce62","scripts":{"ci":"eslint . && c8 ava -v && npm run prettier -- --list-different","test":"c8 ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"7.21.1","description":"CLI for PostCSS","directories":{},"_nodeVersion":"16.9.1","dependencies":{"slash":"^4.0.0","yargs":"^17.0.0","globby":"^12.0.0","chokidar":"^3.3.0","fs-extra":"^10.0.0","get-stdin":"^9.0.0","picocolors":"^1.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.11.0","postcss-reporter":"^7.0.0","postcss-load-config":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.9.0","ava":"^3.1.0","uuid":"^8.0.0","eslint":"^8.2.0","postcss":"^8.0.4","sugarss":"^4.0.0","prettier":"~2.5.0","coveralls":"^3.0.0","postcss-import":"^14.0.0","eslint-config-problems":"6.0.0"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_9.1.0_1639169898002_0.4951615140771797","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"postcss-cli","version":"10.0.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@10.0.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"ryanzim","email":"opensrc@ryanzim.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"index.js"},"dist":{"shasum":"404e468d1ff39fb5ead3f707e2021be7cd3f8c9f","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-10.0.0.tgz","fileCount":7,"integrity":"sha512-Wjy/00wBBEgQqnSToznxLWDnATznokFGXsHtF/3G8glRZpz5KYlfHcBW/VMJmWAeF2x49zjgy4izjM3/Wx1dKA==","signatures":[{"sig":"MEYCIQDzosdASaXNMn92B9LwFwCyVrKY1oJxn/95kqTlE8CxVgIhAJZRsvmHYOYZ1UAB2SjXfwfij6vMOhl9cYbXzwQJxT60","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22517,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivQDaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpP0RAAi4Dqn2dwm4d755+NItUttUz7aHYUY3qreF4jpenuMNgk0JJg\r\n5huZk6EQyex1zBT14T866Km8LHb1GlzWxRNoLF/7S7s3Cwh6EhusPOltX7pF\r\nzGRTLofJwW/s25piMpKoN/gXzzh7XdsFxf0ikMiNZaua63smhPNvencnpT7j\r\n6QtkSMvun1peUHZ5QWZQb4l7CclKMCICBGl82ZdVTVHZA7eBh6blLK7FMLnJ\r\nQ7SAEc+qq0wYTC0Khw9BpxanizQQIguLE8lCOzfYzv6vrJ/tmlzs//Ae1Vp0\r\n1ulpbQRDNz26riZ6CYTt1IL+PL39UxWPbQkhuNZ7dXATFjYJrM/ZEDmC3flv\r\n3LjLFSX29bhCOfRrQWqlS9WQzZ3eb7M66QMKVaGwWq+Rm2F6DM5HuAFtj6bE\r\n5mo4Qd7Lha2PQrPqRjVDgyjP0MYF2hHEaIM4WCnjlHPK7vpSE0auyGDn6OAH\r\nxnaF/PgZstu2nGnDvAuPvZbv5gTxsMZK1B8I0gGPo9jlg8taHoHWyQ7WfDvj\r\nbyqwLTzu5pMdG6U+R8pEdJPS7QNC7YmdfYVS4If/K4Fm/D7tiuzdLoR6RieP\r\n4EHTBDA8AUhg6e+26QMf1BcA7rT0Tyo8+rrg/fW3DumKZVT2A07XGVTuCrUp\r\nvId4VLHwtTEvAjbcYeLObhgGoD1Daj313hI=\r\n=Djtd\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","engines":{"node":">=14"},"gitHead":"e5419b5dd587f81a78acbc0f68b33efe150d9ef3","scripts":{"ci":"eslint . && c8 ava -v && npm run prettier -- --list-different","test":"c8 ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"8.11.0","description":"CLI for PostCSS","directories":{},"_nodeVersion":"16.15.1","dependencies":{"slash":"^4.0.0","yargs":"^17.0.0","globby":"^13.0.0","chokidar":"^3.3.0","fs-extra":"^10.0.0","get-stdin":"^9.0.0","picocolors":"^1.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.11.0","postcss-reporter":"^7.0.0","postcss-load-config":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.9.0","ava":"^3.1.0","uuid":"^8.0.0","eslint":"^8.2.0","postcss":"^8.0.4","sugarss":"^4.0.0","prettier":"~2.7.0","coveralls":"^3.0.0","postcss-import":"^14.0.0","eslint-config-problems":"6.0.0"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_10.0.0_1656553690644_0.8049957635719802","host":"s3://npm-registry-packages"}},"10.1.0":{"name":"postcss-cli","version":"10.1.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@10.1.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"ryanzim","email":"opensrc@ryanzim.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"index.js"},"dist":{"shasum":"f6658c4998a1c35bd66cd71009132b2d12e04f80","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-10.1.0.tgz","fileCount":7,"integrity":"sha512-Zu7PLORkE9YwNdvOeOVKPmWghprOtjFQU3srMUGbdz3pHJiFh7yZ4geiZFMkjMfB0mtTFR3h8RemR62rPkbOPA==","signatures":[{"sig":"MEYCIQCY38SbF/aWuP9R4ViCpuV72FxNHaNxtv+8wyVHIAYZUgIhANjlwScpXJbCoVUAXzge+zmu2I9vRhvnidfRBfr1421V","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22618,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjhnHJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqPEQ//cZMfuJsHr/x57HczdkwJ812fYQjfBj2vMDMj4dHuPr8+nqe9\r\nTjBTII5gce34isy4nMJdIrNRtLp346ZKnxzMRFQ780lqi05MDqKoOxRMmhbi\r\nrYyIcZVWVTzutuQ0BNY98OxIBBbCpYYU9NCKP+egfPHmlnoHzTv9Mo492jz3\r\nOaDE1pqaiqRiv7RkSsoQpvUaBSPfXDcypuP9Fygq9ety5z/KZLYZSzjjHYMx\r\nSBTnjOJPYzwkNCNH0N7ZTQs4zOEYwqi8PyW56ST44uAwP9Jk51X9xh48Iffu\r\nloVjpsmJAB8ddFEtpy2RSPRO3NT/ktumaPSdYcty/Q2NoEohNdfW3SQN9LC6\r\n1EYiDLt4bp/fFv16RzX/ukl4iOtZ1d1fU/I57VPvCS7MiN9QIqZLZFMlz954\r\nR/wXHhs+8ysWtp9BrKB5wDXF1brgY//P80hXmXHQwR3+9Qsk66KgnmCBgkdS\r\n/CoNfRXdFzItbH2Tw83HAefjtr8r3KDHPDSPDMluRFerEcAG1PlN/8vWis1e\r\n/LEvQDiELNP9YK2oQwVjDHhF1IgqpiMMk5ve2Fx8jLUpCNNrZXldWna4AYiA\r\nk8ng6YWI7znCf2zSncIRCXArC0hvlusH3HNEltE5ZApsqLIBQAigVwaNWTzU\r\nwl7/bFC74kMZF/ZRxjKw1g69HR5rcVUNROA=\r\n=hBqT\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","engines":{"node":">=14"},"gitHead":"a3574b1f67e4d8c1a78b6b72b501354f545c34d2","scripts":{"ci":"eslint . && c8 ava -v && npm run prettier -- --list-different","test":"c8 ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"8.5.5","description":"CLI for PostCSS","directories":{},"_nodeVersion":"16.15.0","dependencies":{"slash":"^5.0.0","yargs":"^17.0.0","globby":"^13.0.0","chokidar":"^3.3.0","fs-extra":"^11.0.0","get-stdin":"^9.0.0","picocolors":"^1.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.11.0","postcss-reporter":"^7.0.0","postcss-load-config":"^4.0.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.9.0","ava":"^3.1.0","uuid":"^9.0.0","eslint":"^8.2.0","postcss":"^8.0.4","sugarss":"^4.0.0","prettier":"~2.8.0","coveralls":"^3.0.0","postcss-import":"^15.0.0","eslint-config-problems":"7.0.1"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_10.1.0_1669755337006_0.5287073990575928","host":"s3://npm-registry-packages"}},"11.0.0":{"name":"postcss-cli","version":"11.0.0","keywords":["cli","postcss","postcss-runner"],"license":"MIT","_id":"postcss-cli@11.0.0","maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"ryanzim","email":"opensrc@ryanzim.com"}],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"homepage":"https://github.com/postcss/postcss-cli#readme","bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"bin":{"postcss":"index.js"},"dist":{"shasum":"649f4b9af447501feb6cbca7f7505a132f90442b","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-11.0.0.tgz","fileCount":7,"integrity":"sha512-xMITAI7M0u1yolVcXJ9XTZiO9aO49mcoKQy6pCDFdMh9kGqhzLVpWxeD/32M/QBmkhcGypZFFOLNLmIW4Pg4RA==","signatures":[{"sig":"MEUCIQCejR69oJuwSoBjHyAHnm6l/F7OGDjKp2Pd3ZB7zgEXPgIgPMPYTPlZEYOi9KB8A0+lwjfD8BLoyBc77G0XMAHNWEg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22636},"type":"module","engines":{"node":">=18"},"gitHead":"ac801f1f91e22fc36a25af5fc2c36266d3f0c75d","scripts":{"ci":"eslint . && c8 ava -v && npm run prettier -- --list-different","test":"c8 ava -v","clean":"node test/helpers/clean.js","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\""},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"repository":{"url":"git+https://github.com/postcss/postcss-cli.git","type":"git"},"_npmVersion":"9.6.7","description":"CLI for PostCSS","directories":{},"_nodeVersion":"18.17.1","dependencies":{"slash":"^5.0.0","yargs":"^17.0.0","globby":"^14.0.0","chokidar":"^3.3.0","fs-extra":"^11.0.0","get-stdin":"^9.0.0","picocolors":"^1.0.0","read-cache":"^1.0.0","pretty-hrtime":"^1.0.3","dependency-graph":"^0.11.0","postcss-reporter":"^7.0.0","postcss-load-config":"^5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^8.0.0","ava":"^3.1.0","uuid":"^9.0.0","eslint":"^8.55.0","postcss":"^8.0.4","sugarss":"^4.0.0","prettier":"~3.1.0","coveralls":"^3.0.0","postcss-import":"^15.0.0","eslint-config-problems":"8.0.0"},"peerDependencies":{"postcss":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-cli_11.0.0_1701810258456_0.7634863830882479","host":"s3://npm-registry-packages"}},"11.0.1":{"name":"postcss-cli","version":"11.0.1","description":"CLI for PostCSS","type":"module","engines":{"node":">=18"},"bin":{"postcss":"index.js"},"scripts":{"ci":"eslint . && c8 ava -v && npm run prettier -- --list-different","clean":"node test/helpers/clean.js","prettier":"prettier --single-quote --no-semi \"**/*.{js,md}\"","format":"npm run prettier -- --write && eslint . --fix","pretest":"npm run clean && npm run format","test":"c8 ava -v"},"dependencies":{"chokidar":"^3.3.0","dependency-graph":"^1.0.0","fs-extra":"^11.0.0","picocolors":"^1.0.0","postcss-load-config":"^5.0.0","postcss-reporter":"^7.0.0","pretty-hrtime":"^1.0.3","read-cache":"^1.0.0","slash":"^5.0.0","tinyglobby":"^0.2.12","yargs":"^17.0.0"},"devDependencies":{"ava":"^3.1.0","c8":"^10.0.0","coveralls":"^3.0.0","eslint":"^9.22.0","eslint-config-problems":"9.0.0","globals":"^16.0.0","postcss":"^8.0.4","postcss-import":"^16.0.0","prettier":"~3.5.0","sugarss":"^5.0.0","uuid":"^11.0.0"},"peerDependencies":{"postcss":"^8.0.0"},"keywords":["cli","postcss","postcss-runner"],"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"repository":{"type":"git","url":"git+https://github.com/postcss/postcss-cli.git"},"bugs":{"url":"https://github.com/postcss/postcss-cli/issues"},"homepage":"https://github.com/postcss/postcss-cli#readme","license":"MIT","_id":"postcss-cli@11.0.1","gitHead":"7bea18069b334b0d537d5c772ce20b1637c7e5d6","_nodeVersion":"22.8.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-0UnkNPSayHKRe/tc2YGW6XnSqqOA9eqpiRMgRlV1S6HdGi16vwJBx7lviARzbV1HpQHqLLRH3o8vTcB0cLc+5g==","shasum":"341188ff7b26b19b206ca923ae2bd979751e7da7","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/postcss-cli/-/postcss-cli-11.0.1.tgz","fileCount":7,"unpackedSize":22739,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQC6i5BrStHh+RRRZt5G2u5DeKoWEgInk451uKKn8CoQZwIgC9lbdqshVtl+qwnxW6hHmiL7YISvpdGviyJgtse9qLM="}]},"_npmUser":{"name":"ryanzim","email":"opensrc@ryanzim.com"},"directories":{},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"},{"name":"ryanzim","email":"opensrc@ryanzim.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/postcss-cli_11.0.1_1741801204064_0.0848041972304554"},"_hasShrinkwrap":false}},"name":"postcss-cli","time":{"created":"2015-03-12T03:47:11.625Z","modified":"2026-04-17T13:29:27.309Z","0.1.0":"2015-03-12T03:47:11.625Z","0.2.0":"2015-03-13T04:17:53.507Z","0.3.0":"2015-03-20T02:40:38.561Z","1.0.0":"2015-03-22T15:55:07.606Z","1.1.0":"2015-03-28T19:46:05.514Z","1.2.0":"2015-04-03T02:20:14.716Z","1.2.1":"2015-04-20T15:06:52.618Z","1.3.0":"2015-04-28T13:27:47.543Z","1.3.1":"2015-05-03T22:22:05.574Z","1.4.0":"2015-07-13T02:31:12.435Z","1.5.0":"2015-07-20T13:23:30.955Z","2.0.0":"2015-08-24T14:45:21.364Z","2.1.0":"2015-09-02T00:29:53.704Z","2.1.1":"2015-10-08T12:43:43.531Z","2.2.0":"2015-10-09T14:01:37.805Z","2.3.0":"2015-10-24T23:37:32.770Z","2.3.1":"2015-10-25T17:12:14.795Z","2.3.2":"2015-10-27T22:41:59.234Z","2.3.3":"2015-12-28T16:09:37.507Z","2.4.0":"2016-01-15T21:14:51.639Z","2.4.1":"2016-01-28T00:00:00.390Z","2.5.0":"2016-01-30T18:49:42.323Z","2.5.1":"2016-02-11T13:19:52.644Z","2.5.2":"2016-04-23T20:44:56.447Z","2.6.0":"2016-08-29T23:35:48.082Z","3.0.0-beta":"2017-02-17T14:04:08.551Z","3.0.0":"2017-03-15T23:57:31.845Z","3.1.0":"2017-04-04T14:05:58.205Z","3.1.1":"2017-04-04T14:58:48.858Z","3.2.0":"2017-04-21T22:07:53.014Z","4.0.0":"2017-05-09T14:51:17.435Z","4.1.0":"2017-06-10T15:58:17.713Z","4.1.1":"2017-09-08T15:15:10.406Z","5.0.0":"2018-02-06T18:27:51.326Z","5.0.1":"2018-06-18T12:36:40.559Z","6.0.0":"2018-07-18T22:00:18.738Z","6.0.1":"2018-10-18T01:54:17.838Z","6.1.0":"2018-12-20T00:20:43.329Z","6.1.1":"2019-01-04T16:21:03.785Z","6.1.2":"2019-02-22T14:03:28.290Z","6.1.3":"2019-07-08T16:54:45.764Z","7.0.0":"2020-01-07T16:37:36.201Z","7.1.0":"2020-01-09T13:32:58.246Z","7.1.1":"2020-04-27T17:18:47.042Z","7.1.2":"2020-09-01T01:07:04.948Z","8.0.0":"2020-09-21T20:39:43.972Z","8.1.0":"2020-10-08T23:38:03.983Z","8.2.0":"2020-10-29T22:42:43.153Z","8.3.0":"2020-11-17T15:15:50.539Z","8.3.1":"2020-12-12T14:57:04.381Z","9.0.0":"2021-09-24T16:39:57.153Z","9.0.1":"2021-09-28T14:44:16.175Z","9.0.2":"2021-11-04T23:01:14.511Z","9.1.0":"2021-12-10T20:58:18.142Z","10.0.0":"2022-06-30T01:48:10.809Z","10.1.0":"2022-11-29T20:55:37.193Z","11.0.0":"2023-12-05T21:04:18.683Z","11.0.1":"2025-03-12T17:40:04.232Z"},"contributors":[{"name":"Michael Ciniawky","email":"michael.ciniawsky@gmail.com"},{"name":"Ryan Zimmermann","email":"opensrc@ryanzim.com"}],"readmeFilename":"README.md","_id":"postcss-cli","homepage":"https://github.com/postcss/postcss-cli#readme"}