{
  "name": "postcss-color-hsl",
  "version": "2.0.0",
  "description": "PostCSS plugin to transform W3C CSS Color Module Level 4 hsl() new syntax to more compatible CSS (comma-separated hsl() or hsla())",
  "keywords": [
    "postcss",
    "css",
    "postcss-plugin",
    "color",
    "hsl",
    "hsla"
  ],
  "author": "David Marchena",
  "license": "MIT",
  "repository": "dmarchena/postcss-color-hsl",
  "bugs": {
    "url": "https://github.com/dmarchena/postcss-color-hsl/issues"
  },
  "homepage": "https://github.com/dmarchena/postcss-color-hsl",
  "main": "dist/index.js",
  "files": [
    "dist",
    "!**/__tests__"
  ],
  "dependencies": {
    "postcss": "^6.0.1",
    "postcss-value-parser": "^3.3.0",
    "units-css": "^0.4.0"
  },
  "devDependencies": {
    "ava": "^0.16.0",
    "babel-cli": "^6.14.0",
    "babel-plugin-add-module-exports": "^0.2.1",
    "babel-preset-es2015": "^6.14.0",
    "babel-register": "^6.14.0",
    "coveralls": "^2.11.13",
    "eslint": "^3.4.0",
    "eslint-config-postcss": "^2.0.2",
    "npm-run-all": "^3.1.0",
    "nyc": "^8.3.0",
    "rimraf": "^2.5.4"
  },
  "scripts": {
    "clean": "rimraf dist",
    "coveralls": "nyc report --reporter=text-lcov | coveralls",
    "lint": "eslint src/**/*.js",
    "pretest": "npm run lint",
    "test:ava": "ava",
    "test": "nyc npm run test:ava",
    "prebuild": "npm-run-all clean lint",
    "build": "babel src --out-dir dist",
    "prepublish": "npm run build"
  },
  "babel": {
    "presets": [
      "es2015"
    ],
    "plugins": [
      "add-module-exports"
    ]
  },
  "ava": {
    "files": [
      "src/__tests__/*.js",
      "!**/postcss-test.js"
    ],
    "require": [
      "babel-register"
    ],
    "babel": "inherit"
  },
  "eslintConfig": {
    "extends": "eslint-config-postcss/es5"
  }
}
