-
Notifications
You must be signed in to change notification settings - Fork 754
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Meta: Add composer.json. Fixes #1355
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"name": "mottie/tablesorter", | ||
"description": "tablesorter (FORK) is a jQuery plugin for turning a standard HTML table with THEAD and TBODY tags into a sortable table without page refreshes. tablesorter can successfully parse and sort many types of data including linked data in a cell.", | ||
"homepage": "https://mottie.github.io/tablesorter/", | ||
"type": "component", | ||
"license": "(MIT OR GPL-2.0+)", | ||
"require": { | ||
"jquery": "^1.2.6" | ||
}, | ||
"authors": [{ | ||
"name": "Christian Bach", | ||
"url": "http://tablesorter.com/" | ||
},{ | ||
"name": "Rob Garrison", | ||
"url": "https://github.com/Mottie", | ||
"email": "[email protected]" | ||
}], | ||
"keywords": [ | ||
"table", | ||
"sort", | ||
"sorting", | ||
"alphanumeric", | ||
"natural", | ||
"jquery-plugin" | ||
], | ||
"support": { | ||
"email": "[email protected]", | ||
"issues": "https://github.com/Mottie/tablesorter/issues", | ||
"wiki": "https://github.com/Mottie/tablesorter/wiki", | ||
"irc": "irc://irc.freenode.org/tablesorter", | ||
"source": "https://github.com/Mottie/tablesorter", | ||
"docs": "https://mottie.github.io/tablesorter/docs/index.html" | ||
}, | ||
"extra": { | ||
"component": { | ||
"scripts": [ | ||
"dist/js/jquery.tablesorter.combined.js" | ||
], | ||
"files": "dist/" | ||
} | ||
} | ||
} |