forked from markushedvall/node-plantuml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 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
{
"name": "@panzerfahrer/node-plantuml",
"version": "0.9.0-1.2023.4",
"plantumlVersion": "1.2023.4",
"description": "A Node.js module and CLI for running PlantUML",
"main": "index.js",
"author": "Markus Hedvall <mackanhedvall@gmail.com>",
"contributors": [
"Brian Hoffmann <panzerfahrer@users.noreply.github.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/panzerfahrer/node-plantuml.git"
},
"license": "MIT",
"engines": {
"node": ">= 6.x"
},
"keywords": [
"plantuml",
"uml",
"diagram"
],
"dependencies": {
"commander": "^9.0.0",
"node-nailgun-client": "^0.1.0",
"node-nailgun-server": "^0.3.0",
"plantuml-encoder": "^1.2.5"
},
"devDependencies": {
"chai": "^4.x",
"mocha": "^9.2.0",
"standard": "^16.0.4",
"shelljs": "^0.8.x"
},
"files": [
"index.js",
"lib/",
"vendor/plantuml.jar",
"resources/",
"nail/plantumlnail.jar",
"scripts/download.js",
"scripts/get-vizjs.js"
],
"scripts": {
"prepublish": "node scripts/get-plantuml-jar.js",
"postinstall": "node scripts/get-vizjs.js",
"test": "standard && node test/fixtures/prepare.js && mocha",
"build": "node nail/build.js"
},
"bin": {
"puml": "index.js"
}
}