@mark-beeby/html-to-docx
Version:
HTML to DOCX converter (Fork with custom modifications to support table column widths)
109 lines (108 loc) • 3.05 kB
JSON
{
"name": "@mark-beeby/html-to-docx",
"version": "1.5.11",
"description": "HTML to DOCX converter (Fork with custom modifications to support table column widths)",
"keywords": [
"html",
"docx",
"html-to-docx",
"html to docx",
"office",
"word",
"custom"
],
"main": "dist/html-to-docx.umd.js",
"module": "dist/html-to-docx.esm.js",
"forkedFrom": "https://github.com/privateOmega/html-to-docx",
"scripts": {
"test": "npm run build && node example/example-node.js",
"prerelease": "rollup -c",
"release": "standard-version",
"lint": "eslint --fix .",
"prettier:check": "prettier --check '**/*.{js}'",
"validate": "run-s lint prettier:check",
"build": "rollup -c",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mark-beeby/html-to-docx.git"
},
"author": "Mark Beeby <mark.beeby@gmail.com>",
"contributors": [
"privateOmega <privateOmega@protonmail.com>",
"amrita-syn <amrita.yadav@synapsica.com>",
"charuthaB <charutha.bhaskar@synapsica.com>",
"hanagejet",
"kurukururuu <apriansyah.fajar94@gmail.com>",
"erenard",
"KeithGillette",
"juralio-james",
"nicolasiscoding <nicolascoding@gmail.com>",
"zedtux <zedtux@zedroot.org>",
"hlerebours",
"hakjeri",
"tasola"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mark-beeby/html-to-docx/issues"
},
"homepage": "https://github.com/mark-beeby/html-to-docx#readme",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"rollup": "^2.62.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.3.1"
},
"dependencies": {
"@oozcitak/dom": "1.15.6",
"@oozcitak/util": "8.3.4",
"canvas": "^2.11.2",
"cheerio": "^1.0.0",
"color-name": "^1.1.4",
"html-entities": "^2.3.3",
"html-to-vdom": "^0.7.0",
"image-size": "^1.0.0",
"image-to-base64": "^2.2.0",
"inline-css": "^4.0.2",
"inliner": "^1.13.1",
"jszip": "^3.7.1",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"nanoid": "^3.1.25",
"sanitize-html": "^2.13.0",
"sharp": "^0.33.5",
"uuid": "^10.0.0",
"virtual-dom": "^2.1.1",
"xmlbuilder2": "2.1.2"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix"
]
},
"resolutions": {
"@oozcitak/util": "8.3.4",
"@oozcitak/dom": "1.15.6"
},
"overrides": {
"@oozcitak/util": "8.3.4",
"@oozcitak/dom": "1.15.6"
}
}