{
  "name": "mdast-util-to-hast",
  "version": "2.1.1",
  "description": "Transform MDAST to HAST",
  "license": "MIT",
  "keywords": [
    "mdast",
    "util",
    "hast"
  ],
  "files": [
    "lib",
    "index.js"
  ],
  "repository": "https://github.com/wooorm/mdast-util-to-hast",
  "bugs": "https://github.com/wooorm/mdast-util-to-hast/issues",
  "author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
  "contributors": [
    "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
  ],
  "dependencies": {
    "collapse-white-space": "^1.0.0",
    "detab": "^2.0.0",
    "has": "^1.0.1",
    "mdast-util-definitions": "^1.1.1",
    "normalize-uri": "^1.0.0",
    "trim": "0.0.1",
    "trim-lines": "^1.0.0",
    "unist-builder": "^1.0.1",
    "unist-util-generated": "^1.1.0",
    "unist-util-position": "^3.0.0",
    "unist-util-visit": "^1.1.0",
    "xtend": "^4.0.1"
  },
  "devDependencies": {
    "browserify": "^13.0.1",
    "esmangle": "^1.0.1",
    "nyc": "^10.0.0",
    "remark-cli": "^2.0.0",
    "remark-preset-wooorm": "^1.0.0",
    "tape": "^4.0.0",
    "xo": "^0.17.1"
  },
  "scripts": {
    "build-md": "remark . --quiet --frail",
    "build-bundle": "browserify index.js --bare -s mdastUtilToHAST > mdast-util-to-hast.js",
    "build-mangle": "esmangle mdast-util-to-hast.js > mdast-util-to-hast.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/index.js",
    "test": "npm run build && npm run lint && npm run test-coverage"
  },
  "xo": {
    "space": true,
    "rules": {
      "guard-for-in": "off",
      "eqeqeq": [
        "off",
        "allow-null"
      ],
      "no-eq-null": "off"
    },
    "ignores": [
      "mdast-util-to-hast.js"
    ]
  },
  "remarkConfig": {
    "output": true,
    "presets": "wooorm"
  }
}
