forked from samgh96/bae-mastermind-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "MasterMind Service",
"author": "sgarcia",
"version": "0.1",
"module": "mastermind-plugin.MastermindPlugin",
"media_types": [
"Mastermind URL"
],
"formats": [
"URL"
],
"form": {
"name": {
"type": "textarea",
"label": "Service name",
"placeholder": "Required"
},
"version": {
"type": "textarea",
"label": "Version number",
"placeholder": "Required"
},
"ngsi_version": {
"type": "text",
"label": "NGSI Version",
"placeholder": "Required"
},
"service_protocol_type": {
"type": "text",
"label": "Service protocol type",
"placeholder": "Required"
},
"configuration_template": {
"type": "textarea",
"label": "Mastermind.yml",
"placeholder": "Required"
},
"deploy_template": {
"type": "textarea",
"label": "docker-compose.yml",
"default": "none",
"placeholder": "Optional"
}
}
}