-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.28 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.28 KB
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
{
"author": {
"name": "Marius Augenstein",
"email": "marius.augenstein@gmail.com",
"url": "https://github.com/maugenst"
},
"name": "tabletojson",
"version": "4.1.10",
"description": "Convert HTML tables to JSON objects",
"main": "dist/Tabletojson.cjs",
"types": "dist/Tabletojson.d.mts",
"module": "dist/Tabletojson.mjs",
"files": [
"README.md",
"dist",
"examples"
],
"exports": {
"import": {
"types": "./dist/Tabletojson.d.mts",
"default": "./dist/Tabletojson.mjs"
},
"require": {
"types": "./dist/Tabletojson.d.cts",
"default": "./dist/Tabletojson.cjs"
}
},
"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.2.0"
},
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.15.26",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/json2csv": "^5.0.7",
"@types/lodash": "^4.17.24",
"@types/node": "^25.6.0",
"@types/supertest": "^7.2.0",
"jest": "^30.3.0",
"jest-extended": "^7.0.0",
"json2csv": "^6.0.0-alpha.2",
"lodash": "^4.18.1",
"nock": "^14.0.12",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.9",
"tsdown": "^0.21.8",
"typescript": "^6.0.2"
},
"scripts": {
"clean": "rimraf dist/",
"clean:all": "rimraf node_modules dist/ && mkdir dist",
"build:examples": "swc examples -d dist",
"build": "run-s clean lint tsdown",
"tsdown": "tsdown",
"lint": "npx @biomejs/biome lint ./lib ./test --write",
"check": "npx @biomejs/biome check ./lib ./test",
"check:fix": "npx @biomejs/biome check ./lib ./test --write",
"prepare": "npm run clean && npm run build && npm run lint",
"prebuild": "npm run lint",
"test": "jest --coverage --"
}
}