{
  "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": "https://github.com/stylelint/stylelint.git"
  },
  "main": "dist/index.js",
  "bin": "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
      }
    }
  }
}
