-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 908 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
{
"name": "openapi2plantuml",
"version": "1.2.4",
"description": "Convert swagger and openAPI definition in PlantUML diagrams.",
"repository": {
"type": "git",
"url": "https://github.com/marc0l92/openapi2plantuml"
},
"directories": {
"doc": "doc",
"test": "test"
},
"main": "dist/OpenApi2PlantUml.js",
"module": "src/index.ts",
"scripts": {
"build": "webpack"
},
"keywords": [
"PlantUML",
"swagger",
"openAPI"
],
"author": "marc0l92",
"license": "MIT",
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^9.1.0",
"@types/js-yaml": "^4.0.5",
"@types/plantuml-encoder": "^1.4.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"js-yaml": "^4.1.0",
"plantuml-encoder": "^1.4.0"
}
}