{
  "name": "postcss-apply",
  "version": "0.8.0",
  "description": "PostCSS plugin enabling custom properties sets references",
  "keywords": [
    "css",
    "apply",
    "postcss",
    "postcss-plugin"
  ],
  "author": {
    "name": "Pascal Duez",
    "url": "https://github.com/pascalduez"
  },
  "homepage": "https://github.com/pascalduez/postcss-apply",
  "bugs": "https://github.com/pascalduez/postcss-apply/issues",
  "repository": {
    "type": "git",
    "url": "git://github.com/pascalduez/postcss-apply.git"
  },
  "license": "Unlicense",
  "files": [
    "dist",
    "CHANGELOG.md",
    "index.js",
    "README.md",
    "UNLICENSE"
  ],
  "scripts": {
    "lint": "eslint src/ test/",
    "typecheck": "flow check src/",
    "typecheck:coverage": "flow-coverage-report -t text -t html -i 'src/**/*.js'",
    "validate": "run-s lint typecheck",
    "test": "jest",
    "test:cover": "run-s 'test -- --coverage'",
    "test:cover:browse": "run-s test:cover && opn coverage/lcov-report/index.html",
    "test:ci": "run-s lint test:cover",
    "develop": "babel-node develop/",
    "clean": "rm -rf dist/",
    "build:js": "babel src/ -d dist/",
    "build": "run-s clean build:*",
    "prepublish": "run-s validate test:cover build"
  },
  "jest": {
    "testEnvironment": "node",
    "collectCoverageFrom": [
      "src/*.js"
    ]
  },
  "dependencies": {
    "babel-runtime": "^6.23.0",
    "balanced-match": "^0.4.2",
    "postcss": "^6.0.0"
  },
  "devDependencies": {
    "babel-cli": "^6.24.1",
    "babel-eslint": "^7.2.3",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "babel-plugin-transform-object-entries": "^1.0.0",
    "babel-plugin-transform-object-rest-spread": "^6.23.0",
    "babel-preset-env": "^1.4.0",
    "babel-preset-flow": "^6.23.0",
    "common-tags": "^1.4.0",
    "eslint": "^3.19.0",
    "eslint-config-airbnb-base": "^11.1.3",
    "eslint-plugin-flowtype": "^2.32.1",
    "eslint-plugin-import": "^2.2.0",
    "eslint-plugin-jest": "^20.0.0",
    "flow-bin": "^0.46.0",
    "flow-coverage-report": "^0.3.0",
    "jest-cli": "^20.0.0",
    "npm-run-all": "^4.0.2",
    "opn-cli": "^3.1.0",
    "postcss-custom-properties": "^6.0.0",
    "postcss-reporter": "^3.0.0"
  }
}
