{
  "name": "hast-to-hyperscript",
  "version": "3.0.0",
  "description": "Transform HAST to something else through a hyperscript DSL",
  "license": "MIT",
  "keywords": [
    "hast",
    "rehype",
    "vdom",
    "virtual",
    "dom",
    "hyperscript",
    "dsl",
    "html"
  ],
  "repository": "syntax-tree/hast-to-hyperscript",
  "bugs": "https://github.com/syntax-tree/hast-to-hyperscript/issues",
  "author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
  "contributors": [
    "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)"
  ],
  "files": [
    "index.js"
  ],
  "dependencies": {
    "comma-separated-tokens": "^1.0.0",
    "is-nan": "^1.2.1",
    "kebab-case": "^1.0.0",
    "property-information": "^3.0.0",
    "space-separated-tokens": "^1.0.0",
    "trim": "0.0.1",
    "unist-util-is": "^2.0.0"
  },
  "devDependencies": {
    "browserify": "^14.0.0",
    "esmangle": "^1.0.0",
    "hyperscript": "^2.0.2",
    "nyc": "^10.0.0",
    "react": "^15.1.0",
    "react-dom": "^15.5.4",
    "rehype": "^4.0.0",
    "remark-cli": "^3.0.0",
    "remark-preset-wooorm": "^2.0.0",
    "tape": "^4.0.0",
    "unist-builder": "^1.0.1",
    "vdom-to-html": "^2.3.1",
    "virtual-dom": "^2.1.1",
    "xo": "^0.18.0"
  },
  "scripts": {
    "build-md": "remark . -qfo",
    "build-bundle": "browserify index.js --bare -s hast-to-hyperscript > hast-to-hyperscript.js",
    "build-mangle": "esmangle hast-to-hyperscript.js > hast-to-hyperscript.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.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,
    "esnext": false,
    "rules": {
      "unicorn/prefer-type-error": "off",
      "guard-for-in": "off"
    }
  },
  "remarkConfig": {
    "plugins": [
      "preset-wooorm"
    ]
  }
}
