forked from benbalter/word-to-markdown-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.99 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
{
"name": "word-to-markdown",
"version": "0.0.0",
"description": "Convert Word documents to beautiful Markdown.",
"type": "module",
"engines": {
"node": ">= 20.9 < 21"
},
"devDependencies": {
"@types/jest": "~29.5",
"@types/node": "~20",
"@types/turndown": "^5.0.4",
"@typescript-eslint/eslint-plugin": "~6.15",
"@typescript-eslint/parser": "~6.15",
"css-loader": "^7.1.2",
"eslint": "~8.56",
"eslint-config-prettier": "~9.1",
"eslint-plugin-jest": "~27.6",
"jest": "~29.7",
"prettier": "~3.1",
"style-loader": "^4.0.0",
"ts-api-utils": "~1.0",
"ts-jest": "~29.1",
"ts-loader": "^9.5.1",
"typescript": "~5.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"scripts": {
"fix": "eslint --fix --ext .ts . && prettier --write .",
"build": "tsc",
"build:web": "webpack build",
"server:web": "webpack serve --open",
"lint": "eslint . --ext .ts --ext .mts",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"all": "npm run lint && npm run test && npm run build",
"server": "node build/server.js"
},
"author": "Ben Balter <[email protected]>",
"license": "ISC",
"dependencies": {
"@joplin/turndown": "^4.0.72",
"@joplin/turndown-plugin-gfm": "^1.0.54",
"@types/helmet": "^4.0.0",
"bootstrap": "^5.3.3",
"clipboard": "^2.0.11",
"commander": "^12.0.0",
"express": "^4.18.2",
"helmet": "^7.1.0",
"mammoth": "^1.6.0",
"markdownlint": "^0.33.0",
"markdownlint-rule-helpers": "^0.24.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-html-parser": "^6.1.12",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"tslib": "~2.6",
"unified": "^11.0.4",
"url": "^0.11.3"
},
"volta": {
"node": "20.10.0"
},
"bin": {
"w2m": "build/cli.js"
},
"main": "build/main.js"
}