{
  "name": "@mapbox/hast-util-table-cell-style",
  "version": "0.2.1",
  "description": "Transform deprecated styling attributes on HAST table cells to inline styles",
  "main": "index.js",
  "scripts": {
    "lint": "eslint .",
    "pretest": "npm run lint",
    "test": "jest",
    "format": "prettier --write '**/*.js'"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mapbox/hast-util-table-cell-style.git"
  },
  "keywords": [
    "hast",
    "rehype",
    "unified",
    "remark",
    "ast",
    "utility",
    "table"
  ],
  "author": "Mapbox",
  "license": "BSD-2-Clause",
  "bugs": {
    "url": "https://github.com/mapbox/hast-util-table-cell-style/issues"
  },
  "homepage": "https://github.com/mapbox/hast-util-table-cell-style#readme",
  "engines": {
    "node": ">=12"
  },
  "dependencies": {
    "unist-util-visit": "^1.4.1"
  },
  "devDependencies": {
    "eslint": "^7.25.0",
    "eslint-plugin-node": "^11.1.0",
    "husky": "^4.3.8",
    "jest": "^26.6.3",
    "lint-staged": "^10.5.4",
    "prettier": "^2.2.1",
    "rehype-parse": "^4.1.0",
    "rehype-stringify": "^3.0.0",
    "unified": "^6.2.0"
  },
  "jest": {
    "testEnvironment": "node"
  },
  "prettier": {
    "singleQuote": true
  },
  "lint-staged": {
    "*.js": [
      "eslint",
      "prettier --write",
      "git add"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  }
}
