-
Notifications
You must be signed in to change notification settings - Fork 143
/
package.json
98 lines (98 loc) · 2.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "html-to-docx",
"version": "1.8.0",
"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",
"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/privateOmega/html-to-docx.git"
},
"author": "privateOmega <[email protected]>",
"contributors": [
"amrita-syn <[email protected]>",
"charuthaB <[email protected]>",
"hanagejet",
"kurukururuu <[email protected]>",
"erenard",
"KeithGillette",
"juralio-james",
"nicolasiscoding <[email protected]>",
"zedtux <[email protected]>",
"hlerebours",
"hakjeri",
"tasola"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/privateOmega/html-to-docx/issues"
},
"homepage": "https://github.com/privateOmega/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/util": "8.3.4",
"@oozcitak/dom": "1.15.6",
"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",
"jszip": "^3.7.1",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"nanoid": "^3.1.25",
"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"
}
}