html-to-docx-typescript
Version:
HTML to DOCX converter
90 lines (89 loc) • 2.68 kB
JSON
{
"name": "html-to-docx-typescript",
"version": "1.3.2",
"description": "HTML to DOCX converter",
"keywords": [
"html",
"docx",
"html-to-docx",
"html to docx",
"office",
"word"
],
"main": "dist/html-to-docx.umd.js",
"module": "dist/html-to-docx.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npm run build && node example/example-node.js",
"release": "standard-version",
"lint": "eslint --fix ./src",
"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/privateOmega/html-to-docx.git"
},
"author": "privateOmega <privateOmega@protonmail.com>",
"contributors": [
"amrita-syn <amrita.yadav@synapsica.com>",
"charuthaB <charutha.bhaskar@synapsica.com>",
"hanagejet",
"kurukururuu <apriansyah.fajar94@gmail.com>",
"erenard"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/privateOmega/html-to-docx/issues"
},
"homepage": "https://github.com/privateOmega/html-to-docx#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-typescript": "^8.3.1",
"@types/html-escaper": "^3.0.0",
"@types/virtual-dom": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"esbuild": "^0.14.25",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"html-escaper": "^3.0.3",
"husky": "^7.0.0",
"lint-staged": "^12.3.5",
"lodash-es": "^4.17.21",
"prettier": "^2.4.1",
"rollup": "^2.69.2",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-esbuild": "^4.8.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.6.0",
"standard-version": "^9.3.1",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
},
"dependencies": {
"color-name": "^1.1.4",
"html-to-vdom": "^0.7.0",
"image-size": "^1.0.0",
"jszip": "^3.7.1",
"nanoid": "^3.3.1",
"virtual-dom": "^2.1.1",
"xmlbuilder2": "^3.0.2"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix"
]
}
}