-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 875 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 875 Bytes
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
{
"name": "table-convert",
"version": "0.2.0",
"description": "Convert HTML tables to Multimarkdown or LaTeX tables",
"main": "source/index.js",
"bin": {
"table-convert": "source/cli.js"
},
"type": "module",
"files": [
"source/cli.js",
"source/index.js"
],
"scripts": {
"prepublishOnly": "tsc",
"test": "bun run tests/index.ts"
},
"keywords": [
"html",
"multimarkdown",
"table",
"cli",
"cli-tool",
"latex",
"markdown",
"md",
"tex",
"conversion"
],
"author": "Adrian Sieber",
"license": "MIT",
"dependencies": {
"parse5": "^7.1.2",
"yargs": "^17.7.2"
},
"directories": {
"test": "test"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@types/temp": "^0.9.4",
"@types/yargs": "^17.0.32",
"typescript": "^5.4.5",
"unexpected": "^13.2.1"
}
}