-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.91 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
{
"name": "table-exporter-ts",
"version": "0.0.3",
"description": "Export HTML Table (Table Tag, Table CSS) to a file (JSON, CSV, etc.)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"export": "./bin/export_table.js",
"browserify": "browserify web.js -o web/te.js",
"c": "npm run clean",
"clean": "rm -rf dist/*",
"b": "npm run dist",
"build": "tsc",
"clean-build": "rm -rf dist/* && tsc",
"build:watch": "tsc --watch",
"clean-build:watch": "rm -rf dist/* && tsc --watch",
"t": "npm run test",
"test": "nyc mocha --opts ./src/test/mocha.opts",
"tw": "npm run test:watch",
"test:watch": "nyc mocha --watch --opts ./src/test/mocha.opts",
"api-docs": "typedoc --options typedoc.json --out docs/api ./src/index.ts",
"prepublishOnly": "npm run clean && npm run build",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"bin": {
"export-table": "./bin/export_table.js",
"export-rows": "./bin/export_rows.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tyolab/table-exporter-ts.git"
},
"keywords": [
"HTML",
"CSS",
"Table",
"JSON",
"CSV",
"export",
"data",
"transformation"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/tyolab/table-exporter-ts/issues"
},
"homepage": "https://github.com/tyolab/table-exporter-ts#readme",
"dependencies": {
"cheerio": "^0.22.0",
"data-forge": "^1.9.6",
"data-forge-fs": "^0.0.9",
"node-programmer": "^0.0.26",
"request": "^2.74.0"
},
"files": [
"LICENSE",
"lib/",
"README.md",
"index.js",
"examples/",
"bin/",
"web/te.js",
"utils/",
"web.js",
"functions.js",
"package.json",
"dist/"
],
"devDependencies": {
"@types/node": "^14.18.33",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
}
}