-
Notifications
You must be signed in to change notification settings - Fork 111
/
composer.json
69 lines (69 loc) · 2.03 KB
/
composer.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
{
"name": "components/jqueryui",
"type": "component",
"description": "jQuery UI is a curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library. Whether you're building highly interactive web applications or you just need to add a date picker to a form control, jQuery UI is the perfect choice.",
"license": "MIT",
"require": {
"components/jquery": ">=1.6"
},
"authors": [
{
"name": "jQuery UI Team",
"homepage": "http://jqueryui.com/about"
},
{
"name": "Scott Gonzalez",
"email": "[email protected]",
"homepage": "http://scottgonzalez.com"
},
{
"name": "Joern Zaefferer",
"email": "[email protected]",
"homepage": "http://bassistance.de"
},
{
"name": "Kris Borchers",
"email": "[email protected]",
"homepage": "http://krisborchers.com"
},
{
"name": "Corey Frang",
"email": "[email protected]",
"homepage": "http://gnarf.net"
},
{
"name": "Mike Sherov",
"email": "[email protected]",
"homepage": "http://mike.sherov.com"
},
{
"name": "TJ VanToll",
"email": "[email protected]",
"homepage": "http://tjvantoll.com"
},
{
"name": "Felix Nagel",
"email": "[email protected]",
"homepage": "http://www.felixnagel.com"
}
],
"extra": {
"component": {
"name": "jquery-ui",
"scripts": [
"jquery-ui.js"
],
"files": [
"ui/**",
"themes/**",
"jquery-ui.min.js"
],
"shim": {
"deps": [
"jquery"
],
"exports": "jQuery"
}
}
}
}