-
Notifications
You must be signed in to change notification settings - Fork 160
/
builder.json
121 lines (121 loc) · 3.31 KB
/
builder.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"filename": "jquerypp.custom.js",
"banner": "/*!\n * <%= pkg.title || pkg.name %> - <%= pkg.version %>\n * <%= pkg.homepage %>\n * Copyright (c) <%= new Date().getFullYear() %> <%= pkg.author.name %>\n * <%= new Date().toUTCString() %>\n * Licensed <%= pkg.licenses[0].type %>\n<% if(typeof url !== \"undefined\") { %>\n * Includes: <%= ids %>\n * Download from: <%= url %>\n<% } %> */\n",
"modules": {
"jquerypp/dom/animate/animate": {
"name": "jQuery.animate",
"description": "Animate using CSS animations",
"type": "dom",
"isDefault": true
},
"jquerypp/dom/compare/compare": {
"name": "jQuery.compare",
"description": "Compare element document position",
"type": "dom",
"isDefault": true
},
"jquerypp/dom/cookie/cookie": {
"name": "jQuery.cookie",
"description": "Read and write cookies",
"type": "dom",
"isDefault": true
},
"jquerypp/dom/form_params/form_params": {
"name": "jQuery.formParams",
"description": "Serializes a form into an object",
"type": "dom",
"isDefault": true
},
"jquerypp/dom/range/range": {
"name": "jQuery.range",
"description": "Create and manipulate text ranges",
"type": "dom",
"isDefault": true
},
"jquerypp/dom/selection/selection": {
"name": "jQuery.selection",
"description": "Get and set the current text selection",
"type": "dom",
"isDefault": true
},
"jquerypp/dom/within/within": {
"name": "jQuery.within",
"description": "Get elements within an area or at a point",
"type": "dom",
"isDefault": true
},
"jquerypp/event/removed/removed": {
"name": "jQuery.event.removed",
"description": "An element is removed from the DOM",
"type": "event",
"isDefault": true
},
"jquerypp/event/drag/drag": {
"name": "jQuery.event.drag",
"description": "Delegatable drag events",
"type": "event",
"isDefault": true
},
"jquerypp/event/drop/drop": {
"name": "jQuery.event.drop",
"description": "Delegatable drop events",
"type": "event",
"isDefault": true
},
"jquerypp/event/hover/hover": {
"name": "jQuery.event.hover",
"description": "Delegatable hover events",
"type": "event",
"isDefault": true
},
"jquerypp/event/key/key": {
"name": "jQuery.event.key",
"description": "Returns a string representation of the key pressed",
"type": "event",
"isDefault": true
},
"jquerypp/event/pause/pause": {
"name": "jQuery.event.pause",
"description": "Pause and resume event propagation",
"type": "event",
"isDefault": true
},
"jquerypp/event/resize/resize": {
"name": "jQuery.event.resize",
"description": "Listen to a resize event on every object",
"type": "event",
"isDefault": true
},
"jquerypp/event/swipe/swipe": {
"name": "jQuery.event.swipe",
"description": "Delegatable swipe events",
"type": "event",
"isDefault": true
}
},
"types": {
"dom": "DOM helpers",
"event": "Special events"
},
"pluginify": {
"shim": {
"jquery/jquery.js": "$"
},
"wrapper": "(function($) {\n<%= content %>\n})(jQuery);\n"
},
"configurations": {
"default": {
"description": "jQuery",
"isDefault": true
}
},
"ignore": ["dojo","dojo/dojo","dojo/main",
"jquery","jquery/jquery",
"mootools/mootools","mootools",
"zepto","zepto/zepto",
"yui","yui/yui"],
"exports": {
"jquery": "jQuery",
"zepto": "Zepto"
}
}