{
  "name": "postcss-nested-props",
  "version": "2.0.0",
  "description": "PostCSS plugin to unwrap nested properties.",
  "main": "dist/plugin.js",
  "types": "dist/plugin.d.ts",
  "scripts": {
    "clean": "rimraf coverage dist *.log",
    "codecov": "codecov -f coverage/lcov.info",
    "build": "tsc",
    "build:watch": "tsc --watch",
    "prepublish": "npm test",
    "pretest": "npm run tslint && npm run clean && npm run build",
    "test": "nyc ava",
    "test:watch": "ava --watch",
    "tslint": "tslint --project tsconfig.json",
    "watch": "npm run test:watch"
  },
  "ava": {
    "files": [
      "dist/**/*.spec.js"
    ],
    "source": [
      "dist/**/*.js"
    ]
  },
  "nyc": {
    "lines": 100,
    "statements": 100,
    "functions": 100,
    "branches": 100,
    "include": [
      "dist/**/*.js"
    ],
    "exclude": [
      "dist/**/*.spec.js"
    ],
    "reporter": [
      "lcov",
      "text"
    ],
    "cache": true,
    "all": true,
    "check-coverage": true
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jedmao/postcss-nested-props.git"
  },
  "keywords": [
    "postcss",
    "postcss-plugin",
    "nested",
    "props",
    "properties",
    "css",
    "sass"
  ],
  "author": "Jed Mao <jedmao@outlook.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/jedmao/postcss-nested-props/issues"
  },
  "homepage": "https://github.com/jedmao/postcss-nested-props#readme",
  "dependencies": {
    "postcss": "^6.0.14",
    "pseudo-classes": "^1.0.0",
    "pseudo-elements": "^1.1.0"
  },
  "devDependencies": {
    "@types/node": "^8.0.47",
    "ava": "^0.23.0",
    "nyc": "^11.3.0",
    "rimraf": "^2.6.2",
    "tslint": "^5.8.0",
    "typescript": "^2.6.1"
  }
}
