generated from dxworks/dxworks-template-node-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "@dxworks/report-generator",
"version": "0.0.0",
"description": "A command line utility to create a report from a pptx template.",
"keywords": [
"dxworks",
"dxw"
],
"homepage": "https://github.com/dxworks/report-generator#readme",
"bugs": {
"url": "https://github.com/dxworks/report-generator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dxworks/report-generator.git"
},
"license": "Apache-2.0",
"author": "Mario Rivis <mario.rivis@gmail.com>",
"main": "dist/index.js",
"bin": {
"dx-report-generator": "dist/report-generator.js"
},
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && mkdir dist && cp lib/*.js dist && cp target/report-generator.jar dist",
"clean": "rimraf dist/",
"local": "npm run build && npm i"
},
"dependencies": {
"commander": "^8.3.0",
"java-caller": "^2.4.0"
},
"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/report-generator.js",
"command": "mainCommand"
}
]
}
}