-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
41 lines (41 loc) · 921 Bytes
/
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
{
"name": "json-to-plantuml",
"version": "0.0.8",
"description": "Visualize JSON data using Plant UML",
"main": "./lib/plantumlify.js",
"scripts": {
"test": "mocha"
},
"bin": {
"json-to-plantuml": "./bin/json-to-plantuml.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meteorbites/json-to-plantuml.git"
},
"keywords": [
"JSON",
"UML",
"Plant",
"PlantUML",
"Visualize JSON",
"JSON to Plant UML"
],
"author": "Donnie Gallardo",
"license": "ISC",
"bugs": {
"url": "https://github.com/meteorbites/json-to-plantuml/issues"
},
"homepage": "https://github.com/meteorbites/json-to-plantuml#readme",
"dependencies": {
"byline": "^5.0.0",
"commander": "^2.9.0",
"handlebars": "^4.0.6",
"lodash": "^4.16.2",
"minimist": "^1.2.0",
"request": "^2.79.0"
},
"devDependencies": {
"mocha": "^3.2.0"
}
}