-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 828 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 828 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
{
"name": "htmltable2matrix2d",
"version": "1.0.0",
"description": "Transform HTML table to 2D matrix, using matrix for some tasks such as merge cell, delete row, delete column...",
"main": "mtable.js",
"scripts": {
"minify": "esbuild mtable.js --minify --sourcemap --keep-names --target=es6 --outfile=dist/mtable.min.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/longgt/HtmlTable2Matrix2D.git"
},
"author": "longgt <gtlong.hcmus@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/longgt/HtmlTable2Matrix2D/issues"
},
"homepage": "https://github.com/longgt/HtmlTable2Matrix2D#readme",
"devDependencies": {
"esbuild": "0.21.5",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^22.0.0"
}
}