forked from Mottie/tablesorter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.5 KB
/
package.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
{
"name": "tablesorter",
"title": "tablesorter",
"version": "2.20.1",
"description": "tablesorter 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.\n\nThis forked version adds lots of new enhancements including: alphanumeric sorting, pager callback functons, multiple widgets providing column styling, ui theme application, sticky headers, column filters and resizer, as well as extended documentation with a lot more demos.",
"author": {
"name": "Christian Bach",
"url": "http://tablesorter.com/"
},
"maintainers": [
{
"name": "Rob Garrison",
"url": "https://github.com/Mottie",
"email": "[email protected]"
}
],
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
},
{
"type": "GPL",
"url": "http://www.gnu.org/licenses/gpl.html"
}
],
"homepage": "http://mottie.github.com/tablesorter/",
"bugs": "https://github.com/Mottie/tablesorter/issues",
"docs": "http://mottie.github.com/tablesorter/docs/index.html",
"demo": "https://github.com/Mottie/tablesorter/wiki",
"dependencies": {
"jquery": ">=1.2.6"
},
"keywords": [
"table",
"sort",
"sorting",
"alphanumeric",
"natural",
"jquery-plugin"
],
"main": "js/jquery.tablesorter.js",
"files": [
"dist/css/theme.default.css",
"dist/js/jquery.tablesorter.js",
"dist/js/jquery.tablesorter.min.js",
"dist/js/jquery.tablesorter.widgets.js",
"dist/js/jquery.tablesorter.widgets.min.js",
"dist/js/extras/jquery.tablesorter.pager.min.js"
],
"repository": {
"type": "git",
"url": "git://github.com/Mottie/tablesorter.git"
},
"npmName": "tablesorter",
"npmFileMap": [
{
"basePath": "",
"files": [
"dist/**/*"
]
}
],
"autoupdate": {
"source": "git",
"target": "git://github.com/Mottie/tablesorter.git",
"basePath": "",
"files": [
"dist/**/*"
]
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-copy": "^0.7.0",
"grunt-contrib-cssmin": "^0.12.1",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-qunit": "^0.5.2",
"grunt-contrib-uglify": "^0.7.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-string-replace": "^1.0.0"
}
}