forked from Digital-Tvilling/node-red-openapi-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.1 KB
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": "@5minds/node-red-openapi-generator",
"version": "1.1.2",
"description": "A set of tools for generating OpenAPI3/Swagger documentation based on the HTTP nodes deployed in a flow. An updated version of the Node-RED Swagger Documentation Generator to support OpenAPI3, based of the @digital-tvilling/node-red-openapi-generator.",
"license": "Apache",
"repository": {
"type": "git",
"url": "https://github.com/5minds/node-red-openapi-generator"
},
"authors": [
{
"name": "Diana Stefan",
"email": "diana.stefan@5Minds.de"
}
],
"scripts": {
"lint": "prettier --write --config ./.prettierrc.json \"**/*.{html,js}\""
},
"keywords": [
"node-red",
"swagger",
"open-api"
],
"node-red": {
"version": ">=4.2.0",
"nodes": {
"swagger": "swagger/swagger.js"
}
},
"conflicts": {
"node-red-node-swagger": "<0.3.0"
},
"dependencies": {
"swagger-ui-dist": "^5.29.0"
},
"engines": {
"node": ">=18.0.0"
}
}