mirror of
https://github.com/eldarion/eldarion-ajax.git
synced 2026-01-09 14:08:04 -05:00
## 0.15.0 * Replaced `statusCode` and `complete` callbacks with Promise methods of the jqXHR object returned by `$.ajax()` (`.done()`, `.fail()`, and `.always()`) for more verbose response handling * Updated `package.json` `"jquery"` dependency to `">=1.8.3"` for consistency with `bower.json` * Bumped version of `eldarion-ajax-core.js` to 0.13.0 * Updated `README.md` to reflect changes
29 lines
573 B
JSON
29 lines
573 B
JSON
{
|
|
"name": "eldarion-ajax",
|
|
"version": "0.15.0",
|
|
"description": "a library for adding declarative ajax functionality to your website",
|
|
"main": "js/eldarion-ajax.min.js",
|
|
"directories": {
|
|
"test": "tests"
|
|
},
|
|
"scripts": {
|
|
"test": "./ci.sh"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/eldarion/eldarion-ajax"
|
|
},
|
|
"keywords": [
|
|
"ajax"
|
|
],
|
|
"author": "Patrick Altman",
|
|
"license": "BSD",
|
|
"readmeFilename": "README.md",
|
|
"dependencies": {
|
|
"jquery": ">=1.8.3"
|
|
},
|
|
"devDependencies": {
|
|
"jshint": "2.1.4"
|
|
}
|
|
}
|