html-to-docx-lite
Version:
HTML to DOCX converter
93 lines (92 loc) • 2.48 kB
JSON
{
"name": "html-to-docx-lite",
"version": "2.0.1",
"description": "HTML to DOCX converter",
"keywords": [
"html",
"docx",
"html-to-docx",
"html to docx",
"office",
"word"
],
"main": "dist/html-to-docx-lite.umd.js",
"module": "dist/html-to-docx-lite.mjs",
"scripts": {
"test": "npm run build && node example/example.js",
"prerelease": "vite build",
"release": "release-it",
"lint": "eslint --fix .",
"prettier:check": "prettier --check '**/*.{js}'",
"validate": "run-s lint prettier:check",
"build": "vite build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dobe-solutions/html-to-docx-lite.git"
},
"author": "Cruaier <thomas@dobe-solutions.vn>",
"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/dobe-solutions/html-to-docx-lite/issues"
},
"homepage": "https://github.com/dobe-solutions/html-to-docx-lite#readme",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"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",
"release-it": "^17.2.0",
"standard-version": "^9.3.1",
"vite": "^5.0.11",
"vite-plugin-node-polyfills": "^0.19.0"
},
"dependencies": {
"@oozcitak/dom": "1.15.6",
"@oozcitak/util": "8.3.4",
"color-name": "^1.1.4",
"htmlparser2": "^9.0.0",
"image-size": "^1.1.1",
"jszip": "^3.10.1",
"mime-types": "^2.1.35",
"nanoid": "^3.1.25",
"style-to-js": "^1.1.10",
"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"
}
}