{"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"keywords":["css","less","scss","sugarss","lint","linter","stylelint"],"dist-tags":{"latest":"7.10.1"},"description":"A mighty, modern CSS linter.","readme":"# stylelint\n\n[![NPM version](https://img.shields.io/npm/v/stylelint.svg)](https://www.npmjs.org/package/stylelint) [![Build Status](https://travis-ci.org/stylelint/stylelint.svg?branch=master)](https://travis-ci.org/stylelint/stylelint) [![Build status](https://ci.appveyor.com/api/projects/status/wwajr0886e00g8je/branch/master?svg=true)](https://ci.appveyor.com/project/stylelint/stylelint/branch/master) [![NPM Downloads](https://img.shields.io/npm/dm/stylelint.svg)](https://www.npmjs.org/package/stylelint) [![Bountysource](https://www.bountysource.com/badge/tracker?tracker_id=9282518)](https://www.bountysource.com/trackers/9282518-stylelint?utm_source=9282518&utm_medium=shield&utm_campaign=TRACKER_BADGE)\n\nA mighty, modern CSS linter that helps you enforce consistent conventions and avoid errors in your stylesheets.\n\n## Features\n\n-   **Over one hundred and fifty rules:** Including those that:\n    -   **Catch errors**: e.g. invalid hex colors, indistinguishable colors, or overriding shorthand properties.\n    -   **Enforce best practices**: e.g. keeping specificity low or disallowing vendor prefixes in your source code.\n    -   **Control what languages features can be used**: e.g. whitelisting specific units, properties and functions, or disallowing certain selector types.\n    -   **Enforce code style conventions**: e.g. checking the spacing around the colon in declarations or specifying patterns for class selectors.\n-   **Support for the latest CSS syntax:** Including custom properties, range context for media features, calc() and nesting.\n-   **Understands *CSS-like* syntaxes:** The linter is powered by [PostCSS](https://github.com/postcss/postcss), so it understands any syntax that PostCSS can parse, including SCSS, [SugarSS](https://github.com/postcss/sugarss), and *experimental support* for Less.\n-   **Completely unopinionated:** Only enable the rules you want, and configure them with options that tailor the linter to your needs.\n-   **Support for plugins:** It's easy to create your own rules and add them to the linter.\n-   **Automatically fix some stylistic warnings:** By using [stylefmt](https://github.com/morishitter/stylefmt) which supports stylelint configuration files.\n-   **Shareable configs:** If you don't want to craft your own config, you can extend a shareable config.\n-   **Options validator:** So that you can be confident that your config is valid.\n-   **Well tested:** Nearly twenty five thousand tests cover the internals and rules.\n-   **Growing community**: Used by [Facebook](https://code.facebook.com/posts/879890885467584/improving-css-quality-at-facebook-and-beyond/), [Github](https://github.com/primer/stylelint-config-primer), [Wikimedia](https://github.com/wikimedia/stylelint-config-wikimedia), [GSA](https://github.com/18F/stylelint-rules/), and [WordPress](https://github.com/ntwb/stylelint-config-wordpress/) among others.\n\n## Example output\n\n![Example](https://github.com/stylelint/stylelint/raw/master/example.png?raw=true)\n\n## Getting started\n\nWith stylelint, it's easy to start linting your CSS:\n\n1.  Decide how you want to use stylelint:\n    -   [via the stylelint CLI](docs/user-guide/cli.md)\n    -   [via a plugin for your build tool](docs/user-guide/complementary-tools.md#build-tool-plugins) (gulp, webpack etc)\n    -   [via a plugin for your text editor](docs/user-guide/complementary-tools.md#editor-plugins) (atom, sublime text etc)\n    -   [via the stylelint Node API](docs/user-guide/node-api.md)\n    -   [via the stylelint PostCSS plugin](docs/user-guide/postcss-plugin.md)\n2.  Create your [configuration object](docs/user-guide/configuration.md) by either extending a shared config or crafting your own:\n    -   To extend a shared config, we recommend using [`stylelint-config-standard`](https://github.com/stylelint/stylelint-config-standard). It includes over 80 of stylelint's rules with sensible defaults. (You can always override specific rules after extending the config.) We update the config with each new release of stylelint. Alternately, you can [search for](https://www.npmjs.com/browse/keyword/stylelint-config) a community config and [extend](docs/user-guide/configuration.md#extends) that instead.\n    -   To craft your own config, first [learn about how rules are named and how they work together](docs/user-guide/about-rules.md), then either:\n        -   Start small and only learn about [the rules](docs/user-guide/rules.md) you want to turn on and enforce. *All of the rules are off by default*, and so you can start small, growing your config over time as you have a chance to explore more of the rules.\n        -   Or copy-paste [this example configuration](docs/user-guide/example-config.md), which lists all of stylelint's rules and their primary options. Then you can edit the options of each rule to your liking, and remove (or turn off with `null`) the rules that you don't care to enforce.\n3.  Lint!\n\n## Guides\n\nYou'll find more detailed information on using stylelint and tailoring it to your needs in our guides:\n\n-   [User guide](docs/user-guide.md) - Usage, configuration, FAQ and complementary tools.\n-   [Developer guide](docs/developer-guide.md) - Contributing to stylelint and writing your own plugins & formatters.\n\n## Need help?\n\nIf you're looking for help or have a support question, then check out our [FAQ](docs/user-guide/faq.md) first. If the answer to your problem isn't there, then go to [stackoverflow](https://stackoverflow.com/questions/tagged/stylelint). stackoverflow is a huge Question and Answer community, and tagging your post there with \"stylelint\" will catch the stylelint team's attention.\n\nIf you think you've found a bug or if you have feature request, then create a [new GitHub issue](https://github.com/stylelint/stylelint/issues/new). Be sure to follow the issue template, answering each question, as this helps us greatly in understanding your problem or request.\n\nUpgrading? Please read our [CHANGELOG](CHANGELOG.md) to learn what changes to expect in the latest version, whether that's new features, bug fixes, renamed rules, or whatever else.\n\n## Help out\n\nThere is always a lot of work to do, and already well over 150 rules to maintain. So please help out in any way that you can:\n\n-   Chime in on any open [issue](https://github.com/stylelint/stylelint/issues) or [pull request](https://github.com/stylelint/stylelint/pulls).\n-   Create, enhance, and debug rules (see our guide to [\"Working on rules\"](docs/developer-guide/rules.md)).\n-   Improve [documentation](docs/).\n-   Add new tests to *absolutely anything*.\n-   Work on [improving performance of rules](docs/developer-guide/rules.md#improving-the-performance-of-a-new-or-an-existing-rule).\n-   Open new issues about your ideas for making stylelint better, and pull requests to show us how your idea works.\n-   Create or contribute to ecosystem tools, like the plugins for [Atom](https://github.com/AtomLinter/linter-stylelint) and [Sublime Text](https://github.com/kungfusheep/SublimeLinter-contrib-stylelint).\n\n[License](https://raw.githubusercontent.com/stylelint/stylelint/master/LICENSE)\n","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"users":{"moox":true,"allenmoore":true,"heavymod":true,"netweb":true,"nchase":true,"dreamseer":true,"vio":true,"arnoldstoba":true,"muzhen":true,"martijndevalk":true,"abdul":true,"rubiadias":true,"denji":true,"erikvold":true,"preco21":true,"malitov":true,"ezeikel":true,"kogakure":true,"gor0n":true,"miga":true,"wkaifang":true,"tdmalone":true,"danielbayley":true,"langri-sha":true,"andparsons":true,"finnhvman":true,"logol":true,"juandaco":true,"panlw":true,"vignesh14thnov":true,"shakakira":true,"aeron_zh":true,"edditoria":true,"nikolay":true},"bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"license":"MIT","versions":{"0.0.0":{"name":"stylelint","version":"0.0.0","description":"Modern CSS linter","keywords":["css","lint","csslint"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/stylelint/stylelint.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{},"devDependencies":{"eslint":"^0.10.1","jscs":"^1.8.1","tape":"^3.0.3"},"scripts":{"jscs":"jscs .","eslint":"eslint .","pretest":"npm run jscs && npm run eslint","test":"tape test/*.js"},"gitHead":"daf4fa823b985e90ed97099742140ce0c58c3ccc","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint","_id":"stylelint@0.0.0","_shasum":"53b4704df23ae90d379e938096a3df83159276e3","_from":".","_npmVersion":"2.1.10","_nodeVersion":"0.10.33","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"53b4704df23ae90d379e938096a3df83159276e3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-0.0.0.tgz"},"directories":{}},"0.1.0":{"name":"stylelint","version":"0.1.0","description":"Modern CSS linter","keywords":["css","lint","csslint","stylelint"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["CHANGELOG.md","LICENSE","dist","src"],"dependencies":{"autoprefixer-core":"^5.2.1","balanced-match":"^0.2.0","lodash":"^3.9.3","postcss":"^4.1.12","postcss-selector-parser":"^1.0.1"},"devDependencies":{"babel":"^5.6.3","babel-eslint":"^3.1.17","babel-tape-runner":"^1.1.0","eslint":"^0.24.0","jsesc":"^0.5.0","sinon":"^1.15.3","tape":"^4.0.0"},"scripts":{"docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","prepublish":"babel src --out-dir dist","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"2689fdd1aab1db74bf6eeebba67ac8c2dc25313e","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@0.1.0","_shasum":"c4ece0ae4e23ee210fd1df5504052e77f426d580","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.6","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"dist":{"shasum":"c4ece0ae4e23ee210fd1df5504052e77f426d580","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-0.1.0.tgz"},"directories":{}},"0.1.1":{"name":"stylelint","version":"0.1.1","description":"Modern CSS linter","keywords":["css","lint","linter","csslint","stylelint"],"authors":["Maxime Thirouin","David Clark","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["CHANGELOG.md","LICENSE","dist","src"],"dependencies":{"autoprefixer-core":"^5.2.1","balanced-match":"^0.2.0","lodash":"^3.9.3","postcss":"^4.1.12","postcss-selector-parser":"^1.0.1"},"devDependencies":{"babel":"^5.6.3","babel-eslint":"^3.1.17","babel-tape-runner":"^1.1.0","eslint":"^0.24.0","jsesc":"^0.5.0","sinon":"^1.15.3","tape":"^4.0.0"},"scripts":{"prepublish":"babel src --out-dir dist","docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"b8160ed36a168bae7e093dd412e7fa9fac948a29","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@0.1.1","_shasum":"a81bfa056502926467b01eb44404644e80b87e69","_from":".","_npmVersion":"2.12.1","_nodeVersion":"0.12.6","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"dist":{"shasum":"a81bfa056502926467b01eb44404644e80b87e69","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-0.1.1.tgz"},"directories":{}},"0.1.2":{"name":"stylelint","version":"0.1.2","description":"Modern CSS linter","keywords":["css","lint","linter","csslint","stylelint"],"authors":["Maxime Thirouin","David Clark","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["CHANGELOG.md","LICENSE","dist","src"],"dependencies":{"autoprefixer-core":"^5.2.1","balanced-match":"^0.2.0","lodash":"^3.9.3","postcss":"^4.1.12","postcss-selector-parser":"^1.0.1"},"devDependencies":{"babel":"^5.6.3","babel-eslint":"^3.1.17","babel-tape-runner":"^1.1.0","eslint":"^0.24.0","jsesc":"^0.5.0","sinon":"^1.15.3","tape":"^4.0.0"},"scripts":{"prepublish":"babel src --out-dir dist","docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"98a2b09eaf020d69a625b17a90ba8b9517f84e25","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@0.1.2","_shasum":"15230894a25848bd681104bc41bf7138abaf5a8d","_from":".","_npmVersion":"3.1.1","_nodeVersion":"0.12.7","_npmUser":{"name":"jeddy3","email":"npm@jeddy3.com"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"dist":{"shasum":"15230894a25848bd681104bc41bf7138abaf5a8d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-0.1.2.tgz"},"directories":{}},"0.2.0":{"name":"stylelint","version":"0.2.0","description":"Modern CSS linter","keywords":["css","lint","linter","csslint","stylelint"],"authors":["Maxime Thirouin","David Clark","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["CHANGELOG.md","LICENSE","dist","src"],"dependencies":{"autoprefixer-core":"^5.2.1","balanced-match":"^0.2.0","lodash":"^3.9.3","postcss":"^4.1.12","postcss-selector-parser":"^1.0.1"},"devDependencies":{"babel":"^5.6.3","babel-eslint":"^3.1.17","babel-tape-runner":"^1.1.0","eslint":"^0.24.0","jsesc":"^0.5.0","sinon":"^1.15.3","tape":"^4.0.0"},"scripts":{"prepublish":"babel src --out-dir dist","docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"19d65f33a1422aa698728471184aec9858bf4aab","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@0.2.0","_shasum":"0b7dc391505e73fdabb85fd8b53b834462ca980c","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jeddy3","email":"npm@jeddy3.com"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"dist":{"shasum":"0b7dc391505e73fdabb85fd8b53b834462ca980c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-0.2.0.tgz"},"directories":{}},"0.3.0":{"name":"stylelint","version":"0.3.0","description":"Modern CSS linter","keywords":["css","lint","linter","csslint","stylelint"],"authors":["Maxime Thirouin","David Clark","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["CHANGELOG.md","LICENSE","dist","src"],"dependencies":{"autoprefixer-core":"^5.2.1","balanced-match":"^0.2.0","lodash":"^3.9.3","postcss":"^4.1.12","postcss-selector-parser":"^1.0.1"},"devDependencies":{"babel":"^5.6.3","babel-eslint":"^3.1.17","babel-tape-runner":"^1.1.0","eslint":"^0.24.0","jsesc":"^0.5.0","sinon":"^1.15.3","tape":"^4.0.0"},"scripts":{"prepublish":"babel src --out-dir dist","docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"983d6d6193f8ca913a9662cd35630b2afc7668a8","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@0.3.0","_shasum":"cc8e7cb5e69de363600a4936c0419c0988d0c530","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"cc8e7cb5e69de363600a4936c0419c0988d0c530","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-0.3.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"0.3.1":{"name":"stylelint","version":"0.3.1","description":"Modern CSS linter","keywords":["css","lint","linter","csslint","stylelint"],"authors":["Maxime Thirouin","David Clark","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["CHANGELOG.md","LICENSE","dist","src"],"dependencies":{"autoprefixer-core":"^5.2.1","balanced-match":"^0.2.0","lodash":"^3.9.3","postcss":"^4.1.12","postcss-selector-parser":"^1.0.1"},"devDependencies":{"babel":"^5.6.3","babel-eslint":"^3.1.17","babel-tape-runner":"^1.1.0","eslint":"^0.24.0","jsesc":"^0.5.0","sinon":"^1.15.3","tape":"^4.0.0"},"scripts":{"prepublish":"babel src --out-dir dist","docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"014e1d62d6f408eb0fa52e9fb52eb487fea6318f","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@0.3.1","_shasum":"1e731bff533a94b733306e995d6bda1412001612","_from":".","_npmVersion":"3.1.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jeddy3","email":"npm@jeddy3.com"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"dist":{"shasum":"1e731bff533a94b733306e995d6bda1412001612","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-0.3.1.tgz"},"directories":{}},"0.3.2":{"name":"stylelint","version":"0.3.2","description":"Modern CSS linter","keywords":["css","lint","linter","csslint","stylelint"],"authors":["Maxime Thirouin","David Clark","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["CHANGELOG.md","LICENSE","dist","src"],"dependencies":{"autoprefixer-core":"^5.2.1","balanced-match":"^0.2.0","lodash":"^3.9.3","postcss":"^4.1.12","postcss-selector-parser":"^1.0.1"},"devDependencies":{"babel":"^5.6.3","babel-eslint":"^3.1.17","babel-tape-runner":"^1.1.0","eslint":"^0.24.0","jsesc":"^0.5.0","sinon":"^1.15.3","tape":"^4.0.0"},"scripts":{"prepublish":"babel src --out-dir dist","docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"8e14876ddcb852e74af847aaf9d98c59c92548d8","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint","_id":"stylelint@0.3.2","_shasum":"dd744e3aef3339181dab8717c6e73bb4d0d2c868","_from":".","_npmVersion":"2.7.6","_nodeVersion":"0.12.7","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"dd744e3aef3339181dab8717c6e73bb4d0d2c868","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-0.3.2.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"0.4.0":{"name":"stylelint","version":"0.4.0","description":"Modern CSS linter","keywords":["css","lint","linter","csslint","stylelint"],"authors":["Maxime Thirouin","David Clark","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["CHANGELOG.md","LICENSE","dist","src"],"dependencies":{"autoprefixer-core":"^5.2.1","balanced-match":"^0.2.0","lodash":"^3.9.3","postcss":"^4.1.12","postcss-selector-parser":"^1.0.1"},"devDependencies":{"babel":"^5.6.3","babel-eslint":"^3.1.17","babel-tape-runner":"^1.1.0","eslint":"^0.24.0","sinon":"^1.15.3","tape":"^4.0.0"},"scripts":{"prepublish":"babel src --out-dir dist","docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"2a29ab91b64268706ae1b8144e2df46b2c526631","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@0.4.0","_shasum":"ba29fba8bfd2e33775585c5f14e3991c0cbfec30","_from":".","_npmVersion":"2.13.0","_nodeVersion":"0.12.7","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"ba29fba8bfd2e33775585c5f14e3991c0cbfec30","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-0.4.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"0.4.1":{"name":"stylelint","version":"0.4.1","description":"Modern CSS linter","keywords":["css","lint","linter","csslint","stylelint"],"authors":["Maxime Thirouin","David Clark","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["CHANGELOG.md","LICENSE","dist","src"],"dependencies":{"autoprefixer-core":"^5.2.1","balanced-match":"^0.2.0","lodash":"^3.9.3","postcss":"^4.1.12","postcss-selector-parser":"^1.0.1"},"devDependencies":{"babel":"^5.6.3","babel-eslint":"^3.1.17","babel-tape-runner":"^1.1.0","eslint":"^0.24.0","sinon":"^1.15.3","tape":"^4.0.0"},"scripts":{"prepublish":"babel src --out-dir dist","docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"03d20b41e246e46f2827d8b7263dfd7c66f5b4a2","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint","_id":"stylelint@0.4.1","_shasum":"f7cba7a512bf5c46c93e7011fe5bccb556ac3818","_from":".","_npmVersion":"2.7.6","_nodeVersion":"0.12.7","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"f7cba7a512bf5c46c93e7011fe5bccb556ac3818","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-0.4.1.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"0.5.0":{"name":"stylelint","version":"0.5.0","description":"Modern CSS linter","keywords":["css","lint","linter","csslint","stylelint"],"authors":["Maxime Thirouin","David Clark","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["CHANGELOG.md","LICENSE","dist","src"],"dependencies":{"autoprefixer-core":"^5.2.1","balanced-match":"^0.2.0","lodash":"^3.9.3","postcss":"^4.1.12","postcss-selector-parser":"^1.0.1"},"devDependencies":{"babel":"^5.6.3","babel-tape-runner":"^1.1.0","eslint":"^0.24.0","sinon":"^1.15.3","stylelint-rule-tester":"^0.1.0","tape":"^4.0.1"},"scripts":{"prepublish":"babel src --out-dir dist","docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"7f8ea08f80e8a3062024abd96cb91c73c8b1d5a7","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@0.5.0","_shasum":"11297e617d4db30c53519e5b18aa0df5b2363f63","_from":".","_npmVersion":"3.2.0","_nodeVersion":"0.12.7","_npmUser":{"name":"jeddy3","email":"npm@jeddy3.com"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"dist":{"shasum":"11297e617d4db30c53519e5b18aa0df5b2363f63","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-0.5.0.tgz"},"directories":{}},"0.6.0":{"name":"stylelint","version":"0.6.0","description":"Modern CSS linter","keywords":["css","lint","linter","csslint","stylelint"],"authors":["Maxime Thirouin","David Clark","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["CHANGELOG.md","LICENSE","dist","src"],"dependencies":{"autoprefixer-core":"^5.2.1","balanced-match":"^0.2.0","execall":"^1.0.0","lodash":"^3.9.3","postcss":"^4.1.12","postcss-selector-parser":"^1.0.1"},"devDependencies":{"babel":"^5.6.3","babel-tape-runner":"^1.1.0","eslint":"^0.24.0","sinon":"^1.15.3","stylelint-rule-tester":"^0.1.0","tape":"^4.0.1"},"scripts":{"prepublish":"babel src --out-dir dist","docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"ccc0011fca76c1d040f3be668ebeb9c9fd12fde9","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@0.6.0","_shasum":"f8481bdcfc4326b32937d7a99710b6c2bfe31b0f","_from":".","_npmVersion":"2.13.2","_nodeVersion":"0.12.7","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"f8481bdcfc4326b32937d7a99710b6c2bfe31b0f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-0.6.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"0.6.1":{"name":"stylelint","version":"0.6.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["!**/__tests__","!**/testUtils","dist","src"],"dependencies":{"autoprefixer-core":"^5.2.1","balanced-match":"^0.2.0","execall":"^1.0.0","lodash":"^3.9.3","postcss":"^4.1.12","postcss-selector-parser":"^1.0.1"},"devDependencies":{"babel":"^5.6.3","babel-tape-runner":"^1.1.0","eslint":"^1.0.0","eslint-config-stylelint":"^0.1.0","sinon":"^1.15.3","stylelint-rule-tester":"^0.1.0","tape":"^4.0.1"},"scripts":{"docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","prepublish":"babel src --out-dir dist","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"0e9d71f0fac1ba3f6fc48232bb658e4c36ad9217","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@0.6.1","_shasum":"7cbc0f4dc4adc997e17c435faca196433c2d03d3","_from":".","_npmVersion":"3.2.0","_nodeVersion":"0.12.7","_npmUser":{"name":"jeddy3","email":"npm@jeddy3.com"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"dist":{"shasum":"7cbc0f4dc4adc997e17c435faca196433c2d03d3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-0.6.1.tgz"},"directories":{}},"0.6.2":{"name":"stylelint","version":"0.6.2","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer-core":"^5.2.1","balanced-match":"^0.2.0","execall":"^1.0.0","lodash":"^3.9.3","postcss":"^4.1.12","postcss-selector-parser":"^1.0.1"},"devDependencies":{"babel":"^5.6.3","babel-tape-runner":"^1.1.0","eslint":"^1.0.0","eslint-config-stylelint":"^0.1.0","sinon":"^1.15.3","stylelint-rule-tester":"^0.1.0","tape":"^4.0.1"},"scripts":{"prepublish":"babel src --out-dir dist","docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"b2ff033349dcba055c2b36f65aa2f7f2ff474f69","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@0.6.2","_shasum":"5976ee105d45df84f330c86d3294030b8f26f331","_from":".","_npmVersion":"3.2.0","_nodeVersion":"0.12.7","_npmUser":{"name":"jeddy3","email":"npm@jeddy3.com"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"dist":{"shasum":"5976ee105d45df84f330c86d3294030b8f26f331","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-0.6.2.tgz"},"directories":{}},"0.7.0":{"name":"stylelint","version":"0.7.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer-core":"^5.2.1","balanced-match":"^0.2.0","execall":"^1.0.0","lodash":"^3.9.3","postcss":"^4.1.12","postcss-selector-parser":"^1.0.1"},"devDependencies":{"babel":"^5.6.3","babel-tape-runner":"^1.1.0","eslint":"^1.0.0","eslint-config-stylelint":"^0.1.0","sinon":"^1.15.3","stylelint-rule-tester":"^0.1.0","tape":"^4.0.1"},"scripts":{"prepublish":"babel src --out-dir dist","docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"a474a1e74e8bd9983bbfe140734ff6245c1a3ec2","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@0.7.0","_shasum":"4a1ac6e1300776481707478ee120d2aeb1d8c1a5","_from":".","_npmVersion":"2.13.2","_nodeVersion":"0.12.7","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"4a1ac6e1300776481707478ee120d2aeb1d8c1a5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-0.7.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"0.8.0":{"name":"stylelint","version":"0.8.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer-core":"^5.2.1","balanced-match":"^0.2.0","execall":"^1.0.0","lodash":"^3.9.3","postcss":"^4.1.12","postcss-selector-parser":"^1.0.1"},"devDependencies":{"babel":"^5.6.3","babel-tape-runner":"^1.1.0","eslint":"^1.0.0","eslint-config-stylelint":"^0.1.0","sinon":"^1.15.3","stylelint-rule-tester":"^0.1.0","tape":"^4.0.1"},"scripts":{"prepublish":"babel src --out-dir dist","docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"153efed76955f2760f5ab01c8e4988b92c3768f1","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@0.8.0","_shasum":"fcab17de3b67cc975448db6de9addc93aab7452d","_from":".","_npmVersion":"3.2.1","_nodeVersion":"0.12.7","_npmUser":{"name":"jeddy3","email":"npm@jeddy3.com"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"dist":{"shasum":"fcab17de3b67cc975448db6de9addc93aab7452d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-0.8.0.tgz"},"directories":{}},"1.0.0":{"name":"stylelint","version":"1.0.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.2.0","execall":"^1.0.0","lodash":"^3.10.1","postcss":"^5.0.4","postcss-selector-parser":"^1.1.4"},"devDependencies":{"babel":"^5.8.23","babel-tape-runner":"^1.2.0","eslint":"^1.3.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.3.0","tape":"^4.2.0"},"scripts":{"prepublish":"babel src --out-dir dist","docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"76ad7e5344f954a5282a0e959710158f2607d4df","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@1.0.0","_shasum":"f3ec4f402610f304e1955d4be0591d71a8e1ff2c","_from":".","_npmVersion":"3.2.1","_nodeVersion":"0.12.7","_npmUser":{"name":"jeddy3","email":"npm@jeddy3.com"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"dist":{"shasum":"f3ec4f402610f304e1955d4be0591d71a8e1ff2c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"stylelint","version":"1.0.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.2.0","execall":"^1.0.0","lodash":"^3.10.1","postcss":"^5.0.4","postcss-selector-parser":"^1.2.0"},"devDependencies":{"babel":"^5.8.23","babel-tape-runner":"^1.2.0","eslint":"^1.3.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.3.0","tape":"^4.2.0"},"scripts":{"prepublish":"babel src --out-dir dist","docs-build":"babel-node scripts/rules","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"ea421b2ab98b293ee8da22231749b1645e1c0b0b","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@1.0.1","_shasum":"5d8a2a2f09bc1b445c313b11a3e302bd831a7fcc","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"5d8a2a2f09bc1b445c313b11a3e302bd831a7fcc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-1.0.1.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"1.1.0":{"name":"stylelint","version":"1.1.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.2.0","execall":"^1.0.0","lodash":"^3.10.1","postcss":"^5.0.4","postcss-selector-parser":"^1.2.0"},"devDependencies":{"babel":"^5.8.23","babel-tape-runner":"^1.2.0","eslint":"^1.3.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.3.0","tape":"^4.2.0"},"scripts":{"prepublish":"babel src --out-dir dist","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"9e80365ad4b46f4f208fce8e834c06ab6aaab009","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@1.1.0","_shasum":"2586e7514eda2df0b675ebcc37cb6aaeb7210af8","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"2586e7514eda2df0b675ebcc37cb6aaeb7210af8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-1.1.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"1.2.0":{"name":"stylelint","version":"1.2.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.2.0","execall":"^1.0.0","lodash":"^3.10.1","postcss":"^5.0.4","postcss-selector-parser":"^1.2.0"},"devDependencies":{"babel":"^5.8.23","babel-tape-runner":"^1.2.0","eslint":"^1.3.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.3.0","tape":"^4.2.0"},"scripts":{"prepublish":"babel src --out-dir dist","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"a8278fc2628047d086d832f456e007cfeaa30fde","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@1.2.0","_shasum":"030b5e02d059fd6d52f6e6e282941c7217f55dcc","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"030b5e02d059fd6d52f6e6e282941c7217f55dcc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-1.2.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"1.2.1":{"name":"stylelint","version":"1.2.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.2.0","execall":"^1.0.0","lodash":"^3.10.1","postcss":"^5.0.4","postcss-selector-parser":"^1.2.0"},"devDependencies":{"babel":"^5.8.23","babel-tape-runner":"^1.2.0","eslint":"^1.3.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.3.0","tape":"^4.2.0"},"scripts":{"prepublish":"babel src --out-dir dist","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"9aca9087fbae5e91d32598d35295b6d759b9046b","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@1.2.1","_shasum":"e18157fcb7261e2aed403fda2c3d95f68d63af36","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"e18157fcb7261e2aed403fda2c3d95f68d63af36","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-1.2.1.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"2.0.0":{"name":"stylelint","version":"2.0.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.2.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^3.0.1","lodash":"^3.10.1","meow":"^3.3.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","queue-async":"^1.0.7","rc":"^1.1.1","resolve-from":"^1.0.1"},"devDependencies":{"babel":"^5.8.23","babel-tape-runner":"^1.2.0","chalk":"^1.1.1","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.3.0","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"f893181943ca5f34cb97d470c9d4bb051dccf88b","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@2.0.0","_shasum":"ee113bf801dc011aaf3ba853c8d1a1695e6a2534","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"ee113bf801dc011aaf3ba853c8d1a1695e6a2534","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-2.0.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"2.1.0":{"name":"stylelint","version":"2.1.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.2.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^3.0.1","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","queue-async":"^1.0.7","rc":"^1.1.1","resolve-from":"^1.0.1"},"devDependencies":{"babel":"^5.8.23","babel-tape-runner":"1.2.0","chalk":"^1.1.1","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.3.0","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"d7413fd4435892640fabddf0d9dd50f4bec903f6","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@2.1.0","_shasum":"905bf808d86b0b759cb0a0db53161bec427fb818","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"905bf808d86b0b759cb0a0db53161bec427fb818","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-2.1.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"2.2.0":{"name":"stylelint","version":"2.2.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.2.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^3.0.1","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","queue-async":"^1.0.7","rc":"^1.1.1","resolve-from":"^1.0.1"},"devDependencies":{"babel":"^5.8.23","babel-tape-runner":"1.2.0","chalk":"^1.1.1","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.4.0","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"d241fb30702a4154b5e6755479ed79d417641896","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@2.2.0","_shasum":"51702e7600cc9f0b9378c5e318b2635818f5310a","_from":".","_npmVersion":"3.3.10","_nodeVersion":"4.2.1","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"51702e7600cc9f0b9378c5e318b2635818f5310a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-2.2.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"2.3.0":{"name":"stylelint","version":"2.3.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.2.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^3.0.1","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","queue-async":"^1.0.7","rc":"^1.1.1","resolve-from":"^1.0.1"},"devDependencies":{"babel":"^5.8.23","babel-tape-runner":"1.2.0","chalk":"^1.1.1","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.4.0","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"59b6eae44b272347ca6e6abc8ff83eb1a5359008","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@2.3.0","_shasum":"36b5bc02d8c24793dcb71930ebdc5172c54f52f4","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"36b5bc02d8c24793dcb71930ebdc5172c54f52f4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-2.3.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"2.3.1":{"name":"stylelint","version":"2.3.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.2.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^3.0.1","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","queue-async":"^1.0.7","rc":"^1.1.1","resolve-from":"^1.0.1"},"devDependencies":{"babel":"^5.8.23","babel-tape-runner":"1.2.0","chalk":"^1.1.1","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.4.0","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"e38a186083633eb416d10558d78d6d76bb1f1896","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@2.3.1","_shasum":"2ebf01d98c7e5457896d81c0cd2326637bad29b5","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"2ebf01d98c7e5457896d81c0cd2326637bad29b5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-2.3.1.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"2.3.2":{"name":"stylelint","version":"2.3.2","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.2.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^3.0.1","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","queue-async":"^1.0.7","rc":"^1.1.1","resolve-from":"^1.0.1"},"devDependencies":{"babel":"^5.8.23","babel-tape-runner":"1.2.0","chalk":"^1.1.1","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.4.0","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"5adf3f6489f7a2275703cf610dc6bd3d9d275652","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@2.3.2","_shasum":"98618f91ba4f252c0bd02754aa90c3d9ca440be3","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"98618f91ba4f252c0bd02754aa90c3d9ca440be3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-2.3.2.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"2.3.3":{"name":"stylelint","version":"2.3.3","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.2.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^3.0.1","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","queue-async":"^1.0.7","rc":"^1.1.1","resolve-from":"^1.0.1"},"devDependencies":{"babel":"^5.8.23","babel-tape-runner":"1.2.0","chalk":"^1.1.1","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.0","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"229cda3ba1d77467ece9511aa9a349419458783e","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@2.3.3","_shasum":"b4af9e25bade51546d7f8fdc7d4a2ba7806f71c6","_from":".","_npmVersion":"3.4.1","_nodeVersion":"5.1.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"b4af9e25bade51546d7f8fdc7d4a2ba7806f71c6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-2.3.3.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"2.3.4":{"name":"stylelint","version":"2.3.4","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.2.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^3.0.1","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","queue-async":"^1.0.7","rc":"^1.1.1","resolve-from":"^1.0.1"},"devDependencies":{"babel":"^5.8.23","babel-tape-runner":"1.2.0","chalk":"^1.1.1","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.0","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"e882d8a91989725f552501738433a145949d0be1","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@2.3.4","_shasum":"02691ba478760c564915f164aac0e3b50166af53","_from":".","_npmVersion":"3.4.1","_nodeVersion":"5.1.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"02691ba478760c564915f164aac0e3b50166af53","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-2.3.4.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"2.3.5":{"name":"stylelint","version":"2.3.5","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.2.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^3.0.1","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","queue-async":"^1.0.7","rc":"^1.1.1","resolve-from":"^1.0.1"},"devDependencies":{"babel":"^5.8.23","babel-tape-runner":"1.2.0","chalk":"^1.1.1","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.0","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"4f6c060e3a032a00b1b8673df6e4695b8369a0c9","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@2.3.5","_shasum":"9a328a44cf0801b0aaed568ae5482334c57909ec","_from":".","_npmVersion":"3.4.1","_nodeVersion":"5.1.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"9a328a44cf0801b0aaed568ae5482334c57909ec","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-2.3.5.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"2.3.6":{"name":"stylelint","version":"2.3.6","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.2.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^3.0.1","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","queue-async":"^1.0.7","rc":"^1.1.1","resolve-from":"^1.0.1"},"devDependencies":{"babel":"^5.8.23","babel-tape-runner":"1.2.0","chalk":"^1.1.1","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.0","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"1b0410cc607be2e11b036ea237a9f9eb4d4fb01a","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@2.3.6","_shasum":"3e3d651c1a5342d29f97bb11d402a02c11d43d5b","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"3e3d651c1a5342d29f97bb11d402a02c11d43d5b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-2.3.6.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"2.3.7":{"name":"stylelint","version":"2.3.7","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.2.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^3.0.1","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","queue-async":"^1.0.7","rc":"^1.1.1","resolve-from":"^1.0.1"},"devDependencies":{"babel":"^5.8.23","babel-tape-runner":"1.2.0","chalk":"^1.1.1","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"a437b245767fb7e7be3432b4cce00614ea8df928","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@2.3.7","_shasum":"b76f63f597580d7430a7d271ce25c7792e5c9ae5","_from":".","_npmVersion":"3.5.2","_nodeVersion":"5.2.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"b76f63f597580d7430a7d271ce25c7792e5c9ae5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-2.3.7.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"3.0.0":{"name":"stylelint","version":"3.0.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.0.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^1.3.0","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"6106ee6237f38fbccb2342a1b80b345ba37c45b1","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@3.0.0","_shasum":"c7ea3a8e509460c71e1c4e3af0c4dc3052ed0da6","_from":".","_npmVersion":"3.5.2","_nodeVersion":"5.2.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"c7ea3a8e509460c71e1c4e3af0c4dc3052ed0da6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-3.0.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"3.0.1":{"name":"stylelint","version":"3.0.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.0.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^1.3.0","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"6dab29e860761ca10e7d7ca099883160aac24e85","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@3.0.1","_shasum":"753811826eb26b8bd0b0e194f70b7d01372f6974","_from":".","_npmVersion":"3.5.2","_nodeVersion":"5.2.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"753811826eb26b8bd0b0e194f70b7d01372f6974","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-3.0.1.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"3.0.2":{"name":"stylelint","version":"3.0.2","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.0.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^1.3.0","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"f832412ca0308052b6fcd4cb13de35e5d38f5f3f","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@3.0.2","_shasum":"dfd5ec71a46b27e7fca501d38bb6d839a98c1bcf","_from":".","_npmVersion":"3.5.2","_nodeVersion":"5.2.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"dfd5ec71a46b27e7fca501d38bb6d839a98c1bcf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-3.0.2.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"3.0.3":{"name":"stylelint","version":"3.0.3","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.0.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^1.3.0","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"280eb014c4862bb686bd4eea4f538f08227a9531","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@3.0.3","_shasum":"f920a4b65abc70de9813ffc3b8377d5f3391aad8","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"f920a4b65abc70de9813ffc3b8377d5f3391aad8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-3.0.3.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"3.1.0":{"name":"stylelint","version":"3.1.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.0.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^1.3.0","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"53da48b759869ccca4c2df67ebfd10d102149473","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@3.1.0","_shasum":"72334e300c191b8d0d9fe24365f39ea34f3e61ae","_from":".","_npmVersion":"3.5.2","_nodeVersion":"5.2.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"72334e300c191b8d0d9fe24365f39ea34f3e61ae","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-3.1.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"3.1.1":{"name":"stylelint","version":"3.1.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.0.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^1.3.0","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"6a1411ed1432eb405bbc1623c7990c3fb18e2a94","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@3.1.1","_shasum":"30519d396caf76e6ef11d81520bf68437e4a64be","_from":".","_npmVersion":"3.5.2","_nodeVersion":"5.2.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"30519d396caf76e6ef11d81520bf68437e4a64be","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-3.1.1.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"3.1.2":{"name":"stylelint","version":"3.1.2","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.0.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^1.3.0","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"19f182cd64038cdc3878adb769b40303a822d28e","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@3.1.2","_shasum":"6273dd95fb2172f57f22e0da60cf96a3de524c20","_from":".","_npmVersion":"3.5.2","_nodeVersion":"5.2.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"6273dd95fb2172f57f22e0da60cf96a3de524c20","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-3.1.2.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"3.1.3":{"name":"stylelint","version":"3.1.3","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.0.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"41332789092878e78fbcd9674334d216e08b9f63","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@3.1.3","_shasum":"84688f1c9f971f72c9f56f945f22c84ec08acd69","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"84688f1c9f971f72c9f56f945f22c84ec08acd69","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-3.1.3.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"3.1.4":{"name":"stylelint","version":"3.1.4","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.0.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"da380b4c090b1823b77749d298a882349529f6d3","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@3.1.4","_shasum":"1bee9f833b181d4d69973cb994b6c332fc10d2a6","_from":".","_npmVersion":"3.5.2","_nodeVersion":"5.3.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"1bee9f833b181d4d69973cb994b6c332fc10d2a6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-3.1.4.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"3.2.0":{"name":"stylelint","version":"3.2.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.0.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"de0ebe8cb1f8588afff29e2853c3a8ec1acee465","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@3.2.0","_shasum":"5ed6caf57086ebd1f88a38ee5a0d21e1425fe73d","_from":".","_npmVersion":"3.5.2","_nodeVersion":"5.3.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"5ed6caf57086ebd1f88a38ee5a0d21e1425fe73d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-3.2.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"3.2.1":{"name":"stylelint","version":"3.2.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.0.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"941bb55fb2ad2e61b70a1d2c09ab1b2516adf4aa","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@3.2.1","_shasum":"d11b4e8af17d4dcf361f58c156d0e997f260ed39","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"d11b4e8af17d4dcf361f58c156d0e997f260ed39","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-3.2.1.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"3.2.2":{"name":"stylelint","version":"3.2.2","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.0.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","lint":"eslint . --ignore-path .gitignore","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"b35e908e7280a8341e7b912bc2a763213b3da1cc","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@3.2.2","_shasum":"d9c326292dc5899bdfe9323aad11437889445dbe","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"d9c326292dc5899bdfe9323aad11437889445dbe","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-3.2.2.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"3.2.3":{"name":"stylelint","version":"3.2.3","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.0.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","is-css-color-name":"^0.1.1","lodash":"^3.10.1","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","github-release-from-changelog":"^1.1.1","npmpub":"^2.0.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","lint":"eslint . --ignore-path .gitignore","prepublish":"npm run build","release":"npmpublish && github-release-from-changelog","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"de7374e9e207a054aacea27c56aee361efb6d47d","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@3.2.3","_shasum":"11a19fe9d06f3a3a54b92dbac6d18647979cee51","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"11a19fe9d06f3a3a54b92dbac6d18647979cee51","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-3.2.3.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"4.0.0":{"name":"stylelint","version":"4.0.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.1.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","github-release-from-changelog":"^1.1.1","npmpub":"^2.0.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","lint":"eslint . --ignore-path .gitignore","prepublish":"npm run build","release":"npmpublish && github-release-from-changelog","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"abdf8210eb0d5231d7eed3c2fea8c6f059e7fc16","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@4.0.0","_shasum":"fa8931a937fae2007a8150508c188907cc283322","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"fa8931a937fae2007a8150508c188907cc283322","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-4.0.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"4.1.0":{"name":"stylelint","version":"4.1.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.1.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","npmpub":"^3.0.1","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","lint":"eslint . --ignore-path .gitignore","prepublish":"npm run build","release":"npmpub","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"6d0604675459a9ccabadcf573c50b43b295c12ce","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@4.1.0","_shasum":"135cd0e6e21ce81e168952f1391ab21513e8396e","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"135cd0e6e21ce81e168952f1391ab21513e8396e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-4.1.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"4.2.0":{"name":"stylelint","version":"4.2.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["dist","src","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.1.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.4.1","eslint-config-stylelint":"^0.1.0","npmpub":"^3.0.1","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","lint":"eslint . --ignore-path .gitignore","prepublish":"npm run build","release":"npmpub","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"gitHead":"3fbca49cf59565ae57768938de1eed4977ef825d","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@4.2.0","_shasum":"25ec9f505f88aa93c56cd9ed00928fb56e3b6294","_from":".","_npmVersion":"3.5.3","_nodeVersion":"5.5.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"25ec9f505f88aa93c56cd9ed00928fb56e3b6294","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-4.2.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"},{"name":"jeddy3","email":"npm@jeddy3.com"},{"name":"davidtheclark","email":"david.dave.clark@gmail.com"}],"directories":{}},"4.3.0":{"name":"stylelint","version":"4.3.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__","!**/testUtils"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.1.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.10.3","eslint-config-stylelint":"^0.1.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","lint":"eslint . --ignore-path .gitignore","prepublish":"npm run build","release":"npmpub","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint"},"gitHead":"d6e946f2a623117b9d57e92a735376763b7d9a87","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@4.3.0","_shasum":"ef58c7132285acd2ee8d4d221ae7610c53884536","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"ef58c7132285acd2ee8d4d221ae7610c53884536","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-4.3.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/stylelint-4.3.0.tgz_1455397756149_0.10277139814570546"},"directories":{}},"4.3.1":{"name":"stylelint","version":"4.3.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.1.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.10.3","eslint-config-stylelint":"^0.1.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","lint":"eslint . --ignore-path .gitignore","prepublish":"npm run build","release":"npmpub","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint"},"gitHead":"fccf5da78ac994c3f5e716b8f8fa1c5ffdce4063","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@4.3.1","_shasum":"be1688d76aee4950e20584f3490a3252325c941a","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"be1688d76aee4950e20584f3490a3252325c941a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-4.3.1.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/stylelint-4.3.1.tgz_1455401397985_0.12008564849384129"},"directories":{}},"4.3.2":{"name":"stylelint","version":"4.3.2","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.1.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","tape":"^4.2.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.10.3","eslint-config-stylelint":"^0.1.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","sinon":"^1.16.1"},"scripts":{"build":"babel src --out-dir dist","lint":"eslint . --ignore-path .gitignore","prepublish":"npm run build","release":"npmpub","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint"},"gitHead":"b804ee5cd3ab4fdd62603c0782b8d99405e420a0","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@4.3.2","_shasum":"2604e662ff6bfad7d68fe3bf9815b0c18aa7a0ca","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"2604e662ff6bfad7d68fe3bf9815b0c18aa7a0ca","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-4.3.2.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/stylelint-4.3.2.tgz_1455402966226_0.7056348784826696"},"directories":{}},"4.3.3":{"name":"stylelint","version":"4.3.3","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.1.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.10.3","eslint-config-stylelint":"^0.1.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.2","tape":"^4.2.0"},"scripts":{"build":"babel src --out-dir dist","lint":"eslint . --ignore-path .gitignore","prepublish":"npm run build","release":"npmpub","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint"},"gitHead":"52500bbb509009bff3cfc2aa6c23e1297bf7e5eb","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@4.3.3","_shasum":"58561c75a8d35ad19e7a7777b7f07d1a98bf111c","_from":".","_npmVersion":"3.7.2","_nodeVersion":"5.5.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"58561c75a8d35ad19e7a7777b7f07d1a98bf111c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-4.3.3.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/stylelint-4.3.3.tgz_1455420107890_0.5620912362355739"},"directories":{}},"4.3.4":{"name":"stylelint","version":"4.3.4","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.1.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.10.3","eslint-config-stylelint":"^0.1.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.2","tape":"^4.2.0"},"scripts":{"lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","pretest":"npm run lint","test":"npm run tape","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint"},"remarkConfig":{"plugins":{"lint":{"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-multiple-toplevel-headings":false}}},"gitHead":"0ae0525ca4983106235e76da9266a987cc09c13f","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@4.3.4","_shasum":"6d8dd8b7c565d6d8a72fccb341c26dbbab7f7f68","_from":".","_npmVersion":"3.7.2","_nodeVersion":"5.6.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"6d8dd8b7c565d6d8a72fccb341c26dbbab7f7f68","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-4.3.4.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/stylelint-4.3.4.tgz_1455683428471_0.8009443019982427"},"directories":{}},"4.3.5":{"name":"stylelint","version":"4.3.5","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.1.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.10.3","eslint-config-stylelint":"^0.1.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.2","tape":"^4.2.0"},"scripts":{"lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","pretest":"npm run lint","test":"npm run tape","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint"},"remarkConfig":{"plugins":{"lint":{"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-multiple-toplevel-headings":false}}},"gitHead":"8bf1d7c034db92adda36f8827175263be6c66deb","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@4.3.5","_shasum":"d59122f929e9c778f1ec96a21d172726714282e6","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"d59122f929e9c778f1ec96a21d172726714282e6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-4.3.5.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/stylelint-4.3.5.tgz_1455706084342_0.6438889564014971"},"directories":{}},"4.3.6":{"name":"stylelint","version":"4.3.6","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.1.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.10.3","eslint-config-stylelint":"^0.1.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.2","tape":"^4.2.0"},"scripts":{"lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","pretest":"npm run lint","test":"npm run tape","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint"},"remarkConfig":{"plugins":{"lint":{"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-multiple-toplevel-headings":false}}},"gitHead":"f5aa3208d0eb401a360d9456c4751e2f935a8b0b","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@4.3.6","_shasum":"2a72ce6702762353e1aac46de37e220fa035a90f","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"2a72ce6702762353e1aac46de37e220fa035a90f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-4.3.6.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/stylelint-4.3.6.tgz_1455794427846_0.5733172718901187"},"directories":{}},"4.4.0":{"name":"stylelint","version":"4.4.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","cosmiconfig":"^1.1.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.2.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^1.10.3","eslint-config-stylelint":"^0.1.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.2","tape":"^4.2.0"},"scripts":{"lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","pretest":"npm run lint","test":"npm run tape","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint"},"remarkConfig":{"plugins":{"lint":{"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-multiple-toplevel-headings":false}}},"gitHead":"da2e9804ed767b9deae6adc71c4473a161143e66","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@4.4.0","_shasum":"2719bdebadd54cc91e2ee7c6f16d0a0d9410dc47","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"2719bdebadd54cc91e2ee7c6f16d0a0d9410dc47","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-4.4.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/stylelint-4.4.0.tgz_1455991373076_0.4492945200763643"},"directories":{}},"4.5.0":{"name":"stylelint","version":"4.5.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","colorguard":"^1.0.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^2.2.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.2","tape":"^4.2.0"},"scripts":{"lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","pretest":"npm run lint","test":"npm run tape","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-multiple-toplevel-headings":false}}},"gitHead":"8d478ff117f65801f5299559071a002c80078ba3","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@4.5.0","_shasum":"cb9b55851b9a046b44bbf839e81ced3b99817042","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"cb9b55851b9a046b44bbf839e81ced3b99817042","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-4.5.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/stylelint-4.5.0.tgz_1457364688948_0.6034785364754498"},"directories":{}},"4.5.1":{"name":"stylelint","version":"4.5.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","colorguard":"^1.0.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"2.2.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.2","tape":"^4.2.0"},"scripts":{"lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","pretest":"npm run lint","test":"npm run tape","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-multiple-toplevel-headings":false}}},"gitHead":"53d2e6409c1ab8aa3938f5bc28f268d8771febc2","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@4.5.1","_shasum":"e8aa05634dacd49fb7858a76b6505177c7b8495d","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"e8aa05634dacd49fb7858a76b6505177c7b8495d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-4.5.1.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-4.5.1.tgz_1457429475825_0.6664580327924341"},"directories":{}},"5.0.0":{"name":"stylelint","version":"5.0.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","colorguard":"^1.0.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"2.2.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.2","tape":"^4.2.0"},"scripts":{"lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","pretest":"npm run lint","test":"npm run tape","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-multiple-toplevel-headings":false}}},"gitHead":"54fb3f8d24519a3cce6dd4f0ae580c893ad3a5f4","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@5.0.0","_shasum":"dd594137b313aa074dd125bca2536d7bcbbfed1e","_from":".","_npmVersion":"3.8.0","_nodeVersion":"5.7.1","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"dd594137b313aa074dd125bca2536d7bcbbfed1e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-5.0.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-5.0.0.tgz_1457661839745_0.7306592038366944"},"directories":{}},"5.0.1":{"name":"stylelint","version":"5.0.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","colorguard":"^1.0.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","sinon":"^1.16.1","stylelint-rule-tester":"^0.6.2","tape":"^4.2.0"},"scripts":{"lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","pretest":"npm run lint","test":"npm run tape","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-multiple-toplevel-headings":false}}},"gitHead":"c97436e2593df9a780e913bb10bafb985e6dde67","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@5.0.1","_shasum":"7b1a7a5b23dab3917cbe583c31f7ffaabc49e0d0","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"7b1a7a5b23dab3917cbe583c31f7ffaabc49e0d0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-5.0.1.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-5.0.1.tgz_1457775681954_0.029619040433317423"},"directories":{}},"5.1.0":{"name":"stylelint","version":"5.1.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","colorguard":"^1.0.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","sinon":"^1.16.1","tape":"^4.2.0","trash":"^3.4.1"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub","lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-multiple-toplevel-headings":false}}},"gitHead":"ba56363660143fdfadced583033d6472a734ac69","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@5.1.0","_shasum":"2f38cb86bfc96dea1ccb44ef293e1fbd57acc635","_from":".","_npmVersion":"3.8.0","_nodeVersion":"5.7.1","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"2f38cb86bfc96dea1ccb44ef293e1fbd57acc635","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-5.1.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-5.1.0.tgz_1458269747471_0.3779139795806259"},"directories":{}},"5.2.0":{"name":"stylelint","version":"5.2.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","colorguard":"^1.1.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","sinon":"^1.16.1","tape":"^4.2.0","trash":"^3.4.1"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub","lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-multiple-toplevel-headings":false}}},"gitHead":"68648e1f25c4a8f50f51140fae8b19876d1e9eab","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@5.2.0","_shasum":"b880a947aef1016404bc237725a0eb0655bbaa21","_from":".","_npmVersion":"3.8.0","_nodeVersion":"5.7.1","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"b880a947aef1016404bc237725a0eb0655bbaa21","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-5.2.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/stylelint-5.2.0.tgz_1458868636059_0.3261888646520674"},"directories":{}},"5.2.1":{"name":"stylelint","version":"5.2.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","colorguard":"^1.1.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.4","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","sinon":"^1.16.1","tape":"^4.2.0","trash":"^3.4.1"},"scripts":{"build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub","lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-multiple-toplevel-headings":false}}},"gitHead":"136bed2aa3a1fe7544f44112a9adc688e78ccf65","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@5.2.1","_shasum":"3858f5c64a3047f5ddd80c5ef2a9f333f04a1d38","_from":".","_npmVersion":"3.8.0","_nodeVersion":"5.7.1","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"3858f5c64a3047f5ddd80c5ef2a9f333f04a1d38","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-5.2.1.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-5.2.1.tgz_1458938841480_0.006806815043091774"},"directories":{}},"5.3.0":{"name":"stylelint","version":"5.3.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","colorguard":"^1.1.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.4","postcss-less":"^0.8.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0","sugarss":"^0.1.2"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0","trash":"^3.4.1"},"scripts":{"benchmark-rule":"babel-node benchmark-rule.js","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub","lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"72422c2e4392b4f6729f036d970e8ffd83bacac7","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@5.3.0","_shasum":"43e13172a238f34f820f711489716548b54f5c1a","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.9.1","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"43e13172a238f34f820f711489716548b54f5c1a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-5.3.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-5.3.0.tgz_1459996117305_0.7850158407818526"},"directories":{}},"5.4.0":{"name":"stylelint","version":"5.4.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.3.0","chalk":"^1.1.1","colorguard":"^1.1.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","is-css-color-name":"^0.1.1","lodash":"^4.0.0","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.4","postcss-less":"^0.8.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0","sugarss":"^0.1.2"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0","trash":"^3.4.1"},"scripts":{"benchmark-rule":"babel-node benchmark-rule.js","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub","lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"92200f870d3a919528873d233b90127d24bda953","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@5.4.0","_shasum":"5665870063a82674e171b854eb7c94884ec0f58e","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.9.1","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"5665870063a82674e171b854eb7c94884ec0f58e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-5.4.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-5.4.0.tgz_1460160430308_0.5088048016186804"},"directories":{}},"6.0.0":{"name":"stylelint","version":"6.0.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.1.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.4","postcss-less":"^0.9.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0","sugarss":"^0.1.2","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0","trash":"^3.4.1"},"scripts":{"benchmark-rule":"babel-node benchmark-rule.js","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub","lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"6d806d3cf2119405d89b9c80824904d9f3912d1b","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.0.0","_shasum":"467c2c084350438b939d3a1752f472a6d2ae13b3","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.10.1","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"467c2c084350438b939d3a1752f472a6d2ae13b3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.0.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-6.0.0.tgz_1461069622136_0.24760578735731542"},"directories":{}},"6.0.1":{"name":"stylelint","version":"6.0.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.1.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.4","postcss-less":"^0.9.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0","sugarss":"^0.1.2","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0","trash":"^3.4.1"},"scripts":{"benchmark-rule":"babel-node benchmark-rule.js","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub","lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"b9546dc3a03a1dc70e3aac87f2963e650de6abd3","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.0.1","_shasum":"986a2faefa607b86595e759acfa8648a7b39c116","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"986a2faefa607b86595e759acfa8648a7b39c116","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.0.1.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-6.0.1.tgz_1461091303802_0.05194067326374352"},"directories":{}},"6.0.2":{"name":"stylelint","version":"6.0.2","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.1.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.4","postcss-less":"^0.9.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0","sugarss":"^0.1.2","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0","trash":"^3.4.1"},"scripts":{"benchmark-rule":"babel-node benchmark-rule.js","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub","lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"23a62bee3a4c9fb9fb32d3b227a78772474263c6","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.0.2","_shasum":"3247b8c636398eb5e69901ca49ef73eeb85f5517","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.10.1","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"3247b8c636398eb5e69901ca49ef73eeb85f5517","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.0.2.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-6.0.2.tgz_1461161268212_0.5965870309155434"},"directories":{}},"6.0.3":{"name":"stylelint","version":"6.0.3","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.1.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.4","postcss-less":"^0.9.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0","sugarss":"^0.1.2","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0","trash":"^3.4.1"},"scripts":{"benchmark-rule":"babel-node benchmark-rule.js","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub","lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"5a5bcb1f203bbe6ec27845951cb670c975a5f21f","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.0.3","_shasum":"88c69ea27e38f836b6c0f221996602abe812a2fb","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.10.1","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"88c69ea27e38f836b6c0f221996602abe812a2fb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.0.3.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-6.0.3.tgz_1461206136906_0.2957464277278632"},"directories":{}},"6.1.0":{"name":"stylelint","version":"6.1.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.1.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.4","postcss-less":"^0.9.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0","sugarss":"^0.1.2","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0","trash":"^3.4.1"},"scripts":{"benchmark-rule":"babel-node benchmark-rule.js","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub","lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"689ab978df02137f31f77fb7b43823cb3a93d102","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.1.0","_shasum":"6524da3c5ba456ea9ba3c1af18b535f6841345b6","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"6524da3c5ba456ea9ba3c1af18b535f6841345b6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.1.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-6.1.0.tgz_1461334965916_0.9870574164669961"},"directories":{}},"6.1.1":{"name":"stylelint","version":"6.1.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.1.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.4","postcss-less":"^0.9.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0","sugarss":"^0.1.2","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0","trash":"^3.4.1"},"scripts":{"benchmark-rule":"babel-node benchmark-rule.js","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub","lint":"eslint . --ignore-path .gitignore && remark . --quiet --frail","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"00eb5d150beec70123c9dec37b4c1cf2490805c2","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.1.1","_shasum":"a50c3a19348ab397580492d68f18893c5f835ec3","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"a50c3a19348ab397580492d68f18893c5f835ec3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.1.1.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-6.1.1.tgz_1461398416580_0.9966073511168361"},"directories":{}},"6.2.0":{"name":"stylelint","version":"6.2.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.1.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.4","postcss-less":"^0.9.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0","sugarss":"^0.1.2","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npm-run-all":"^1.8.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"73f2bf14392590b794f0178386a83537fa3ce9d5","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.2.0","_shasum":"8153b7132a40b691639cd6844ef68347e1e0620e","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.10.1","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"8153b7132a40b691639cd6844ef68347e1e0620e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.2.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-6.2.0.tgz_1461592625478_0.21658009779639542"},"directories":{}},"6.2.1":{"name":"stylelint","version":"6.2.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.1.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.4","postcss-less":"^0.9.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0","sugarss":"^0.1.2","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npm-run-all":"^1.8.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"133d239b12ce9f27e550160ec3995914dbdf1f7c","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.2.1","_shasum":"ce641067e55c62ed0e02f43d080ddf01a920297f","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.10.1","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"ce641067e55c62ed0e02f43d080ddf01a920297f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.2.1.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-6.2.1.tgz_1461594333474_0.2415519750211388"},"directories":{}},"6.2.2":{"name":"stylelint","version":"6.2.2","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.1.1","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.4","postcss-less":"^0.9.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^1.3.3","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0","sugarss":"^0.1.2","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npm-run-all":"^1.8.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"345cc613b6cf56e6c3becabb940c656bd1b97390","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.2.2","_shasum":"58e5575c29b8f0040dbd272fc16eb97f67949c73","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"58e5575c29b8f0040dbd272fc16eb97f67949c73","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.2.2.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-6.2.2.tgz_1461673525077_0.16694890102371573"},"directories":{}},"6.3.0":{"name":"stylelint","version":"6.3.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","htmlparser2":"^3.9.0","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.10.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.0.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0","sugarss":"^0.1.2","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npm-run-all":"^1.8.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"89250f0938742141ee628771518031aa37f14629","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.3.0","_shasum":"4dc4bc5803bfdae9a755679870e01521d9f68bd0","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"4dc4bc5803bfdae9a755679870e01521d9f68bd0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.3.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-6.3.0.tgz_1462641928764_0.7276649710256606"},"directories":{}},"6.3.1":{"name":"stylelint","version":"6.3.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","htmlparser2":"^3.9.0","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.10.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.0.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0","sugarss":"^0.1.2","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npm-run-all":"^1.8.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"0fc0161eaf3cc12d6541f339c8a8bde8e89d563a","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.3.1","_shasum":"c47ba70153ac5a2c3dd125b7e6c2211c9a53f823","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"c47ba70153ac5a2c3dd125b7e6c2211c9a53f823","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.3.1.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-6.3.1.tgz_1462646073551_0.07216057041659951"},"directories":{}},"6.3.2":{"name":"stylelint","version":"6.3.2","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","htmlparser2":"^3.9.0","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.10.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.0.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0","sugarss":"^0.1.2","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npm-run-all":"^1.8.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"23630b54c93bb97c71f3c69b03aea3393ffa35e0","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.3.2","_shasum":"4d867f121418ce59dc25cbd0726da3be97edd894","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"4d867f121418ce59dc25cbd0726da3be97edd894","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.3.2.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-6.3.2.tgz_1462688460501_0.49476124928332865"},"directories":{}},"6.3.3":{"name":"stylelint","version":"6.3.3","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","htmlparser2":"^3.9.0","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.10.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.0.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","stylehacks":"^2.3.0","sugarss":"^0.1.2","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","eslint":"^2.4.0","eslint-config-stylelint":"^1.0.0","npm-run-all":"^1.8.0","npmpub":"^3.0.1","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"97152398a3574272f51323421eca07440c01695d","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.3.3","_shasum":"66f75360c9742a368a8a4732e5a1f0d3da51f672","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"66f75360c9742a368a8a4732e5a1f0d3da51f672","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.3.3.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-6.3.3.tgz_1462737200063_0.7924479332286865"},"directories":{}},"6.4.0":{"name":"stylelint","version":"6.4.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","babel-polyfill":"^6.8.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","htmlparser2":"^3.9.0","html-tags":"^1.1.1","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.12.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.0.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","string-width":"^1.0.1","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","coveralls":"^2.11.9","eslint":"^2.4.0","eslint-config-stylelint":"^2.0.0","npm-run-all":"^2.1.0","npmpub":"^3.0.1","nyc":"^6.4.4","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"nyc babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"553e6d6617e8398e7950ca188c5ebddd1b7fc361","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.4.0","_shasum":"76d7f8dd3d70a5ce1e5b4bc7a4ad3190c99d4433","_from":".","_npmVersion":"3.9.0","_nodeVersion":"4.4.3","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"76d7f8dd3d70a5ce1e5b4bc7a4ad3190c99d4433","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.4.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-6.4.0.tgz_1463579068203_0.30650282138958573"},"directories":{}},"6.4.1":{"name":"stylelint","version":"6.4.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","babel-polyfill":"^6.8.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","htmlparser2":"^3.9.0","html-tags":"^1.1.1","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.12.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.0.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","string-width":"^1.0.1","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","coveralls":"^2.11.9","eslint":"^2.4.0","eslint-config-stylelint":"^2.0.0","npm-run-all":"^2.1.0","npmpub":"^3.0.1","nyc":"^6.4.4","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"nyc babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"afbd2a5eacfb0a769fc3faf4f0dd34544cb1c44f","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.4.1","_shasum":"2e30455fb8e0d15919afa6230ca73284d490578e","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"2e30455fb8e0d15919afa6230ca73284d490578e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.4.1.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-6.4.1.tgz_1463584406324_0.7928547624032944"},"directories":{}},"6.4.2":{"name":"stylelint","version":"6.4.2","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","babel-polyfill":"^6.8.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","htmlparser2":"^3.9.0","html-tags":"^1.1.1","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.12.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.0.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","string-width":"^1.0.1","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","coveralls":"^2.11.9","eslint":"^2.4.0","eslint-config-stylelint":"^2.0.0","npm-run-all":"^2.1.0","npmpub":"^3.0.1","nyc":"^6.4.4","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"nyc babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-duplicate-headings":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"ead7d5cbc26c8b36310ee6a7466e670813bd1230","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.4.2","_shasum":"1662e7a76b918d5c97b2ee5cb227eb51ed32c0f7","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"1662e7a76b918d5c97b2ee5cb227eb51ed32c0f7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.4.2.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-6.4.2.tgz_1463682617338_0.1694033183157444"},"directories":{}},"6.5.0":{"name":"stylelint","version":"6.5.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","htmlparser2":"^3.9.0","html-tags":"^1.1.1","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.12.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.0.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","string-width":"^1.0.1","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","coveralls":"^2.11.9","eslint":"^2.4.0","eslint-config-stylelint":"^2.0.0","npm-run-all":"^2.1.0","npmpub":"^3.0.1","nyc":"^6.4.4","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"nyc babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-duplicate-headings":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"8e4b6b97deb532863fc23b691096c254b92b756d","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.5.0","_shasum":"ae2bbc5b3f10dd5f2312d56c7c801dc36e3a4027","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"ae2bbc5b3f10dd5f2312d56c7c801dc36e3a4027","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.5.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-6.5.0.tgz_1463733784327_0.8150616029743105"},"directories":{}},"6.5.1":{"name":"stylelint","version":"6.5.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","htmlparser2":"^3.9.0","html-tags":"^1.1.1","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.12.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.0.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","string-width":"^1.0.1","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","coveralls":"^2.11.9","eslint":"^2.4.0","eslint-config-stylelint":"^2.0.0","npm-run-all":"^2.1.0","npmpub":"^3.0.1","nyc":"^6.4.4","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"nyc babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-duplicate-headings":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"fc87e65c4d4fccf56f4960eb594880a91772679e","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.5.1","_shasum":"fa1c5831b3da129ae4837a8951a8e166b35cd0b1","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"fa1c5831b3da129ae4837a8951a8e166b35cd0b1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.5.1.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-6.5.1.tgz_1463932700725_0.20552577986381948"},"directories":{}},"6.6.0":{"name":"stylelint","version":"6.6.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^4.0.0","globjoin":"^0.1.2","htmlparser2":"^3.9.0","html-tags":"^1.1.1","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.12.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.0.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.1.5","string-width":"^1.0.1","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","coveralls":"^2.11.9","eslint":"^2.4.0","eslint-config-stylelint":"^2.0.0","npm-run-all":"^2.1.0","npmpub":"^3.0.1","nyc":"^6.4.4","postcss-import":"^8.0.2","remark":"^4.0.0","remark-lint":"^3.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"nyc babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-duplicate-headings":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"fc7234f7908945b207d6b1079fe7f645bdda4468","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.6.0","_shasum":"6d4ce1423a572443cfec81598284bdcf685ba304","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"6d4ce1423a572443cfec81598284bdcf685ba304","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.6.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-6.6.0.tgz_1465833146532_0.8088682517409325"},"directories":{}},"6.7.0":{"name":"stylelint","version":"6.7.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^5.0.0","globjoin":"^0.1.2","htmlparser2":"^3.9.0","html-tags":"^1.1.1","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.13.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.0.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.2.1","string-width":"^1.0.1","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","coveralls":"^2.11.9","eslint":"^2.4.0","eslint-config-stylelint":"^2.0.0","npm-run-all":"^2.1.0","npmpub":"^3.0.1","nyc":"^6.4.4","postcss-import":"^8.0.2","remark-cli":"^1.0.0","remark-lint":"^4.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"nyc babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-duplicate-headings":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"0719086cf04cade62c485640d2fdad4188ff1880","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.7.0","_shasum":"3fa7e634e003f8c52956b83f978171cc9db486c6","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"3fa7e634e003f8c52956b83f978171cc9db486c6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.7.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-6.7.0.tgz_1466436161885_0.42288911365903914"},"directories":{}},"6.7.1":{"name":"stylelint","version":"6.7.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^5.0.0","globjoin":"^0.1.2","htmlparser2":"^3.9.0","html-tags":"^1.1.1","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.13.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.0.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.2.1","string-width":"^1.0.1","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","coveralls":"^2.11.9","eslint":"^2.4.0","eslint-config-stylelint":"^2.0.0","npm-run-all":"^2.1.0","npmpub":"^3.0.1","nyc":"^6.4.4","postcss-import":"^8.0.2","remark-cli":"^1.0.0","remark-lint":"^4.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"nyc babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-duplicate-headings":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"784e4c280d3695a7d9ad1417e03cd0526cd1add9","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.7.1","_shasum":"1d4251cc5b7b697dc327eaf4955d26b55b5a06d7","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"1d4251cc5b7b697dc327eaf4955d26b55b5a06d7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.7.1.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-6.7.1.tgz_1466693548222_0.005760662490502"},"directories":{}},"6.8.0":{"name":"stylelint","version":"6.8.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^5.0.0","globjoin":"^0.1.2","htmlparser2":"^3.9.0","html-tags":"^1.1.1","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.13.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.0.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.2.1","string-width":"^1.0.1","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","eslint":"^2.4.0","eslint-config-stylelint":"^2.0.0","npm-run-all":"^2.1.0","npmpub":"^3.0.1","nyc":"^6.4.4","postcss-import":"^8.0.2","remark-cli":"^1.0.0","remark-lint":"^4.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"nyc babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-duplicate-headings":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"a7f3ad0044cfd08baffddd04dc3484e5c50c92a0","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.8.0","_shasum":"e2ceae0b21cd0e63117a92e478e5a75d8e6b152d","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"e2ceae0b21cd0e63117a92e478e5a75d8e6b152d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.8.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-6.8.0.tgz_1467276488060_0.39673699624836445"},"directories":{}},"6.9.0":{"name":"stylelint","version":"6.9.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.3.0","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^5.0.0","globjoin":"^0.1.2","htmlparser2":"^3.9.0","html-tags":"^1.1.1","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.0.0","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.2.1","string-width":"^1.0.1","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","eslint":"3.0.0","eslint-config-stylelint":"^3.0.0","npm-run-all":"^2.1.0","npmpub":"^3.0.1","nyc":"^6.4.4","postcss-import":"^8.0.2","remark-cli":"^1.0.0","remark-lint":"^4.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"nyc babel-tape-runner \"src/**/__tests__/*.js\"","test":"npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-duplicate-headings":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"b8dd40a164b8bede2e5f39a474c76a2bc74093dd","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@6.9.0","_shasum":"2d2387097c1eb54e6e323b8c4867725da5e02148","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"2d2387097c1eb54e6e323b8c4867725da5e02148","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-6.9.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-6.9.0.tgz_1467910806569_0.45902839465998113"},"directories":{}},"7.0.0":{"name":"stylelint","version":"7.0.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^5.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.1.3","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.2.1","string-width":"^1.0.1","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","eslint":"^3.0.0","eslint-config-stylelint":"^3.0.0","htmlparser2":"^3.9.0","known-css-properties":"^0.0.3","npm-run-all":"^2.1.0","npmpub":"^3.0.1","nyc":"^7.0.0","postcss-import":"^8.0.2","remark-cli":"^1.0.0","remark-lint":"^4.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/**/*.js\"","test":"nyc npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"sort-imports":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-duplicate-headings":false,"no-emphasis-as-heading":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"e2914055de764058d773e64d11a8858507705c01","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@7.0.0","_shasum":"8c9bfb170f42fde06917840434b400dfdefd3641","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"8c9bfb170f42fde06917840434b400dfdefd3641","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.0.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-7.0.0.tgz_1468425712073_0.9107298557646573"},"directories":{}},"7.0.1":{"name":"stylelint","version":"7.0.1","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^5.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.1.3","known-css-properties":"^0.0.3","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.2.1","string-width":"^1.0.1","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","eslint":"^3.0.0","eslint-config-stylelint":"^3.0.0","htmlparser2":"^3.9.0","npm-run-all":"^2.1.0","npmpub":"^3.0.1","nyc":"^7.0.0","postcss-import":"^8.0.2","remark-cli":"^1.0.0","remark-lint":"^4.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/**/*.js\"","test":"nyc npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"sort-imports":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-duplicate-headings":false,"no-emphasis-as-heading":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"33fcb58c02815e24f7717495f8207448b2e02427","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@7.0.1","_shasum":"fc883c28abe671ec0e1dd619e3358251c2b0de8d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"fc883c28abe671ec0e1dd619e3358251c2b0de8d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.0.1.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-7.0.1.tgz_1468426359015_0.5629548237193376"},"directories":{}},"7.0.2":{"name":"stylelint","version":"7.0.2","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^5.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.1.3","known-css-properties":"^0.0.3","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.2.1","string-width":"^1.0.1","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","eslint":"^3.0.0","eslint-config-stylelint":"^3.0.0","htmlparser2":"^3.9.0","npm-run-all":"^2.1.0","npmpub":"^3.0.1","nyc":"^7.0.0","postcss-import":"^8.0.2","remark-cli":"^1.0.0","remark-lint":"^4.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/**/*.js\"","test":"nyc npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"sort-imports":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-duplicate-headings":false,"no-emphasis-as-heading":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"e64f4f98a7e617ea43163d9422eefd9ec5344d36","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@7.0.2","_shasum":"84702277188915d421759603ee7639a3303c6225","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"84702277188915d421759603ee7639a3303c6225","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.0.2.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-7.0.2.tgz_1468535015015_0.4911710978485644"},"directories":{}},"7.0.3":{"name":"stylelint","version":"7.0.3","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^5.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.1.3","known-css-properties":"^0.0.3","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.2.1","string-width":"^1.0.1","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","eslint":"^3.0.0","eslint-config-stylelint":"^3.0.0","htmlparser2":"^3.9.0","npm-run-all":"^2.1.0","npmpub":"^3.0.1","nyc":"^7.0.0","postcss-import":"^8.0.2","remark-cli":"^1.0.0","remark-lint":"^4.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/**/*.js\"","test":"nyc npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"sort-imports":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-duplicate-headings":false,"no-emphasis-as-heading":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"7cf5fa3f9d15d5173e363e2cd9c8c083e5dfeb6d","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@7.0.3","_shasum":"b0882cc24a176e3950795c2164848f0092451d4b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"b0882cc24a176e3950795c2164848f0092451d4b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.0.3.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-7.0.3.tgz_1468857277023_0.27684499113820493"},"directories":{}},"7.1.0":{"name":"stylelint","version":"7.1.0","description":"Modern CSS linter","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","src","docs","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^6.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.1.3","known-css-properties":"^0.0.3","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-media-query-parser":"^0.2.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.1.3","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.2.1","string-width":"^1.0.1","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.1.18","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","eslint":"~3.2.0","eslint-config-stylelint":"^3.0.0","htmlparser2":"^3.9.0","npm-run-all":"^2.1.0","npmpub":"^3.0.1","nyc":"^7.0.0","postcss-import":"^8.0.2","remark-cli":"^1.0.0","remark-lint":"^4.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/**/*.js\"","test":"nyc npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"sort-imports":2,"template-curly-spacing":2}},"remarkConfig":{"plugins":{"lint":{"list-item-content-indent":false,"list-item-indent":"space","list-item-spacing":false,"maximum-heading-length":false,"maximum-line-length":false,"no-duplicate-headings":false,"no-emphasis-as-heading":false,"no-heading-punctuation":false,"no-missing-blank-lines":false,"no-multiple-toplevel-headings":false}}},"gitHead":"6a987fca600bfe0e894035cea186e02e4a1d69d5","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@7.1.0","_shasum":"186086e1628105a353c383afddc5c478e0fc7469","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"186086e1628105a353c383afddc5c478e0fc7469","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.1.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-7.1.0.tgz_1470151890288_0.03121759556233883"},"directories":{}},"7.2.0":{"name":"stylelint","version":"7.2.0","description":"A mighty, modern CSS linter.","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","docs","src/rules/**/*.md","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^6.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.1.3","known-css-properties":"^0.0.4","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-media-query-parser":"^0.2.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.2.0","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.2.1","string-width":"^1.0.1","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.13.1","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","eslint":"~3.4.0","eslint-config-stylelint":"^4.0.0","htmlparser2":"^3.9.0","npm-run-all":"^3.0.0","npmpub":"^3.0.1","nyc":"^8.1.0","postcss-import":"^8.0.2","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/**/*.js\"","test":"nyc npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"sort-imports":2,"template-curly-spacing":2}},"remarkConfig":{"presets":["lint-recommended","lint-consistent"]},"gitHead":"28ba75e292fa4b7a3d585019aa80002629acd61d","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@7.2.0","_shasum":"16e7a1f01caad8a5012e40ba6296576bd5e846fe","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"16e7a1f01caad8a5012e40ba6296576bd5e846fe","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.2.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-7.2.0.tgz_1472418512509_0.008480618242174387"},"directories":{}},"7.3.0":{"name":"stylelint","version":"7.3.0","description":"A mighty, modern CSS linter.","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","docs","src/rules/**/*.md","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^6.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.1.3","known-css-properties":"^0.0.4","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-media-query-parser":"^0.2.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.3.0","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.2.1","string-width":"^1.0.1","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.13.1","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","eslint":"~3.5.0","eslint-config-stylelint":"^4.0.0","npm-run-all":"^3.0.0","npmpub":"^3.0.1","nyc":"^8.1.0","postcss-import":"^8.0.2","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/**/*.js\"","test":"nyc npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"sort-imports":2,"template-curly-spacing":2}},"greenkeeper":{"label":"PR: review needed"},"remarkConfig":{"presets":["lint-recommended","lint-consistent"]},"gitHead":"7f00c1582f35ad3ade3a38e6b450b18ba7e58285","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@7.3.0","_shasum":"73f097da8ca6ce0a4d96e61bfc1900f4dc2aad52","_from":".","_npmVersion":"2.15.10","_nodeVersion":"4.5.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"73f097da8ca6ce0a4d96e61bfc1900f4dc2aad52","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.3.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-7.3.0.tgz_1474313502850_0.44296455872245133"},"directories":{}},"7.3.1":{"name":"stylelint","version":"7.3.1","description":"A mighty, modern CSS linter.","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","docs","src/rules/**/*.md","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^1.1.0","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^6.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.1.3","known-css-properties":"^0.0.4","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-media-query-parser":"^0.2.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.3.0","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.2.1","string-width":"^1.0.1","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-preset-es2015":"^6.13.1","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","eslint":"~3.5.0","eslint-config-stylelint":"^4.0.0","npm-run-all":"^3.0.0","npmpub":"^3.0.1","nyc":"^8.1.0","postcss-import":"^8.0.2","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/**/*.js\"","test":"nyc npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":"stylelint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"sort-imports":2,"template-curly-spacing":2}},"greenkeeper":{"label":"PR: review needed"},"remarkConfig":{"presets":["lint-recommended","lint-consistent"]},"gitHead":"8d2c0d1f744f92c9f89b70303ee89773c3b71b44","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@7.3.1","_shasum":"dcefa281d08880dfb52756b2737d61b81d985303","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.5.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"dcefa281d08880dfb52756b2737d61b81d985303","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.3.1.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-7.3.1.tgz_1474384675856_0.766251019667834"},"directories":{}},"7.4.0":{"name":"stylelint","version":"7.4.0","description":"A mighty, modern CSS linter.","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","docs","src/rules/**/*.md","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^2.0.0","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^6.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.1.3","known-css-properties":"^0.0.5","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-media-query-parser":"^0.2.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.3.0","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.3.0","string-width":"^2.0.0","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-eslint":"^6.1.2","babel-plugin-transform-flow-strip-types":"^6.14.0","babel-preset-es2015":"^6.14.0","babel-preset-es2017":"^6.14.0","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","eslint":"~3.7.0","eslint-config-stylelint":"^5.0.0","flow-bin":"^0.32.0","npm-run-all":"^3.0.0","npmpub":"^3.0.1","nyc":"^8.1.0","postcss-import":"^8.0.2","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","flow":"flow","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/**/*.js\"","test":"nyc npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015","es2017"],"plugins":["transform-flow-strip-types"]},"eslintConfig":{"extends":"stylelint","parser":"babel-eslint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"sort-imports":2,"template-curly-spacing":2}},"greenkeeper":{"label":"PR: review needed"},"remarkConfig":{"presets":["lint-recommended","lint-consistent"]},"gitHead":"07bc5a65f9b46292ba59e2d7214dcc1b272761f6","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@7.4.0","_shasum":"655d28a433bd81a6c39d2649d0a3b3f2b1025870","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"655d28a433bd81a6c39d2649d0a3b3f2b1025870","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.4.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-7.4.0.tgz_1475949638911_0.05237644072622061"},"directories":{}},"7.4.1":{"name":"stylelint","version":"7.4.1","description":"A mighty, modern CSS linter.","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","docs","src/rules/**/*.md","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^2.0.0","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^6.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.1.3","known-css-properties":"^0.0.5","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-media-query-parser":"^0.2.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.3.0","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.3.0","string-width":"^2.0.0","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-eslint":"^6.1.2","babel-plugin-transform-flow-strip-types":"^6.14.0","babel-preset-es2015":"^6.14.0","babel-preset-es2017":"^6.14.0","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","eslint":"~3.7.0","eslint-config-stylelint":"^5.0.0","flow-bin":"^0.32.0","npm-run-all":"^3.0.0","npmpub":"^3.0.1","nyc":"^8.1.0","postcss-import":"^8.0.2","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","flow":"flow","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/**/*.js\"","test":"nyc npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015","es2017"],"plugins":["transform-flow-strip-types"]},"eslintConfig":{"extends":"stylelint","parser":"babel-eslint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"sort-imports":2,"template-curly-spacing":2}},"greenkeeper":{"label":"PR: review needed"},"remarkConfig":{"presets":["lint-recommended","lint-consistent"]},"gitHead":"dc2c8b46a06876620c4946d2b0e2a8cfc25e8963","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@7.4.1","_shasum":"aaa4a1b4c06d9275e6a107bdc501f9227da55c6b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"aaa4a1b4c06d9275e6a107bdc501f9227da55c6b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.4.1.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-7.4.1.tgz_1476038324494_0.9035833340603858"},"directories":{}},"7.4.2":{"name":"stylelint","version":"7.4.2","description":"A mighty, modern CSS linter.","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","docs","src/rules/**/*.md","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^2.0.0","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^6.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.1.3","known-css-properties":"^0.0.5","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-media-query-parser":"^0.2.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.3.0","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.3.0","string-width":"^2.0.0","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.1.2","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-eslint":"^6.1.2","babel-plugin-transform-flow-strip-types":"^6.14.0","babel-preset-es2015":"^6.14.0","babel-preset-es2017":"^6.14.0","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","eslint":"~3.7.0","eslint-config-stylelint":"^5.0.0","flow-bin":"^0.32.0","npm-run-all":"^3.0.0","npmpub":"^3.0.1","nyc":"^8.1.0","postcss-import":"^8.0.2","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","flow":"flow","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/**/*.js\"","test":"nyc npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015","es2017"],"plugins":["transform-flow-strip-types"]},"eslintConfig":{"extends":"stylelint","parser":"babel-eslint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"sort-imports":2,"template-curly-spacing":2}},"greenkeeper":{"label":"PR: review needed"},"remarkConfig":{"presets":["lint-recommended","lint-consistent"]},"gitHead":"8513df56fd5029f5a15beba83178b057f5ffbe9b","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@7.4.2","_shasum":"b4ea1d71b2950d9a0b408877594f7d1ecb2b992e","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.6.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"b4ea1d71b2950d9a0b408877594f7d1ecb2b992e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.4.2.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-7.4.2.tgz_1476057727704_0.8667774002533406"},"directories":{}},"7.5.0":{"name":"stylelint","version":"7.5.0","description":"A mighty, modern CSS linter.","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","docs","src/rules/**/*.md","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^2.0.0","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^6.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.2.0","known-css-properties":"^0.0.5","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-media-query-parser":"^0.2.0","postcss-reporter":"^1.3.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.3.0","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.3.0","string-width":"^2.0.0","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.2.0","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-eslint":"^7.0.0","babel-plugin-transform-flow-strip-types":"^6.14.0","babel-preset-es2015":"^6.14.0","babel-preset-es2017":"^6.14.0","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","eslint":"~3.8.0","eslint-config-stylelint":"^5.0.0","flow-bin":"^0.33.0","npm-run-all":"^3.0.0","npmpub":"^3.0.1","nyc":"^8.1.0","postcss-import":"^8.0.2","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","tape":"^4.2.0"},"scripts":{"benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","flow":"flow","pretest":"npm run lint","tape":"babel-tape-runner \"src/**/__tests__/**/*.js\"","test":"nyc npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015","es2017"],"plugins":["transform-flow-strip-types"]},"eslintConfig":{"extends":"stylelint","parser":"babel-eslint","rules":{"arrow-spacing":2,"no-var":2,"object-shorthand":2,"prefer-const":2,"sort-imports":2,"template-curly-spacing":2}},"greenkeeper":{"label":"PR: review needed"},"remarkConfig":{"presets":["lint-recommended","lint-consistent"]},"gitHead":"758c0c2ff895c70832030b5d5610e3f579fb2af7","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@7.5.0","_shasum":"fe19a22e793c419d4fc31d58f3948d599fdb81fb","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.6.0","_npmUser":{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},"dist":{"shasum":"fe19a22e793c419d4fc31d58f3948d599fdb81fb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.5.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/stylelint-7.5.0.tgz_1476886207959_0.7051269903313369"},"directories":{}},"7.6.0":{"name":"stylelint","version":"7.6.0","description":"A mighty, modern CSS linter.","keywords":["css","csslint","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"dist/index.js","bin":{"stylelint":"dist/cli.js"},"files":["CONTRIBUTING.md","dist","docs","src/rules/**/*.md","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^2.0.0","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^6.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.2.0","known-css-properties":"^0.0.5","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-media-query-parser":"^0.2.0","postcss-reporter":"^2.0.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.4.0","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.3.0","string-width":"^2.0.0","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.2.0","svg-tags":"^1.0.0","table":"^3.7.8"},"devDependencies":{"babel-cli":"^6.1.18","babel-eslint":"^7.0.0","babel-jest":"^17.0.2","babel-plugin-transform-flow-strip-types":"^6.14.0","babel-preset-es2015":"^6.14.0","babel-preset-es2017":"^6.14.0","babel-tape-runner":"^2.0.0","benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","eslint":"~3.10.0","eslint-config-stylelint":"^5.0.0","eslint-plugin-flowtype":"^2.21.0","flow-bin":"^0.35.0","jest":"^17.0.1","npm-run-all":"^3.0.0","npmpub":"^3.0.1","nyc":"^9.0.1","postcss-import":"^8.0.2","postcss-safe-parser":"^2.0.0","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","request":"^2.69.0","rimraf":"^2.5.2","sinon":"^1.16.1","strip-ansi":"^3.0.1","tape":"^4.2.0"},"scripts":{"jest":"jest","test-system":"npm run jest","benchmark-rule":"babel-node scripts/benchmark-rule.js","coveralls":"nyc report --reporter=text-lcov | coveralls","lint:js":"eslint .","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","flow":"flow","tape":"babel-tape-runner \"src/**/__tests__/**/*.js\"","test":"nyc npm run tape","prebuild":"rimraf dist","build":"babel src --out-dir dist","prepublish":"npm run build","release":"npmpub"},"babel":{"presets":["es2015","es2017"],"plugins":["transform-flow-strip-types"]},"jest":{"testPathDirs":["system-tests"],"testRegex":".*\\.test\\.js$"},"greenkeeper":{"label":"PR: review needed"},"remarkConfig":{"presets":["lint-recommended","lint-consistent"]},"gitHead":"3bc5f66126a458dc4712622baea1e1088138d038","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@7.6.0","_shasum":"ddeb06ccc95f72c119fcde5e85439fb7e9cde4df","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"ddeb06ccc95f72c119fcde5e85439fb7e9cde4df","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.6.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/stylelint-7.6.0.tgz_1479566901891_0.2329466522205621"},"directories":{}},"7.7.0":{"name":"stylelint","version":"7.7.0","description":"A mighty, modern CSS linter.","keywords":["css","less","scss","sugarss","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"lib/index.js","bin":{"stylelint":"bin/stylelint.js"},"files":["bin","CONTRIBUTING.md","docs","lib","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^2.1.1","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^6.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.2.0","known-css-properties":"^0.0.6","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","multimatch":"^2.1.0","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-media-query-parser":"^0.2.0","postcss-reporter":"^3.0.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.4.0","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.3.0","string-width":"^2.0.0","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.2.0","svg-tags":"^1.0.0","table":"^4.0.1"},"devDependencies":{"benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","d3-queue":"^3.0.3","eslint":"~3.12.0","eslint-config-stylelint":"^6.0.0","flow-bin":"^0.37.0","jest":"^18.0.0","npm-run-all":"^3.0.0","npmpub":"^3.0.1","postcss-import":"^9.0.0","postcss-safe-parser":"^2.0.0","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","remark-validate-links":"^5.0.0","request":"^2.69.0","sinon":"^1.16.1","strip-ansi":"^3.0.1"},"scripts":{"benchmark-rule":"node scripts/benchmark-rule.js","flow":"flow","jest":"jest","lint:js":"eslint .","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm-run-all --serial lint flow","release":"npmpub","test":"jest","watch":"jest --watch"},"eslintConfig":{"extends":["stylelint"],"globals":{"testRule":true}},"jest":{"setupFiles":["./jest-setup.js"],"testEnvironment":"node","testPathDirs":["lib","system-tests"],"testRegex":".*\\.test\\.js$|rules/.*/__tests__/.*\\.js$"},"greenkeeper":{"label":"PR: review needed"},"remarkConfig":{"presets":["lint-recommended","lint-consistent"],"plugins":{"validate-links":{"repository":"stylelint/stylelint"}}},"gitHead":"a4c32c70429b8078f8d11390a1c2c8b25cbb3fb1","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"homepage":"https://github.com/stylelint/stylelint#readme","_id":"stylelint@7.7.0","_shasum":"bf222c2a202c0b02d7834ad321fe0883d33cfde0","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.2.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"bf222c2a202c0b02d7834ad321fe0883d33cfde0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.7.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/stylelint-7.7.0.tgz_1482065816151_0.633272354491055"},"directories":{}},"7.7.1":{"name":"stylelint","version":"7.7.1","description":"A mighty, modern CSS linter.","keywords":["css","less","scss","sugarss","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","homepage":"http://stylelint.io","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"lib/index.js","bin":{"stylelint":"bin/stylelint.js"},"files":["bin","CONTRIBUTING.md","docs","lib","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^2.1.1","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^6.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.2.0","known-css-properties":"^0.0.6","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","micromatch":"^2.3.11","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-media-query-parser":"^0.2.0","postcss-reporter":"^3.0.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.4.0","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.3.0","string-width":"^2.0.0","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.2.0","svg-tags":"^1.0.0","table":"^4.0.1"},"devDependencies":{"benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","d3-queue":"^3.0.3","eslint":"~3.12.0","eslint-config-stylelint":"^6.0.0","flow-bin":"^0.37.0","jest":"^18.0.0","npm-run-all":"^4.0.0","npmpub":"^3.0.1","postcss-import":"^9.0.0","postcss-safe-parser":"^2.0.0","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","remark-validate-links":"^5.0.0","request":"^2.69.0","sinon":"^1.16.1","strip-ansi":"^3.0.1"},"scripts":{"benchmark-rule":"node scripts/benchmark-rule.js","flow":"flow","jest":"jest","lint:js":"eslint .","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm-run-all --serial lint flow","release":"npmpub","test":"jest","watch":"jest --watch"},"eslintConfig":{"extends":["stylelint"],"globals":{"testRule":true}},"jest":{"setupFiles":["./jest-setup.js"],"testEnvironment":"node","testPathDirs":["lib","system-tests"],"testRegex":".*\\.test\\.js$|rules/.*/__tests__/.*\\.js$"},"greenkeeper":{"label":"PR: review needed"},"remarkConfig":{"presets":["lint-recommended","lint-consistent"],"plugins":{"validate-links":{"repository":"stylelint/stylelint"}}},"gitHead":"cb5b48abc43fd7d6f7a0b61a59cd1ecacbf4bccd","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"_id":"stylelint@7.7.1","_shasum":"af30b6677e307d38b0ad64b70e719c1752973c67","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.2.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"af30b6677e307d38b0ad64b70e719c1752973c67","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.7.1.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/stylelint-7.7.1.tgz_1483200692909_0.3293654383160174"},"directories":{}},"7.8.0":{"name":"stylelint","version":"7.8.0","description":"A mighty, modern CSS linter.","keywords":["css","less","scss","sugarss","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","homepage":"https://stylelint.io","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"lib/index.js","bin":{"stylelint":"bin/stylelint.js"},"files":["bin","CONTRIBUTING.md","docs","lib","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^2.1.1","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^6.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.2.0","known-css-properties":"^0.0.6","lodash":"^4.0.0","log-symbols":"^1.0.2","meow":"^3.3.0","micromatch":"^2.3.11","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-media-query-parser":"^0.2.0","postcss-reporter":"^3.0.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.4.0","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.3.0","string-width":"^2.0.0","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.2.0","svg-tags":"^1.0.0","table":"^4.0.1"},"devDependencies":{"benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","d3-queue":"^3.0.3","eslint":"~3.14.0","eslint-config-stylelint":"^6.0.0","flow-bin":"^0.38.0","jest":"^18.0.0","npm-run-all":"^4.0.0","npmpub":"^3.0.1","postcss-import":"^9.0.0","postcss-safe-parser":"^2.0.0","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","remark-validate-links":"^5.0.0","request":"^2.69.0","sinon":"^1.16.1","strip-ansi":"^3.0.1"},"scripts":{"benchmark-rule":"node scripts/benchmark-rule.js","flow":"flow","jest":"jest","lint:js":"eslint . --cache","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm-run-all --serial lint flow","release":"npmpub","test":"jest","watch":"jest --watch"},"eslintConfig":{"extends":["stylelint"],"globals":{"testRule":true}},"jest":{"setupFiles":["./jest-setup.js"],"testEnvironment":"node","testPathDirs":["lib","system-tests"],"testRegex":".*\\.test\\.js$|rules/.*/__tests__/.*\\.js$"},"greenkeeper":{"label":"PR: review needed"},"remarkConfig":{"presets":["lint-recommended","lint-consistent"],"plugins":{"validate-links":{"repository":"stylelint/stylelint"}}},"gitHead":"b56306d232641aeffff6173b353fb11e2489a72a","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"_id":"stylelint@7.8.0","_shasum":"ac701044ed03c44f7a9f73d4d5dc1bd1eaae12d1","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"ac701044ed03c44f7a9f73d4d5dc1bd1eaae12d1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.8.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/stylelint-7.8.0.tgz_1486041933530_0.4761681992094964"},"directories":{}},"7.9.0":{"name":"stylelint","version":"7.9.0","description":"A mighty, modern CSS linter.","keywords":["css","less","scss","sugarss","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","homepage":"https://stylelint.io","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"lib/index.js","bin":{"stylelint":"bin/stylelint.js"},"files":["bin","CONTRIBUTING.md","docs","lib","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^2.1.1","doiuse":"^2.4.1","execall":"^1.0.0","get-stdin":"^5.0.0","globby":"^6.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.2.0","known-css-properties":"^0.0.6","lodash":"^4.17.4","log-symbols":"^1.0.2","meow":"^3.3.0","micromatch":"^2.3.11","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-media-query-parser":"^0.2.0","postcss-reporter":"^3.0.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.4.0","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.3.0","string-width":"^2.0.0","style-search":"^0.1.0","stylehacks":"^2.3.0","sugarss":"^0.2.0","svg-tags":"^1.0.0","table":"^4.0.1"},"devDependencies":{"benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.9","d3-queue":"^3.0.3","eslint":"~3.15.0","eslint-config-stylelint":"^6.0.0","flow-bin":"^0.39.0","jest":"^18.0.0","npm-run-all":"^4.0.0","npmpub":"^3.0.1","postcss-import":"^9.0.0","postcss-safe-parser":"^2.0.0","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","remark-validate-links":"^5.0.0","request":"^2.69.0","sinon":"^1.16.1","strip-ansi":"^3.0.1"},"scripts":{"benchmark-rule":"node scripts/benchmark-rule.js","flow":"flow","jest":"jest","lint:js":"eslint . --cache","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm-run-all --serial lint flow","release":"npmpub","test":"jest","watch":"jest --watch"},"eslintConfig":{"extends":["stylelint"],"globals":{"testRule":true}},"jest":{"setupFiles":["./jest-setup.js"],"testEnvironment":"node","testPathDirs":["lib","system-tests"],"testRegex":".*\\.test\\.js$|rules/.*/__tests__/.*\\.js$"},"greenkeeper":{"label":"PR: review needed"},"remarkConfig":{"presets":["lint-recommended","lint-consistent"],"plugins":{"validate-links":{"repository":"stylelint/stylelint"}}},"gitHead":"e3ad7016c45917d789f0e65c36f149eafc447dc3","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"_id":"stylelint@7.9.0","_shasum":"b8d9ea20f887ab351075c6aded9528de24509327","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"b8d9ea20f887ab351075c6aded9528de24509327","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.9.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-7.9.0.tgz_1487499008122_0.7674054214730859"},"directories":{}},"7.10.0":{"name":"stylelint","version":"7.10.0","description":"A mighty, modern CSS linter.","keywords":["css","less","scss","sugarss","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","homepage":"https://stylelint.io","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"lib/index.js","bin":{"stylelint":"bin/stylelint.js"},"files":["bin","CONTRIBUTING.md","decls/*.js","docs","lib","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^2.1.1","debug":"^2.6.0","doiuse":"^2.4.1","execall":"^1.0.0","file-entry-cache":"^2.0.0","get-stdin":"^5.0.0","globby":"^6.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.2.0","imurmurhash":"^0.1.4","known-css-properties":"^0.0.7","lodash":"^4.17.4","log-symbols":"^1.0.2","meow":"^3.3.0","micromatch":"^2.3.11","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-media-query-parser":"^0.2.0","postcss-reporter":"^3.0.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.4.0","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.3.0","string-width":"^2.0.0","style-search":"^0.1.0","stylehacks":"^2.3.2","sugarss":"^0.2.0","svg-tags":"^1.0.0","table":"^4.0.1"},"devDependencies":{"benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.16","cp-file":"^4.1.1","d3-queue":"^3.0.3","eslint":"~3.19.0","eslint-config-stylelint":"^6.0.0","file-exists-promise":"^1.0.2","flow-bin":"^0.42.0","fs-promise":"^2.0.0","jest":"^19.0.1","npm-run-all":"^4.0.0","npmpub":"^3.0.1","pify":"^2.3.0","postcss-import":"^9.0.0","postcss-safe-parser":"^2.0.0","remark-cli":"^3.0.0","remark-preset-lint-consistent":"^2.0.0","remark-preset-lint-recommended":"^2.0.0","remark-validate-links":"^6.0.0","request":"^2.69.0","sinon":"^2.0.0","strip-ansi":"^3.0.1"},"scripts":{"benchmark-rule":"node scripts/benchmark-rule.js","flow":"flow","jest":"jest","lint:js":"eslint . --cache","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm-run-all --serial lint flow","release":"npmpub","test":"jest --coverage","watch":"jest --watch"},"eslintConfig":{"extends":["stylelint"],"globals":{"testRule":true}},"jest":{"collectCoverage":false,"collectCoverageFrom":["lib/**/*.js"],"coverageDirectory":"./.coverage/","coverageReporters":["lcov","text-summary"],"coverageThreshold":{"global":{"branches":75,"functions":75,"lines":75,"statements":75}},"setupFiles":["./jest-setup.js"],"testEnvironment":"node","roots":["lib","system-tests"],"testRegex":".*\\.test\\.js$|rules/.*/__tests__/.*\\.js$"},"greenkeeper":{"label":"PR: review needed"},"remarkConfig":{"plugins":["preset-lint-recommended","preset-lint-consistent",["validate-links",{"repository":"stylelint/stylelint"}]]},"gitHead":"d41605149dbe2dbf6a5cb90f17b0639f4589139f","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"_id":"stylelint@7.10.0","_shasum":"7950e443001bfc3a2e838f5637b499ad0b621a5f","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"7950e443001bfc3a2e838f5637b499ad0b621a5f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.10.0.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-7.10.0.tgz_1491063110118_0.7527684832457453"},"directories":{}},"7.10.1":{"name":"stylelint","version":"7.10.1","description":"A mighty, modern CSS linter.","keywords":["css","less","scss","sugarss","lint","linter","stylelint"],"authors":["David Clark","Maxime Thirouin","Richard Hallows"],"license":"MIT","homepage":"https://stylelint.io","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint.git"},"main":"lib/index.js","bin":{"stylelint":"bin/stylelint.js"},"files":["bin","CONTRIBUTING.md","decls/*.js","docs","lib","!**/__tests__"],"engines":{"node":">=4.2.1"},"dependencies":{"autoprefixer":"^6.0.0","balanced-match":"^0.4.0","chalk":"^1.1.1","colorguard":"^1.2.0","cosmiconfig":"^2.1.1","debug":"^2.6.0","doiuse":"^2.4.1","execall":"^1.0.0","file-entry-cache":"^2.0.0","get-stdin":"^5.0.0","globby":"^6.0.0","globjoin":"^0.1.4","html-tags":"^1.1.1","ignore":"^3.2.0","imurmurhash":"^0.1.4","known-css-properties":"^0.0.7","lodash":"^4.17.4","log-symbols":"^1.0.2","meow":"^3.3.0","micromatch":"^2.3.11","normalize-selector":"^0.2.0","postcss":"^5.0.20","postcss-less":"^0.14.0","postcss-media-query-parser":"^0.2.0","postcss-reporter":"^3.0.0","postcss-resolve-nested-selector":"^0.1.1","postcss-scss":"^0.4.0","postcss-selector-parser":"^2.1.1","postcss-value-parser":"^3.1.1","resolve-from":"^2.0.0","specificity":"^0.3.0","string-width":"^2.0.0","style-search":"^0.1.0","stylehacks":"^2.3.2","sugarss":"^0.2.0","svg-tags":"^1.0.0","table":"^4.0.1"},"devDependencies":{"benchmark":"^2.1.0","common-tags":"^1.3.0","coveralls":"^2.11.16","cp-file":"^4.1.1","d3-queue":"^3.0.3","eslint":"~3.19.0","eslint-config-stylelint":"^6.0.0","file-exists-promise":"^1.0.2","flow-bin":"^0.42.0","fs-promise":"^2.0.0","jest":"^19.0.1","npm-run-all":"^4.0.0","npmpub":"^3.0.1","pify":"^2.3.0","postcss-import":"^9.0.0","postcss-safe-parser":"^2.0.0","remark-cli":"^3.0.0","remark-preset-lint-consistent":"^2.0.0","remark-preset-lint-recommended":"^2.0.0","remark-validate-links":"^6.0.0","request":"^2.69.0","sinon":"^2.0.0","strip-ansi":"^3.0.1"},"scripts":{"benchmark-rule":"node scripts/benchmark-rule.js","flow":"flow","jest":"jest","lint:js":"eslint . --cache","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm-run-all --serial lint flow","release":"npmpub","test":"jest --coverage","watch":"jest --watch"},"eslintConfig":{"extends":["stylelint"],"globals":{"testRule":true}},"jest":{"collectCoverage":false,"collectCoverageFrom":["lib/**/*.js"],"coverageDirectory":"./.coverage/","coverageReporters":["lcov","text-summary"],"coverageThreshold":{"global":{"branches":75,"functions":75,"lines":75,"statements":75}},"setupFiles":["./jest-setup.js"],"testEnvironment":"node","roots":["lib","system-tests"],"testRegex":".*\\.test\\.js$|rules/.*/__tests__/.*\\.js$"},"greenkeeper":{"label":"PR: review needed"},"remarkConfig":{"plugins":["preset-lint-recommended","preset-lint-consistent",["validate-links",{"repository":"stylelint/stylelint"}]]},"gitHead":"d76c6d1358917fe06f56710f71ddfc32ebd6b759","bugs":{"url":"https://github.com/stylelint/stylelint/issues"},"_id":"stylelint@7.10.1","_shasum":"209a7ce5e781fc2a62489fbb31ec0201ec675db2","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"209a7ce5e781fc2a62489fbb31ec0201ec675db2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint/-/stylelint-7.10.1.tgz"},"maintainers":[{"name":"davidtheclark","email":"david.dave.clark@gmail.com"},{"name":"jeddy3","email":"npm@richardhallows.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-7.10.1.tgz_1491130328407_0.7521827802993357"},"directories":{}}},"name":"stylelint","time":{"modified":"2017-04-02T10:52:10.466Z","created":"2014-12-11T07:23:24.871Z","0.0.0":"2014-12-11T07:23:24.871Z","0.1.0":"2015-07-08T23:59:20.993Z","0.1.1":"2015-07-12T23:13:12.218Z","0.1.2":"2015-07-15T08:57:47.306Z","0.2.0":"2015-07-17T16:24:43.707Z","0.3.0":"2015-07-22T13:32:42.428Z","0.3.1":"2015-07-23T14:11:45.737Z","0.3.2":"2015-07-23T21:47:35.148Z","0.4.0":"2015-07-24T13:27:13.853Z","0.4.1":"2015-07-24T18:31:10.520Z","0.5.0":"2015-07-30T14:41:36.944Z","0.6.0":"2015-07-31T13:02:45.855Z","0.6.1":"2015-08-04T14:36:52.897Z","0.6.2":"2015-08-04T14:57:00.482Z","0.7.0":"2015-08-09T20:09:11.297Z","0.8.0":"2015-09-02T21:43:20.879Z","1.0.0":"2015-09-05T18:43:01.292Z","1.0.1":"2015-09-06T20:48:23.242Z","1.1.0":"2015-09-19T20:58:53.512Z","1.2.0":"2015-10-06T21:35:36.226Z","1.2.1":"2015-10-08T14:07:09.257Z","2.0.0":"2015-10-16T16:37:16.765Z","2.1.0":"2015-11-04T16:47:21.085Z","2.2.0":"2015-11-09T13:30:25.363Z","2.3.0":"2015-11-10T13:55:57.359Z","2.3.1":"2015-11-12T10:18:29.838Z","2.3.2":"2015-11-18T18:37:52.857Z","2.3.3":"2015-11-22T19:36:23.033Z","2.3.4":"2015-11-22T21:38:25.480Z","2.3.5":"2015-11-30T14:15:15.152Z","2.3.6":"2015-12-07T11:21:44.432Z","2.3.7":"2015-12-10T03:00:30.918Z","3.0.0":"2015-12-11T02:32:52.617Z","3.0.1":"2015-12-11T03:55:07.633Z","3.0.2":"2015-12-11T05:18:20.057Z","3.0.3":"2015-12-11T14:52:23.301Z","3.1.0":"2015-12-12T16:32:00.135Z","3.1.1":"2015-12-13T17:45:46.413Z","3.1.2":"2015-12-13T19:23:39.848Z","3.1.3":"2015-12-17T19:26:37.036Z","3.1.4":"2015-12-20T21:32:41.135Z","3.2.0":"2015-12-31T14:17:46.664Z","3.2.1":"2016-01-07T14:56:37.940Z","3.2.2":"2016-01-10T02:21:19.929Z","3.2.3":"2016-01-15T13:51:56.760Z","4.0.0":"2016-01-20T12:15:15.056Z","4.1.0":"2016-01-22T10:55:07.458Z","4.2.0":"2016-02-01T00:43:09.845Z","4.3.0":"2016-02-13T21:09:20.217Z","4.3.1":"2016-02-13T22:10:00.040Z","4.3.2":"2016-02-13T22:36:10.091Z","4.3.3":"2016-02-14T03:21:51.491Z","4.3.4":"2016-02-17T04:30:32.109Z","4.3.5":"2016-02-17T10:48:06.720Z","4.3.6":"2016-02-18T11:20:32.428Z","4.4.0":"2016-02-20T18:02:57.930Z","4.5.0":"2016-03-07T15:31:33.061Z","4.5.1":"2016-03-08T09:31:19.820Z","5.0.0":"2016-03-11T02:04:00.235Z","5.0.1":"2016-03-12T09:41:24.360Z","5.1.0":"2016-03-18T02:55:47.844Z","5.2.0":"2016-03-25T01:17:16.444Z","5.2.1":"2016-03-25T20:47:21.864Z","5.3.0":"2016-04-07T02:28:37.878Z","5.4.0":"2016-04-09T00:07:13.015Z","6.0.0":"2016-04-19T12:40:22.571Z","6.0.1":"2016-04-19T18:41:46.611Z","6.0.2":"2016-04-20T14:07:50.735Z","6.0.3":"2016-04-21T02:35:37.316Z","6.1.0":"2016-04-22T14:22:47.630Z","6.1.1":"2016-04-23T08:00:18.407Z","6.2.0":"2016-04-25T13:57:05.990Z","6.2.1":"2016-04-25T14:25:36.958Z","6.2.2":"2016-04-26T12:25:27.230Z","6.3.0":"2016-05-07T17:25:29.747Z","6.3.1":"2016-05-07T18:34:36.392Z","6.3.2":"2016-05-08T06:21:03.375Z","6.3.3":"2016-05-08T19:53:22.882Z","6.4.0":"2016-05-18T13:44:28.845Z","6.4.1":"2016-05-18T15:13:29.536Z","6.4.2":"2016-05-19T18:30:20.706Z","6.5.0":"2016-05-20T08:43:08.216Z","6.5.1":"2016-05-22T15:58:23.181Z","6.6.0":"2016-06-13T15:52:29.466Z","6.7.0":"2016-06-20T15:22:43.239Z","6.7.1":"2016-06-23T14:52:30.384Z","6.8.0":"2016-06-30T08:48:09.679Z","6.9.0":"2016-07-07T17:00:07.823Z","7.0.0":"2016-07-13T16:01:54.848Z","7.0.1":"2016-07-13T16:12:40.992Z","7.0.2":"2016-07-14T22:23:38.008Z","7.0.3":"2016-07-18T15:54:38.280Z","7.1.0":"2016-08-02T15:31:31.440Z","7.2.0":"2016-08-28T21:08:33.649Z","7.3.0":"2016-09-19T19:31:43.136Z","7.3.1":"2016-09-20T15:17:56.119Z","7.4.0":"2016-10-08T18:00:41.284Z","7.4.1":"2016-10-09T18:38:45.225Z","7.4.2":"2016-10-10T00:02:07.960Z","7.5.0":"2016-10-19T14:10:10.081Z","7.6.0":"2016-11-19T14:48:22.583Z","7.7.0":"2016-12-18T12:56:56.846Z","7.7.1":"2016-12-31T16:11:33.562Z","7.8.0":"2017-02-02T13:25:34.277Z","7.9.0":"2017-02-19T10:10:10.281Z","7.10.0":"2017-04-01T16:11:52.398Z","7.10.1":"2017-04-02T10:52:10.466Z"},"readmeFilename":"README.md","homepage":"https://stylelint.io"}