forked from tmorin/plantuml-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.93 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
68
69
70
71
72
73
74
75
76
{
"name": "@tmorin/plantuml-libs",
"version": "9.0.0",
"description": "A set of resources for [PlantUML](https://plantuml.com) to define diagrams for AWS, Azure, EIP ...",
"license": "MIT",
"homepage": "https://github.com/tmorin/plantuml-libs#readme",
"bugs": {
"url": "https://github.com/tmorin/plantuml-libs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmorin/plantuml-libs.git"
},
"author": {
"name": "Thibault Morin",
"url": "https://tmorin.github.io"
},
"bin": {
"gdiag": "bin/gdiag.js"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"plantuml",
"library",
"diagram",
"sprite",
"icon",
"aws",
"azure",
"c4model",
"eip",
"eventstorming",
"fontawesome",
"gcp",
"material",
"simpleicons"
],
"scripts": {
"alpha": "standard-version --skip.changelog --skip.tag --prerelease alpha",
"alpha:publish": "git push --all && npm publish --tag canary",
"generate:library": "scripts/generate-library.sh",
"generate:package": "scripts/generate-package.sh",
"generate:workdir": "ts-node workdir-generator",
"release": "standard-version",
"release:publish": "git push --tags && git push --all",
"test": "mocha"
},
"devDependencies": {
"@types/extract-zip": "^2.0.1",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.176",
"@types/node": "^16.11.11",
"@types/node-fetch": "^2.5.12",
"@types/yaml": "^1.9.7",
"@types/yargs": "^17.0.5",
"csv-parse": "^5.0.4",
"extract-zip": "^2.0.1",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"prettier": "^2.6.1",
"standard-version": "^9.3.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"yaml": "^2.1.1"
},
"dependencies": {
"glob": "^8.0.3",
"moment": "^2.29.1",
"node-fetch": "^2.6.6",
"yargs": "^17.2.1"
}
}