-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "runnable-jar-to-docker",
"version": "0.2.0",
"scripts": {
"build": "npm run format && tsc -p .",
"format": "prettier --write .",
"release": "npm run set-version; npm run build && npm publish && npm run changelog",
"set-version": "npm version $(npx git-changelog-command-line --print-next-version)",
"changelog": "npx git-changelog-command-line -of CHANGELOG.md && git commit -a -m 'chore: changelog' && git push --follow-tags"
},
"bin": "./lib/cli.js",
"dependencies": {
"commander": "^10.0.1",
"fast-xml-parser": "^4.2.4",
"handlebars": "^4.7.7",
"node-fetch": "^2.0.0"
},
"devDependencies": {
"@types/node": "^16.9.1",
"@types/node-fetch": "^2.6.4",
"prettier": "^2.0.5",
"ts-node": "^8.9.0",
"typescript": "^3.8.3"
},
"homepage": "https://github.com/tomasbjerre/runnable-jar-to-docker",
"repository": "[email protected]:tomasbjerre/runnable-jar-to-docker.git",
"files": [
"lib",
"docker"
],
"author": "Tomas Bjerre",
"keywords": [
"java",
"Docker"
],
"license": "Apache 2"
}