{ "name": "@mapbox/hast-util-table-cell-style", "version": "0.1.3", "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'", "precommit": "lint-staged" }, "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": ">=4" }, "dependencies": { "unist-util-visit": "^1.3.0" }, "devDependencies": { "eslint": "^4.19.1", "eslint-plugin-node": "^6.0.1", "husky": "^0.14.3", "jest": "^22.4.3", "lint-staged": "^7.0.2", "prettier": "^1.11.1", "rehype-parse": "^4.1.0", "rehype-stringify": "^3.0.0", "unified": "^6.1.6" }, "jest": { "testEnvironment": "node" }, "prettier": { "singleQuote": true }, "lint-staged": { "*.js": [ "eslint", "prettier --write", "git add" ] } }