-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.44 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
{
"name": "@dxworks/tables",
"version": "0.1.0",
"description": "Converts Dx overview tables csv output to excel file",
"keywords": [
"dx",
"overview-tables",
"overview",
"tables",
"dxw",
"plugin"
],
"homepage": "https://github.com/dxworks/overview-tables#readme",
"bugs": {
"url": "https://github.com/dxworks/overview-tables/issues"
},
"repository": "git://github.com/dxworks/overview-tables.git",
"license": "Apache-2.0",
"author": "Mario Rivis",
"main": "index.js",
"bin": {
"dx-tables": "dist/tables.js",
"dx-table-pics": "dist/tablepics.js"
},
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && mkdir dist && cp lib/*.js dist && cp target/overview-tables.jar dist",
"clean": "rimraf dist/",
"local": "npm run build && npm i"
},
"dependencies": {
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"commander": "^11.1.0",
"inquirer": "^8.2.1",
"java-caller": "^2.4.0",
"node-html-parser": "^5.2.0",
"puppeteer": "^13.5.1"
},
"devDependencies": {
"json": "^11.0.0",
"rimraf": "^3.0.2",
"sort-package-json": "^1.52.0"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"dxw": {
"commands": [
{
"file": "dist/index.js",
"command": "tablesCommand"
},
{
"file": "dist/index.js",
"command": "tablePicsCommand"
}
]
}
}