-
Notifications
You must be signed in to change notification settings - Fork 60
/
install.json
71 lines (71 loc) · 1.59 KB
/
install.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
{
"resources": {
"body": [
{
"type": "style",
"src": "./build/app.css"
},
{
"type": "script",
"src": "./build/app.js"
}
]
},
"preview": {
"handlers": [
{
"options": ["*"],
"execute": "INSTALL_SCOPE.setOptions(INSTALL_OPTIONS)"
}
]
},
"options": {
"properties": {
"ie": {
"order": 0,
"minimum": 0,
"default": 9,
"title": "Internet Explorer",
"description": "Minimum supported version of Internet Explorer.",
"placeholder": "0",
"type": "number"
},
"edge": {
"order": 1,
"minimum": 0,
"default": 14.14393,
"title": "Microsoft Edge",
"description": "Minimum supported version of Microsoft Edge.",
"placeholder": "0",
"type": "number"
},
"firefox": {
"order": 2,
"minimum": 0,
"default": 60,
"title": "Mozilla Firefox",
"description": "Minimum supported version of Mozilla Firefox.",
"placeholder": "0",
"type": "number"
},
"chrome": {
"order": 3,
"minimum": 0,
"default": 60,
"title": "Google Chrome",
"description": "Minimum supported version of Google Chrome.",
"placeholder": "0",
"type": "number"
},
"safari": {
"order": 4,
"minimum": 0,
"default": 10,
"title": "Safari",
"description": "Minimum supported version of Safari.",
"placeholder": "0",
"type": "number"
}
}
}
}