1
0
mirror of https://github.com/DataTables/DataTables.git synced 2024-11-29 11:24:10 +01:00
DataTables/package.json
Allan Jardine b7c671444d Fix: The number rendering helper will now automatically escape HTML entities to help prevent possible XSS attacks if using a number renderer.
Rational for this is that the number renderer expects a number
input, not HTML, but if non-numeric input is given the value is just
returned (now escaped) - for example an empty string.
2016-01-07 15:24:53 +00:00

52 lines
1.2 KiB
JSON

{
"name": "datatables",
"version": "1.10.11-dev",
"title": "DataTables",
"main": "media/js/jquery.dataTables",
"files": [
"media/js/jquery.dataTables.js",
"media/js/jquery.dataTables.min.js",
"media/css/jquery.dataTables.css",
"media/css/jquery.dataTables.min.css",
"media/images"
],
"license": "MIT",
"dependencies": {
"jquery": ">=1.7"
},
"author": {
"name": "Allan Jardine",
"url": "http://sprymedia.co.uk"
},
"description": "DataTables enhances HTML tables with the ability to sort, filter and page the data in the table very easily. It provides a comprehensive API and set of configuration options, allowing you to consume data from virtually any data source.",
"keywords": [
"DataTables",
"DataTable",
"table",
"grid",
"filter",
"sort",
"page",
"internationalisable"
],
"repository": {
"type": "git",
"url": "https://github.com/DataTables/DataTables.git"
},
"homepage": "http://datatables.net",
"jspm": {
"dependencies": {
"css": "^0.1.5",
"jquery": "*"
},
"registry": "jspm",
"shim": {
"media/js/jquery.dataTables": {
"deps": ["jquery", "../css/jquery.dataTables.css!"],
"exports": "$"
}
}
}
}