{
  "name": "hast-util-from-parse5",
  "version": "5.0.0",
  "description": "Transform Parse5’s AST to HAST",
  "license": "MIT",
  "keywords": [
    "parse5",
    "ast",
    "hast",
    "utility"
  ],
  "repository": "syntax-tree/hast-util-from-parse5",
  "bugs": "https://github.com/syntax-tree/hast-util-from-parse5/issues",
  "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  "contributors": [
    "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  ],
  "files": [
    "index.js"
  ],
  "dependencies": {
    "ccount": "^1.0.3",
    "hastscript": "^5.0.0",
    "property-information": "^5.0.0",
    "web-namespaces": "^1.1.2",
    "xtend": "^4.0.1"
  },
  "devDependencies": {
    "browserify": "^16.0.0",
    "is-hidden": "^1.1.0",
    "not": "^0.1.0",
    "nyc": "^13.0.0",
    "parse5": "^5.0.0",
    "prettier": "^1.13.5",
    "remark-cli": "^6.0.0",
    "remark-preset-wooorm": "^4.0.0",
    "tape": "^4.0.0",
    "tinyify": "^2.4.3",
    "to-vfile": "^5.0.0",
    "unist-util-visit": "^1.1.3",
    "xo": "^0.23.0"
  },
  "scripts": {
    "format": "remark . -qfo && prettier --write '**/*.js' && xo --fix",
    "build-bundle": "browserify index.js -s hastUtilFromParse5 > hast-util-from-parse5.js",
    "build-mangle": "browserify index.js -p tinyify -s hastUtilFromParse5 > hast-util-from-parse5.min.js",
    "build": "npm run build-bundle && npm run build-mangle",
    "test-api": "node test",
    "test-coverage": "nyc --reporter lcov tape test",
    "test": "npm run format && npm run build && npm run test-coverage"
  },
  "prettier": {
    "tabWidth": 2,
    "useTabs": false,
    "singleQuote": true,
    "bracketSpacing": false,
    "semi": false,
    "trailingComma": "none"
  },
  "xo": {
    "prettier": true,
    "esnext": false,
    "rules": {
      "guard-for-in": "off"
    },
    "ignores": [
      "hast-util-from-parse5.js"
    ]
  },
  "nyc": {
    "check-coverage": true,
    "lines": 100,
    "functions": 100,
    "branches": 100
  },
  "remarkConfig": {
    "plugins": [
      "preset-wooorm"
    ]
  }
}
