-
Notifications
You must be signed in to change notification settings - Fork 380
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added component.json for bower registration. Fixes #566.
- Loading branch information
Showing
3 changed files
with
53 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"name": "anythingslider", | ||
"title": "AnythingSlider", | ||
"version": "1.9.3", | ||
"description": "Just what the world needs, another jQuery slider. YAWN. I know, check this one out though, it's got lots of cool features.\n\nHere on CSS-Tricks, I've created a number of different sliders. Three, in fact. A \"featured content\" slider, a \"start/stop slider\", and \"moving boxes\". Each of them had some cool interesting feature that I needed to build at the time. All were well-received, but as is the case with these things, people want them to do X, Y, and Z in addition to what they already did.\n\nThis new AnythingSlider is an attempt at bringing together the functionality of all of those previous sliders and adding new features. In other words, to create a really \"full featured\" slider that could be widely useful. This is the first time (on CSS-Tricks) that one of these sliders is an actual plugin as well, which should make implementing it and customizing it much easier.", | ||
"author": { | ||
"name": "Chris Coyier", | ||
"url": "https://github.com/chriscoyier" | ||
}, | ||
"maintainers": [{ | ||
"name": "Rob Garrison", | ||
"url": "https://github.com/Mottie", | ||
"email": "[email protected]" | ||
},{ | ||
"name": "Dean Sofer", | ||
"url": "https://github.com/ProLoser" | ||
}], | ||
"licenses": [{ | ||
"type": "GPL3", | ||
"url": "https://github.com/CSS-Tricks/AnythingSlider/blob/master/license.txt" | ||
}], | ||
"bugs": "https://github.com/CSS-Tricks/AnythingSlider/issues", | ||
"homepage": "http://css-tricks.com/3412-anythingslider-jquery-plugin/", | ||
"docs": "https://github.com/CSS-Tricks/AnythingSlider/wiki", | ||
"demo": "http://css-tricks.github.com/AnythingSlider/", | ||
"dependencies": { | ||
"jquery": ">=1.4.2" | ||
}, | ||
"keywords": [ | ||
"customizable", | ||
"effects", | ||
"slider", | ||
"video" | ||
], | ||
"files": [ | ||
"css/anythingslider.css", | ||
"js/jquery.anythingslider.js", | ||
"js/jquery.anythingslider.min.js", | ||
"js/jquery.anythingslider.fx.js", | ||
"js/jquery.anythingslider.video.js" | ||
], | ||
"jam": { | ||
"main": "js/jquery.anythingslider.js", | ||
"dependencies": { | ||
"jquery": ">=1.4.2" | ||
}, | ||
"shim": { | ||
"deps": ["jquery"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters