{
  "name": "hast-util-raw",
  "version": "1.1.0",
  "description": "Reparse a HAST tree",
  "license": "MIT",
  "keywords": [
    "hast",
    "util",
    "utility",
    "raw",
    "html"
  ],
  "repository": "https://github.com/wooorm/hast-util-raw",
  "bugs": "https://github.com/wooorm/hast-util-raw/issues",
  "author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
  "contributors": [
    "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
  ],
  "files": [
    "index.js"
  ],
  "dependencies": {
    "hast-util-from-parse5": "^1.0.0",
    "hast-util-to-parse5": "^1.0.0",
    "html-void-elements": "^1.0.1",
    "parse5": "^3.0.0",
    "unist-util-position": "^3.0.0",
    "web-namespaces": "^1.0.0",
    "zwitch": "^1.0.0"
  },
  "devDependencies": {
    "browserify": "^13.0.0",
    "esmangle": "^1.0.0",
    "hastscript": "^3.0.1",
    "nyc": "^8.3.1",
    "rehype-stringify": "^2.0.0",
    "remark-cli": "^2.0.0",
    "remark-parse": "^2.0.2",
    "remark-preset-wooorm": "^1.0.0",
    "remark-rehype": "^1.1.0",
    "tape": "^4.0.0",
    "unified": "^5.1.0",
    "unist-builder": "^1.0.2",
    "xo": "^0.17.0"
  },
  "scripts": {
    "build-md": "remark . --quiet --frail",
    "build-bundle": "browserify index.js --bare -s hastUtilRaw > hast-util-raw.js",
    "build-mangle": "esmangle hast-util-raw.js > hast-util-raw.min.js",
    "build": "npm run build-md && npm run build-bundle && npm run build-mangle",
    "lint": "xo",
    "test-api": "node test.js",
    "test-coverage": "nyc --reporter lcov tape test.js",
    "test": "npm run build && npm run lint && npm run test-coverage"
  },
  "nyc": {
    "check-coverage": true,
    "lines": 100,
    "functions": 100,
    "branches": 100
  },
  "xo": {
    "space": true,
    "ignores": [
      "hast-util-raw.js"
    ]
  },
  "remarkConfig": {
    "output": true,
    "presets": "wooorm"
  }
}
