-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.39 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.39 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
{
"name": "jmw",
"version": "2.0.0",
"description": "Java Maven WildFly - Interactive deployment helper for Java/Maven projects targeting WildFly",
"main": "src/cli.js",
"bin": {
"jmw": "dist/jmw"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node src/cli.js",
"dev": "node src/cli.js",
"build": "node build.js",
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"install": "node build.js && mkdir -p ~/.bio/bin && cp dist/jmw ~/.bio/bin/",
"prepack": "node build.js",
"lint": "echo 'No linter configured'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ppowo/jmw.git"
},
"keywords": [
"maven",
"wildfly",
"java",
"deployment",
"cli"
],
"author": "ppowo",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"bugs": {
"url": "https://github.com/ppowo/jmw/issues"
},
"homepage": "https://github.com/ppowo/jmw#readme",
"dependencies": {
"chalk": "latest",
"commander": "latest",
"esbuild": "latest",
"fast-xml-parser": "latest",
"find-up": "latest",
"globby": "latest",
"log-symbols": "latest",
"micromatch": "latest",
"ms": "latest",
"pretty-bytes": "latest",
"prompts": "latest",
"simple-git": "latest",
"untildify": "latest"
}
}