-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
48 lines (48 loc) · 1.1 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": "node-plantuml",
"version": "0.9.0",
"plantumlVersion": "1.2019.6",
"description": "A Node.js module and CLI for running PlantUML",
"main": "index.js",
"author": "Markus Hedvall <[email protected]>",
"repository": "https://github.com/markushedvall/node-plantuml",
"license": "MIT",
"engines": {
"node": ">= 6.x"
},
"keywords": [
"plantuml",
"uml",
"diagram"
],
"dependencies": {
"commander": "^2.8.1",
"node-nailgun-client": "^0.1.0",
"node-nailgun-server": "^0.1.4",
"plantuml-encoder": "^1.2.5"
},
"devDependencies": {
"chai": "^4.x",
"mocha": "^5.x",
"standard": "^12.x",
"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"
}
}