forked from privateOmega/html-to-docx
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.13 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
{
"name": "html-to-docx",
"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",
"scripts": {
"test": "npm run build && node example/example-node.js",
"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"
],
"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": {
"color-name": "^1.1.4",
"escape-html": "^1.0.3",
"html-to-vdom": "^0.7.0",
"image-size": "^1.0.0",
"jszip": "^3.7.1",
"lodash": "^4.17.21",
"nanoid": "^3.1.25",
"virtual-dom": "^2.1.1",
"xmlbuilder2": "2.1.2"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --fix"
]
}
}