-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
90 lines (90 loc) · 2.25 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
79
80
81
82
83
84
85
86
87
88
89
90
{
"author": {
"name": "Marius Augenstein",
"email": "marius.augenstein@gmail.com",
"url": "https://github.com/maugenst"
},
"name": "tabletojson",
"version": "4.1.5",
"description": "Convert HTML tables to JSON objects",
"main": "dist/lib/cjs/Tabletojson.js",
"types": "./@typings/Tabletojson.d.ts",
"module": "dist/lib/mjs/Tabletojson.js",
"typeRoots": [
"./@typings",
"./node_modules/@types/"
],
"files": [
"README.md",
"lib",
"dist",
"examples",
"@typings"
],
"exports": {
"import": {
"types": "./@typings/Tabletojson.d.ts",
"default": "./dist/lib/mjs/Tabletojson.js"
},
"require": {
"types": "./@typings/Tabletojson.d.ts",
"default": "./dist/lib/cjs/Tabletojson.js"
}
},
"keywords": [
"table2json",
"html",
"table",
"convert",
"json",
"csv"
],
"engines": {
"node": ">= 18.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/maugenst/tabletojson.git"
},
"dependencies": {
"cheerio": "^1.0.0"
},
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@swc/core": "^1.8.0",
"@swc/jest": "^0.2.37",
"@types/cheerio": "^0.22.35",
"@types/jest": "^29.5.14",
"@types/json2csv": "^5.0.7",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.0",
"@types/supertest": "^6.0.2",
"chokidar": "^4.0.1",
"config": "^3.3.12",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"json2csv": "^6.0.0-alpha.2",
"lodash": "^4.17.21",
"nock": "^13.5.5",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"scripts": {
"clean": "rimraf dist/",
"clean:all": "rimraf node_modules dist/ && mkdir dist",
"build:examples": "swc examples -d dist/examples",
"build": "run-s clean lint build:mjs build:cjs fixup",
"build:cjs": "tsc -p tsconfig-cjs.json",
"build:mjs": "tsc -p tsconfig-mjs.json",
"build:dev": "tsc -p tsconfig-mjs.json --watch",
"fixup": "./fixup.sh",
"lint": "npx @biomejs/biome lint ./lib ./test --write",
"prepare": "npm run clean && npm run build && npm run lint",
"prebuild": "npm run lint",
"test": "jest --coverage --"
}
}