-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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
{
"name": "amvn",
"description": "A Maven wrapper adding change detection and automatic rebuild",
"version": "0.4.0",
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"test:help": "node bin/cmd.js --help",
"test:version": "node bin/cmd.js --version",
"test:verbose": "node bin/cmd.js --version --verbose",
"test": "run-s test:*"
},
"bin": {
"amvn": "bin/cmd.js"
},
"author": "Nico Rehwaldt<git_nikku@nixis.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:nikku/amvn.git"
},
"keywords": [
"maven",
"java",
"wrapper",
"development",
"tool",
"live-reload",
"change detection"
],
"dependencies": {
"chokidar": "^3.5.3",
"color-support": "^1.1.3",
"cp": "^0.2.0",
"kleur": "^4.1.4",
"mkdirp": "^1.0.4",
"which": "^2.0.2"
},
"devDependencies": {
"eslint": "^8.18.0",
"eslint-plugin-bpmn-io": "^0.14.0",
"npm-run-all": "^4.1.5"
},
"files": [
"bin",
"index.js"
]
}