{"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"keywords":["stylelint","stylelint-config","standard"],"dist-tags":{"latest":"16.0.0"},"author":{"name":"stylelint"},"description":"Standard shareable config for stylelint","readme":"# stylelint-config-standard\n\n[![NPM version](http://img.shields.io/npm/v/stylelint-config-standard.svg)](https://www.npmjs.org/package/stylelint-config-standard) [![Build Status](https://travis-ci.org/stylelint/stylelint-config-standard.svg?branch=master)](https://travis-ci.org/stylelint/stylelint-config-standard) [![Build status](https://ci.appveyor.com/api/projects/status/o8rfhyax6n7bjnlt/branch/master?svg=true)](https://ci.appveyor.com/project/stylelint/stylelint-config-standard/branch/master)\n\n> The standard shareable config for stylelint.\n\nUse it as is or as a foundation for your own config.\n\nIt is derived from the common rules found within a handful of CSS styleguides, including: [The Idiomatic CSS Principles](https://github.com/necolas/idiomatic-css),\n[Github's PrimerCSS Guidelines](http://primercss.io/guidelines/#scss),\n[Google's CSS Style Guide](https://google.github.io/styleguide/htmlcssguide.xml#CSS_Formatting_Rules), [Airbnb's Styleguide](https://github.com/airbnb/css#css), and [@mdo's Code Guide](http://codeguide.co/#css).\n\nIt favours flexibility over strictness for things like multi-line lists and single-line rulesets, and tries to avoid potentially divisive rules.\n\nTo see the rules that this config uses, please read the [config itself](./index.js).\n\n## Example\n\n```css\n@import url(x.css);\n@import url(y.css);\n\n/**\n * Multi-line comment\n */\n\n.selector-1,\n.selector-2,\n.selector-3[type=\"text\"] {\n  background: linear-gradient(#fff, rgba(0, 0, 0, 0.8));\n  box-sizing: border-box;\n  display: block;\n  color: #333;\n}\n\n.selector-a,\n.selector-b:not(:first-child) {\n  padding: 10px !important;\n  top: calc(calc(1em * 2) / 3);\n}\n\n.selector-x { width: 10%; }\n.selector-y { width: 20%; }\n.selector-z { width: 30%; }\n\n/* Single-line comment */\n\n@media (min-width >= 60em) {\n  .selector {\n    /* Flush to parent comment */\n    transform: translate(1, 1) scale(3);\n  }\n}\n\n@media (orientation: portrait), projection and (color) {\n  .selector-i + .selector-ii {\n    background: color(rgb(0, 0, 0) lightness(50%));\n    font-family: helvetica, \"arial black\", sans-serif;\n  }\n}\n\n/* Flush single line comment */\n@media\n  screen and (min-resolution: 192dpi),\n  screen and (min-resolution: 2dppx) {\n  .selector {\n    background-image:\n      repeating-linear-gradient(\n        -45deg,\n        transparent,\n        #fff 25px,\n        rgba(255, 255, 255, 1) 50px\n      );\n    margin: 10px;\n    margin-bottom: 5px;\n    box-shadow:\n      0 1px 1px #000,\n      0 1px 0 #fff,\n      2px 2px 1px 1px #ccc inset;\n    height: 10rem;\n  }\n\n  /* Flush nested single line comment */\n  .selector::after {\n    content: '→';\n    background-image: url(x.svg);\n  }\n}\n```\n\n*Note: the config is tested against this example, as such the example contains plenty of CSS syntax, formatting and features.*\n\n## Installation\n\n```bash\nnpm install stylelint-config-standard --save-dev\n```\n\n## Usage\n\nIf you've installed `stylelint-config-standard` locally within your project, just set your `stylelint` config to:\n\n```json\n{\n  \"extends\": \"stylelint-config-standard\"\n}\n```\n\nIf you've globally installed `stylelint-config-standard` using the `-g` flag, then you'll need to use the absolute path to `stylelint-config-standard` in your config e.g.\n\n```json\n{\n  \"extends\": \"/absolute/path/to/stylelint-config-standard\"\n}\n```\n\n### Extending the config\n\nSimply add a `\"rules\"` key to your config, then add your overrides and additions there.\n\nFor example, to change the `indentation` to tabs, turn off the `number-leading-zero` rule, change the `property-no-unknown` rule to use its `ignoreAtRules` option and add the `unit-whitelist` rule:\n\n```json\n{\n  \"extends\": \"stylelint-config-standard\",\n  \"rules\": {\n    \"indentation\": \"tab\",\n    \"number-leading-zero\": null,\n    \"property-no-unknown\": [ true, {\n      \"ignoreProperties\": [\n        \"composes\"\n      ]\n    }],\n    \"unit-whitelist\": [\"em\", \"rem\", \"s\"]\n  }\n}\n```\n\n#### Suggested additions\n\n`stylelint-config-standard` is a great foundation for your own config. You can extend it create a tailored and much stricter config:\n\n-   Specify what quotes must be used using:\n    -   [`font-family-name-quotes`](https://github.com/stylelint/stylelint/blob/master/lib/rules/font-family-name-quotes/README.md)\n    -   [`function-url-quotes`](https://github.com/stylelint/stylelint/blob/master/lib/rules/function-url-quotes/README.md)\n    -   [`selector-attribute-quotes`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-attribute-quotes/README.md)\n    -   [`string-quotes`](https://github.com/stylelint/stylelint/blob/master/lib/rules/string-quotes/README.md)\n-   If you use [`autoprefixer`](https://github.com/postcss/autoprefixer) you'll want to disallow vendor prefixes using:\n    -   [`at-rule-no-vendor-prefix`](https://github.com/stylelint/stylelint/blob/master/lib/rules/at-rule-no-vendor-prefix/README.md)\n    -   [`media-feature-name-no-vendor-prefix`](https://github.com/stylelint/stylelint/blob/master/lib/rules/media-feature-name-no-vendor-prefix/README.md)\n    -   [`property-no-vendor-prefix`](https://github.com/stylelint/stylelint/blob/master/lib/rules/property-no-vendor-prefix/README.md)\n    -   [`selector-no-vendor-prefix`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-no-vendor-prefix/README.md)\n    -   [`value-no-vendor-prefix`](https://github.com/stylelint/stylelint/blob/master/lib/rules/value-no-vendor-prefix/README.md)\n-   Control specificity using:\n    -   [`max-nesting-depth`](https://github.com/stylelint/stylelint/blob/master/lib/rules/max-nesting-depth/README.md)\n    -   [`selector-max-compound-selectors`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-max-compound-selectors/README.md)\n    -   [`selector-max-specificity`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-max-specificity/README.md)\n-   Specify acceptable selector types, units, properties, functions and words in comments using:\n    -   [`at-rule-blacklist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/at-rule-blacklist/README.md)\n    -   [`at-rule-no-unknown`](https://github.com/stylelint/stylelint/blob/master/lib/rules/at-rule-no-unknown/README.md)\n    -   [`at-rule-whitelist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/at-rule-whitelist/README.md)\n    -   [`color-named`](https://github.com/stylelint/stylelint/blob/master/lib/rules/color-named/README.md)\n    -   [`color-no-hex`](https://github.com/stylelint/stylelint/blob/master/lib/rules/color-no-hex/README.md)\n    -   [`comment-word-blacklist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/comment-word-blacklist/README.md)\n    -   [`declaration-no-important`](https://github.com/stylelint/stylelint/blob/master/lib/rules/declaration-no-important/README.md)\n    -   [`declaration-property-unit-blacklist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/declaration-property-unit-blacklist/README.md)\n    -   [`declaration-property-unit-whitelist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/declaration-property-unit-whitelist/README.md)\n    -   [`declaration-property-value-blacklist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/declaration-property-value-blacklist/README.md)\n    -   [`declaration-property-value-whitelist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/declaration-property-value-whitelist/README.md)\n    -   [`function-blacklist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/function-blacklist/README.md)\n    -   [`function-url-scheme-whitelist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/function-url-scheme-whitelist/README.md)\n    -   [`function-whitelist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/function-whitelist/README.md)\n    -   [`media-feature-name-blacklist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/media-feature-name-blacklist/README.md)\n    -   [`media-feature-name-whitelist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/media-feature-name-whitelist/README.md)\n    -   [`property-blacklist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/property-blacklist/README.md)\n    -   [`property-whitelist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/property-whitelist/README.md)\n    -   [`selector-attribute-operator-blacklist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-attribute-operator-blacklist/README.md)\n    -   [`selector-attribute-operator-whitelist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-attribute-operator-whitelist/README.md)\n    -   [`selector-no-attribute`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-no-attribute/README.md)\n    -   [`selector-no-combinator`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-no-combinator/README.md)\n    -   [`selector-no-id`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-no-id/README.md)\n    -   [`selector-no-qualifying-type`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-no-qualifying-type/README.md)\n    -   [`selector-no-type`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-no-type/README.md)\n    -   [`selector-no-universal`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-no-universal/README.md)\n    -   [`selector-pseudo-class-blacklist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-pseudo-class-blacklist/README.md)\n    -   [`selector-pseudo-class-whitelist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-pseudo-class-whitelist/README.md)\n    -   [`unit-blacklist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/property-blacklist/README.md)\n    -   [`unit-whitelist`](https://github.com/stylelint/stylelint/blob/master/lib/rules/property-blacklist/README.md)\n-   Specify acceptable naming patterns using:\n    -   [`custom-media-pattern`](https://github.com/stylelint/stylelint/blob/master/lib/rules/custom-media-pattern/README.md)\n    -   [`custom-property-pattern`](https://github.com/stylelint/stylelint/blob/master/lib/rules/custom-property-pattern/README.md)\n    -   [`selector-class-pattern`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-class-pattern/README.md)\n    -   [`selector-id-pattern`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-id-pattern/README.md)\n    -   [`selector-nested-pattern`](https://github.com/stylelint/stylelint/blob/master/lib/rules/selector-nested-pattern/README.md)\n-   Specify a notation when there are one or more valid representations using:\n    -   [`font-weight-notation`](https://github.com/stylelint/stylelint/blob/master/lib/rules/font-weight-notation/README.md)\n-   Specify what types of URLs are allowed using:\n    -   [`function-url-data-uris`](https://github.com/stylelint/stylelint/blob/master/lib/rules/function-url-data-uris/README.md)\n    -   [`function-url-no-scheme-relative`](https://github.com/stylelint/stylelint/blob/master/lib/rules/function-url-no-scheme-relative/README.md)\n-   Specify a maximum line length using:\n    -   [`max-line-length`](https://github.com/stylelint/stylelint/blob/master/lib/rules/max-line-length/README.md)\n\n### Using the config with SugarSS syntax\n\nThe config is broadly compatible with [SugarSS](https://github.com/postcss/sugarss) syntax. You *will* need to turn off the rules that check braces and semicolons, as so:\n\n```json\n{\n  \"extends\": \"stylelint-config-standard\",\n  \"rules\": {\n    \"block-closing-brace-empty-line-before\": null,\n    \"block-closing-brace-newline-after\": null,\n    \"block-closing-brace-newline-before\": null,\n    \"block-closing-brace-space-before\": null,\n    \"block-opening-brace-newline-after\": null,\n    \"block-opening-brace-space-after\": null,\n    \"block-opening-brace-space-before\": null,\n    \"declaration-block-semicolon-newline-after\": null,\n    \"declaration-block-semicolon-space-after\": null,\n    \"declaration-block-semicolon-space-before\": null,\n    \"declaration-block-trailing-semicolon\": null\n  }\n}\n```\n\n## [Changelog](CHANGELOG.md)\n\n## [License](LICENSE)\n","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"users":{"tdmalone":true,"langri-sha":true,"finnhvman":true,"juandaco":true,"shakakira":true},"bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"license":"MIT","versions":{"0.1.0":{"name":"stylelint-config-standard","version":"0.1.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"babel-preset-es2015":"^6.3.13","babel-tape-runner":"^2.0.0","babel":"^6.3.26","eslint-config-stylelint":"^0.1.0","eslint":"^1.10.3","github-release-from-changelog":"^1.1.1","npmpub":"^2.0.0","stylelint":"^3.2.2","tape":"^4.4.0"},"scripts":{"lint":"eslint . --ignore-path .gitignore","release":"npmpublish && github-release-from-changelog","tape":"babel-tape-runner \"__tests__/**/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"gitHead":"951449d06de5c5ce04a6d86dbfdf0768dbdf0a32","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@0.1.0","_shasum":"97b58e677b631cc1a354f7fdd3b3b850f8329bbe","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"97b58e677b631cc1a354f7fdd3b3b850f8329bbe","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-0.1.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"directories":{}},"0.2.0":{"name":"stylelint-config-standard","version":"0.2.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"babel-preset-es2015":"^6.3.13","babel-tape-runner":"^2.0.0","babel":"^6.3.26","eslint-config-stylelint":"^0.1.0","eslint":"^1.10.3","github-release-from-changelog":"^1.1.1","npmpub":"^2.0.0","stylelint":"^3.2.2","tape":"^4.4.0"},"scripts":{"lint":"eslint . --ignore-path .gitignore","release":"npmpublish && github-release-from-changelog","tape":"babel-tape-runner \"__tests__/**/*.js\"","test":"npm run lint && npm run tape"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"gitHead":"4d23c5d4a1afbf4266227d4c84e85d1ff84e79d1","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@0.2.0","_shasum":"fa435c2605e8757fc873ac60c9a5f713a743e1d5","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"fa435c2605e8757fc873ac60c9a5f713a743e1d5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-0.2.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"directories":{}},"1.0.0":{"name":"stylelint-config-standard","version":"1.0.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.10.0","eslint":"^1.10.3","eslint-config-stylelint":"^0.1.0","github-release-from-changelog":"^1.1.1","npmpub":"^2.0.0","stylelint":"^4.0.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint":"eslint . --ignore-path .gitignore","release":"npmpublish && github-release-from-changelog","test":"npm run lint && npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"gitHead":"8809a49f9a34830d12fd5185eff36c22dd147f20","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@1.0.0","_shasum":"0c0338f26d5620633386ce35ea6816c4b0c656d6","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"0c0338f26d5620633386ce35ea6816c4b0c656d6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-1.0.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"directories":{}},"2.0.0":{"name":"stylelint-config-standard","version":"2.0.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.10.0","eslint":"^1.10.3","eslint-config-stylelint":"^0.1.0","npmpub":"^3.0.1","stylelint":"^4.0.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint":"eslint . --ignore-path .gitignore","release":"npmpub","test":"npm run lint && npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"gitHead":"56b18b76c2471d6aa820670c54d089ea92d007b7","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@2.0.0","_shasum":"55bccb0b4955c1105e80a7649b145c81e9245845","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"55bccb0b4955c1105e80a7649b145c81e9245845","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-2.0.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"directories":{}},"3.0.0":{"name":"stylelint-config-standard","version":"3.0.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.11.0","eslint":"^1.10.3","eslint-config-stylelint":"^0.1.0","npmpub":"^3.0.1","stylelint":"^4.0.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint":"eslint . --ignore-path .gitignore","pretest":"npm run lint","release":"npmpub","test":"npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"gitHead":"1cf3c63ded5b684626c0c7b199ba9f2a5f8caee7","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@3.0.0","_shasum":"4d1962bcc0d63e8aab7179d2bbd0819a15b47887","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"4d1962bcc0d63e8aab7179d2bbd0819a15b47887","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-3.0.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"directories":{}},"4.0.0":{"name":"stylelint-config-standard","version":"4.0.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.12.0","eslint":"^2.2.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","stylelint":"^4.5.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint":"eslint . --ignore-path .gitignore","pretest":"npm run lint","release":"npmpub","test":"npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"gitHead":"0550943778692e6c1c8c7e7759f7143176655d2c","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@4.0.0","_shasum":"e64c2cfee02d81760604eb7e94bbdfa637bab900","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"e64c2cfee02d81760604eb7e94bbdfa637bab900","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-4.0.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-4.0.0.tgz_1457365776524_0.8349709894973785"},"directories":{}},"4.0.1":{"name":"stylelint-config-standard","version":"4.0.1","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.12.0","eslint":"^2.2.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","stylelint":"^4.5.0"},"peerDependencies":{"stylelint":">=4.5.0 <6.0.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint":"eslint . --ignore-path .gitignore","pretest":"npm run lint","release":"npmpub","test":"npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"gitHead":"8577b83ecc5c889c3f33af4c09710cbae6320619","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@4.0.1","_shasum":"28e75829ec8711468c6d274b3ebf6d86b6d5134e","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"28e75829ec8711468c6d274b3ebf6d86b6d5134e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-4.0.1.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-4.0.1.tgz_1457689007150_0.75010776380077"},"directories":{}},"5.0.0":{"name":"stylelint-config-standard","version":"5.0.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.14.0","eslint":"^2.2.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","stylelint":"^5.3.0"},"peerDependencies":{"stylelint":"^5.3.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint":"eslint . --ignore-path .gitignore","pretest":"npm run lint","release":"npmpub","test":"npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"gitHead":"4c56bd3125b9ee9aa84b3ae4de49bc82180d9dcf","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@5.0.0","_shasum":"31382328b7acb0da7a78689a2c5948b3b946d1dd","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"31382328b7acb0da7a78689a2c5948b3b946d1dd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-5.0.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-5.0.0.tgz_1460025381791_0.37536026700399816"},"directories":{}},"6.0.0":{"name":"stylelint-config-standard","version":"6.0.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.14.0","eslint":"^2.2.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","stylelint":"^6.0.0"},"peerDependencies":{"stylelint":"^6.0.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint":"eslint . --ignore-path .gitignore","pretest":"npm run lint","release":"npmpub","test":"npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"gitHead":"6b7ec5e659d9696d3bf8bb826b73ba3066670bb4","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@6.0.0","_shasum":"762adb7a6c358482a682043f109ff1c4c578b3ea","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"762adb7a6c358482a682043f109ff1c4c578b3ea","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-6.0.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-6.0.0.tgz_1461070735340_0.6268144762143493"},"directories":{}},"7.0.0":{"name":"stylelint-config-standard","version":"7.0.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.14.0","eslint":"^2.2.0","eslint-config-stylelint":"^1.0.0","npmpub":"^3.0.1","stylelint":"^6.3.0"},"peerDependencies":{"stylelint":"^6.3.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint":"eslint . --ignore-path .gitignore","pretest":"npm run lint","release":"npmpub","test":"npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"gitHead":"df98c59f8b59aff96ff644234b530a3b24e65b4d","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@7.0.0","_shasum":"a6b62d33269d56b75e4ff91c3b5de5fceff44866","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"a6b62d33269d56b75e4ff91c3b5de5fceff44866","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-7.0.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-7.0.0.tgz_1462642896722_0.30294937384314835"},"directories":{}},"8.0.0":{"name":"stylelint-config-standard","version":"8.0.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.14.0","eslint":"^2.2.0","eslint-config-stylelint":"^2.0.0","npmpub":"^3.0.1","stylelint":"^6.4.0"},"peerDependencies":{"stylelint":"^6.4.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint":"eslint . --ignore-path .gitignore","pretest":"npm run lint","release":"npmpub","test":"npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"gitHead":"55101a39f626c34971f7d8398922d1dfd8923466","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@8.0.0","_shasum":"62ea7b4e40f6575723094157697c11871b4e06f5","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"62ea7b4e40f6575723094157697c11871b4e06f5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-8.0.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-8.0.0.tgz_1463682908378_0.45770908100530505"},"directories":{}},"9.0.0":{"name":"stylelint-config-standard","version":"9.0.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.14.0","eslint":"^2.2.0","eslint-config-stylelint":"^2.0.0","npmpub":"^3.0.1","stylelint":"^6.6.0"},"peerDependencies":{"stylelint":"^6.6.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint":"eslint . --ignore-path .gitignore","pretest":"npm run lint","release":"npmpub","test":"npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"gitHead":"8357e3ab8f7fce96412cc6b95087e715a653a465","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@9.0.0","_shasum":"5c014a7be22405dd1f4cb116b445db9e7f795cf9","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"5c014a7be22405dd1f4cb116b445db9e7f795cf9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-9.0.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-9.0.0.tgz_1465833632879_0.15892024105414748"},"directories":{}},"10.0.0":{"name":"stylelint-config-standard","version":"10.0.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.14.0","eslint":"^2.2.0","eslint-config-stylelint":"^2.0.0","npmpub":"^3.0.1","stylelint":"^6.8.0"},"peerDependencies":{"stylelint":"^6.8.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint":"eslint . --ignore-path .gitignore","pretest":"npm run lint","release":"npmpub","test":"npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"gitHead":"e17f189189bf00ca8c233d2c81e16a186628e345","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@10.0.0","_shasum":"7476b619bbfa88d6c6ad04bde6f32822bac8abfd","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"7476b619bbfa88d6c6ad04bde6f32822bac8abfd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-10.0.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-10.0.0.tgz_1467276848125_0.5208797284867615"},"directories":{}},"11.0.0":{"name":"stylelint-config-standard","version":"11.0.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.15.0","eslint":"^2.2.0","eslint-config-stylelint":"^2.0.0","npmpub":"^3.0.1","stylelint":"^7.0.1"},"peerDependencies":{"stylelint":"^7.0.1"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint":"eslint . --ignore-path .gitignore","pretest":"npm run lint","release":"npmpub","test":"npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"gitHead":"0ab56eb972bc31a04a0c35de31743c5b378558ac","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@11.0.0","_shasum":"cff01471660efd050c44e4363f3653b86e3eaaf1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"cff01471660efd050c44e4363f3653b86e3eaaf1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-11.0.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-11.0.0.tgz_1468427176503_0.42604357027448714"},"directories":{}},"12.0.0":{"name":"stylelint-config-standard","version":"12.0.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.15.0","eslint":"^3.1.1","eslint-config-stylelint":"^3.0.0","npmpub":"^3.0.1","stylelint":"^7.1.0"},"peerDependencies":{"stylelint":"^7.1.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint":"eslint . --ignore-path .gitignore","pretest":"npm run lint","release":"npmpub","test":"npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"gitHead":"a565f71c88293dac831e66d8a6e752d8fdee1f89","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@12.0.0","_shasum":"9b99ab342bc5301fe88447e208fcf59768c4cc53","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"9b99ab342bc5301fe88447e208fcf59768c4cc53","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-12.0.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-12.0.0.tgz_1470152525067_0.17295382730662823"},"directories":{}},"13.0.0":{"name":"stylelint-config-standard","version":"13.0.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.15.0","eslint":"^3.1.1","eslint-config-stylelint":"^4.0.0","npm-run-all":"^3.0.0","npmpub":"^3.0.1","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","stylelint":"^7.2.0"},"peerDependencies":{"stylelint":"^7.2.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","release":"npmpub","test":"npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"remarkConfig":{"presets":["lint-recommended","lint-consistent"]},"gitHead":"1bc70fc75711a683b101e9f9741efea81d232bee","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@13.0.0","_shasum":"5771d281782bc6abe94a00d7857028154d98f879","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"5771d281782bc6abe94a00d7857028154d98f879","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-13.0.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-13.0.0.tgz_1472419232138_0.13380015105940402"},"directories":{}},"13.0.1":{"name":"stylelint-config-standard","version":"13.0.1","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.16.0","eslint":"^3.1.1","eslint-config-stylelint":"^4.0.0","npm-run-all":"^3.0.0","npmpub":"^3.0.1","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","stylelint":"^7.2.0"},"peerDependencies":{"stylelint":"^7.2.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","release":"npmpub","test":"npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"remarkConfig":{"presets":["lint-recommended","lint-consistent"]},"gitHead":"1cf36211d599006e2ba6b02aca05ba5574738e08","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@13.0.1","_shasum":"5654cd6e8870035d0cf3f0cd90598882468daf64","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"5654cd6e8870035d0cf3f0cd90598882468daf64","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-13.0.1.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-13.0.1.tgz_1474411131495_0.1181998890824616"},"directories":{}},"13.0.2":{"name":"stylelint-config-standard","version":"13.0.2","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.16.0","eslint":"^3.1.1","eslint-config-stylelint":"^4.0.0","npm-run-all":"^3.0.0","npmpub":"^3.0.1","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","stylelint":"^7.2.0"},"peerDependencies":{"stylelint":"^7.2.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","release":"npmpub","test":"npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"remarkConfig":{"presets":["lint-recommended","lint-consistent"]},"gitHead":"94d4f49ea663cf5694665e50be4baf8cf85ca4ae","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@13.0.2","_shasum":"721e090c53b6e59f70f63d6a9fce026c9120671e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"721e090c53b6e59f70f63d6a9fce026c9120671e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-13.0.2.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-13.0.2.tgz_1474447901041_0.7832814287394285"},"directories":{}},"14.0.0":{"name":"stylelint-config-standard","version":"14.0.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"Stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.16.0","eslint":"^3.1.1","eslint-config-stylelint":"^4.0.0","npm-run-all":"^3.0.0","npmpub":"^3.0.1","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","stylelint":"^7.5.0"},"peerDependencies":{"stylelint":"^7.5.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","release":"npmpub","test":"npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"remarkConfig":{"presets":["lint-recommended","lint-consistent"]},"gitHead":"54f104c68c43fb41e8e5e825cc6155d460c9ec5d","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@14.0.0","_shasum":"1164b79c3a1dd924ace1b756ad8ec00cbccb8132","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"1164b79c3a1dd924ace1b756ad8ec00cbccb8132","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-14.0.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-14.0.0.tgz_1477124643103_0.7798153643961996"},"directories":{}},"15.0.0":{"name":"stylelint-config-standard","version":"15.0.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"ava":"^0.17.0","eslint":"^3.1.1","eslint-config-stylelint":"^5.0.0","npm-run-all":"^3.0.0","npmpub":"^3.0.1","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","stylelint":"^7.6.0"},"peerDependencies":{"stylelint":"^7.6.0"},"scripts":{"ava":"ava --verbose \"__tests__/**/*.js\"","lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","release":"npmpub","test":"npm run ava"},"babel":{"presets":["es2015"]},"eslintConfig":{"extends":["stylelint"]},"remarkConfig":{"presets":["lint-recommended","lint-consistent"]},"gitHead":"ef88da0f3445714e0d9bb6ce1e512dd88b7fc538","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@15.0.0","_shasum":"3180b2f9aa3896a754ce6a69bf1b1fe7ab2e0ca0","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"3180b2f9aa3896a754ce6a69bf1b1fe7ab2e0ca0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-15.0.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-15.0.0.tgz_1479567802738_0.6976431831717491"},"directories":{}},"15.0.1":{"name":"stylelint-config-standard","version":"15.0.1","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"eslint":"^3.1.1","eslint-config-stylelint":"^6.0.0","jest":"^17.0.3","npm-run-all":"^3.0.0","npmpub":"^3.0.1","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","stylelint":"^7.6.0"},"peerDependencies":{"stylelint":"^7.6.0"},"scripts":{"lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","release":"npmpub","test":"jest","watch":"jest --watch"},"eslintConfig":{"extends":["stylelint"]},"jest":{"testEnvironment":"node","verbose":true},"remarkConfig":{"presets":["lint-recommended","lint-consistent"]},"gitHead":"92b7da768cf1f2132b675e3f0693e2445a71c62c","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@15.0.1","_shasum":"f588e036bca6bb52391ea784198e773a9ca70efe","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.2.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"f588e036bca6bb52391ea784198e773a9ca70efe","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-15.0.1.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-15.0.1.tgz_1482066346973_0.7100743062328547"},"directories":{}},"16.0.0":{"name":"stylelint-config-standard","version":"16.0.0","description":"Standard shareable config for stylelint","keywords":["stylelint","stylelint-config","standard"],"author":{"name":"stylelint"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stylelint/stylelint-config-standard.git"},"main":"index.js","files":["index.js"],"devDependencies":{"eslint":"^3.1.1","eslint-config-stylelint":"^6.0.0","jest":"^18.1.0","npm-run-all":"^4.0.0","npmpub":"^3.0.1","remark-cli":"^2.0.0","remark-preset-lint-consistent":"^1.0.0","remark-preset-lint-recommended":"^1.0.0","stylelint":"^7.8.0"},"peerDependencies":{"stylelint":"^7.8.0"},"scripts":{"lint:js":"eslint . --ignore-path .gitignore","lint:md":"remark . --quiet --frail","lint":"npm-run-all --parallel lint:*","pretest":"npm run lint","release":"npmpub","test":"jest","watch":"jest --watch"},"eslintConfig":{"extends":["stylelint"]},"jest":{"testEnvironment":"node","verbose":true},"remarkConfig":{"presets":["lint-recommended","lint-consistent"]},"gitHead":"5d1c9beb2f49c8342a4aadbe627e9940b20bf9ce","bugs":{"url":"https://github.com/stylelint/stylelint-config-standard/issues"},"homepage":"https://github.com/stylelint/stylelint-config-standard#readme","_id":"stylelint-config-standard@16.0.0","_shasum":"bb7387bff1d7dd7186a52b3ebf885b2405d691bf","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.3.0","_npmUser":{"name":"jeddy3","email":"npm@richardhallows.com"},"dist":{"shasum":"bb7387bff1d7dd7186a52b3ebf885b2405d691bf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylelint-config-standard/-/stylelint-config-standard-16.0.0.tgz"},"maintainers":[{"name":"jeddy3","email":"npm@richardhallows.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylelint-config-standard-16.0.0.tgz_1486042414315_0.007604453945532441"},"directories":{}}},"name":"stylelint-config-standard","time":{"modified":"2017-02-26T06:03:03.620Z","created":"2016-01-11T21:23:30.742Z","0.1.0":"2016-01-11T21:23:30.742Z","0.2.0":"2016-01-12T16:17:14.745Z","1.0.0":"2016-01-20T19:31:34.711Z","2.0.0":"2016-01-22T14:35:15.065Z","3.0.0":"2016-01-27T08:55:40.138Z","4.0.0":"2016-03-07T15:49:39.858Z","4.0.1":"2016-03-11T09:36:49.648Z","5.0.0":"2016-04-07T10:36:24.177Z","6.0.0":"2016-04-19T12:58:56.795Z","7.0.0":"2016-05-07T17:41:38.833Z","8.0.0":"2016-05-19T18:35:10.866Z","9.0.0":"2016-06-13T16:00:35.313Z","10.0.0":"2016-06-30T08:54:09.638Z","11.0.0":"2016-07-13T16:26:18.969Z","12.0.0":"2016-08-02T15:42:06.715Z","13.0.0":"2016-08-28T21:20:33.253Z","13.0.1":"2016-09-20T22:38:53.485Z","13.0.2":"2016-09-21T08:51:42.975Z","14.0.0":"2016-10-22T08:24:04.557Z","15.0.0":"2016-11-19T15:03:24.963Z","15.0.1":"2016-12-18T13:05:47.589Z","16.0.0":"2017-02-02T13:33:36.242Z"},"readmeFilename":"README.md","homepage":"https://github.com/stylelint/stylelint-config-standard#readme"}