-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.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
{
"name": "html-table-parser",
"version": "0.0.6",
"description": "Parse html tables and convert to json",
"source": "lib/html-table-parser.ts",
"main": "dist/html-table-parser.js",
"scripts": {
"test": "jest",
"build": "microbundle --no-sourcemap",
"prepare": "npm run build"
},
"files": [
"dist/html-table-parser.js",
"dist/html-table-parser.mjs",
"dist/html-table-parser.umd.js",
"dist/html-table-parser.d.ts"
],
"repository": {
"type": "git",
"url": "git://github.com/autifyhq/html-table-parser.git"
},
"author": "moriyak",
"license": "MIT",
"bugs": {
"url": "https://github.com/autifyhq/html-table-parser/issues"
},
"homepage": "https://github.com/autifyhq/html-table-parser#readme",
"dependencies": {
"core-js": "^3.23.3"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.4",
"babel-jest": "^28.1.2",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"microbundle": "^0.15.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}