{
  "name": "unified",
  "version": "6.1.1",
  "description": "Pluggable text processing interface",
  "license": "MIT",
  "keywords": [
    "process",
    "parse",
    "transform",
    "compile",
    "stringify",
    "rehype",
    "retext",
    "remark"
  ],
  "repository": "https://github.com/unifiedjs/unified",
  "bugs": "https://github.com/unifiedjs/unified/issues",
  "author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
  "contributors": [
    "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
  ],
  "files": [
    "index.js",
    "lib"
  ],
  "dependencies": {
    "bail": "^1.0.0",
    "extend": "^3.0.0",
    "has": "^1.0.1",
    "is-plain-obj": "^1.1.0",
    "isarray": "^2.0.1",
    "trough": "^1.0.0",
    "vfile": "^2.0.0",
    "x-is-function": "^1.0.4",
    "x-is-string": "^0.1.0"
  },
  "devDependencies": {
    "browserify": "^14.0.0",
    "esmangle": "^1.0.0",
    "nyc": "^10.0.0",
    "remark-cli": "^3.0.0",
    "remark-preset-wooorm": "^2.0.0",
    "tape": "^4.4.0",
    "xo": "^0.17.0"
  },
  "scripts": {
    "build-md": "remark . -qfo",
    "build-bundle": "browserify index.js -s unified > unified.js",
    "build-mangle": "esmangle unified.js > unified.min.js",
    "build": "npm run build-md && npm run build-bundle && npm run build-mangle",
    "lint": "xo",
    "test-api": "node test",
    "test-coverage": "nyc --reporter lcov tape test",
    "test": "npm run build && npm run lint && npm run test-coverage"
  },
  "nyc": {
    "check-coverage": true,
    "lines": 100,
    "functions": 100,
    "branches": 100
  },
  "xo": {
    "space": true,
    "rules": {
      "import/no-unassigned-import": "off",
      "guard-for-in": "off",
      "max-lines": "off"
    },
    "ignores": [
      "unified.js"
    ]
  },
  "remarkConfig": {
    "plugins": ["preset-wooorm"]
  }
}
