-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
86 lines (86 loc) · 2.31 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
77
78
79
80
81
82
83
84
85
86
{
"name": "@tmorin/plantuml-libs",
"version": "15.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:website": "ts-node source/generator/website",
"generate:workdir": "ts-node source/generator/workdir",
"lint": "eslint .",
"release": "standard-version",
"release:publish": "git push --tags && git push --all",
"test": "mocha"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@types/extract-zip": "^2.0.1",
"@types/fs-extra": "^11.0.1",
"@types/html-minifier-terser": "^7.0.0",
"@types/lodash": "^4.14.176",
"@types/node": "^22.7.4",
"@types/node-fetch": "^2.6.6",
"@types/yaml": "^1.9.7",
"@types/yargs": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"csv-parse": "^5.0.4",
"eslint": "^9.11.1",
"extract-zip": "^2.0.1",
"fs-extra": "^11.1.1",
"html-minifier-terser": "^7.0.0",
"lodash": "^4.17.21",
"marked": "^14.1.2",
"marked-gfm-heading-id": "^4.1.0",
"marked-mangle": "^1.0.1",
"mocha": "^10.0.0",
"prettier": "^3.0.3",
"standard-version": "^9.3.2",
"ts-node": "^10.4.0",
"typescript": "^5.0.3",
"yaml": "^2.1.1"
},
"dependencies": {
"glob": "^11.0.0",
"moment": "^2.29.1",
"node-fetch": "^2.7.0",
"yargs": "^17.2.1"
}
}