This repository has been archived by the owner on Oct 28, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
67 lines (67 loc) · 1.57 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
64
65
66
67
{
"name": "jhipster-uml",
"version": "2.0.3",
"description": "UML support for JHipster via XMI files",
"bin": {
"jhipster-uml": "./jhipster-uml.js"
},
"keywords": [
"generator-jhipster",
"UML",
"XMI",
"JSON"
],
"homepage": "https://github.com/jhipster/jhipster-uml",
"bugs": "https://github.com/jhipster/jhipster-uml/issues",
"author": {
"name": "Mathieu Abou-Aichi",
"email": "[email protected]",
"url": "https://github.com/MathieuAA"
},
"main": "module/index.js",
"repository": {
"type": "git",
"url": "git://github.com/jhipster/jhipster-uml.git"
},
"scripts": {
"lint": "eslint .",
"lint-fix": "npm run lint -- --fix",
"test": "npm run lint && nyc mocha test",
"posttest": "npm run coverage",
"test:watch": "mocha test --watch --reporter min",
"coverage": "nyc --reporter=text-summary report"
},
"dependencies": {
"chalk": "2.4.2",
"deasync": "0.1.15",
"inquirer": "6.3.1",
"jhipster-core": "3.6.14",
"lodash": "4.17.13",
"winston": "3.2.1",
"xml2js": "0.4.19",
"yargs": "13.2.4"
},
"devDependencies": {
"chai": "4.2.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-mocha": "5.3.0",
"eslint-plugin-import": "2.17.3",
"mocha": "6.1.4",
"mocha-clean": "1.0.0",
"nyc": "14.1.1",
"sinon": "7.3.2",
"sinon-chai": "3.3.0"
},
"peerDependencies": {},
"engines": {
"node": ">=8.10.0",
"npm": ">=5.6.0"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache 2.0"
}
]
}