forked from markushedvall/node-plantuml
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 845 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
{
"name": "node-plantuml-latest",
"version": "2.4.0",
"plantumlVersion": "1.2022.12",
"description": "A Node.js module and CLI for running PlantUML",
"main": "index.js",
"author": "Markus Hedvall <mackanhedvall@gmail.com>",
"repository": "https://github.com/markushedvall/node-plantuml",
"license": "MIT",
"engines": {
"node": ">= 6.x"
},
"files": [
"index.js",
"lib/",
"vendor/plantuml.jar",
"resources/"
],
"keywords": [
"plantuml",
"uml",
"diagram"
],
"dependencies": {
"commander": "^2.8.1",
"plantuml-encoder": "^1.2.5"
},
"devDependencies": {
"chai": "^3.2.0",
"mocha": "^5.x",
"shelljs": "^0.5.3",
"standard": "^11.x"
},
"scripts": {
"test": "standard && node test/fixtures/prepare.js && mocha"
},
"bin": {
"puml": "index.js"
}
}