-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathinstall.json
73 lines (73 loc) · 1.7 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
72
73
{
"resources": {
"body": [
{
"type": "script",
"src": "birdman.js",
"moduleType": "global",
"exports": [
"jQuery"
],
"depends": {
"github.com/jquery/jquery:jquery.js": "jQuery"
}
},
{
"type": "script",
"src": "install.js",
"moduleType": "global",
"depends": {
"github.com/jquery/jquery:jquery.js": "jQuery"
}
},
{
"type": "script",
"contents": "EagerBirdman(INSTALL_OPTIONS)"
}
]
},
"dependencies": {
"github.com/jquery/jquery": ">= 1.7.0, <= 1.10.2"
},
"options": {
"properties": {
"location": {
"order": 1,
"title": "Location",
"type": "string",
"format": "selector",
"description": "Select the text that you would like to animate birdman-style."
},
"advanced":{
"order": 10,
"title": "Optional parameters",
"type": "object",
"properties": {
"delay": {
"order": 11,
"title": "Animation speed",
"type": "string",
"description": "The speed at which letters are shown.",
"enum": [
"150",
"300",
"600"
],
"enumNames": {
"150": "Fast",
"300": "Normal",
"600": "Slow"
},
"default": "300"
},
"speedUp": {
"order": 12,
"title": "Speed up",
"description": "Whether the animation should become faster towards the end.",
"type": "boolean"
}
}
}
}
}
}