diff --git a/MIT-LICENSE.txt b/MIT-LICENSE.txt new file mode 100644 index 0000000..b4943b0 --- /dev/null +++ b/MIT-LICENSE.txt @@ -0,0 +1,20 @@ +Copyright 2012 Julian Aubourg + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md index 3b769fb..4ce22fc 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,16 @@ # jQuery-JSONP +[![CDNJS](https://img.shields.io/cdnjs/v/jQuery-JSONP.svg)](https://cdnjs.com/libraries/jQuery-JSONP) + jQuery-JSONP is a compact (1.8kB minified), yet feature-packed, alternative solution to jQuery's implementation of JSONP. +## Licensing + +jQuery-JSONP is released under the [MIT license](https://github.com/jaubourg/jquery-jsonp/blob/master/MIT-LICENSE.txt). + ## Download -You can download jQuery-JSONP [here](/jaubourg/jquery-jsonp/downloads) (full text and minified versions available). +You can download jQuery-JSONP [here](https://github.com/jaubourg/jquery-jsonp/downloads) (full text and minified versions available). ## Features @@ -33,5 +39,5 @@ jQuery-JSONP has also been tested with jQuery 1.3.x up to 1.7.x ## Documentation -* [API Documentation](/jaubourg/jquery-jsonp/blob/master/doc/API.md) -* [Tips & Tricks](/jaubourg/jquery-jsonp/blob/master/doc/TipsAndTricks.md) +* [API Documentation](https://github.com/jaubourg/jquery-jsonp/blob/master/doc/API.md) +* [Tips & Tricks](https://github.com/jaubourg/jquery-jsonp/blob/master/doc/TipsAndTricks.md) diff --git a/package.json b/package.json new file mode 100644 index 0000000..d59c727 --- /dev/null +++ b/package.json @@ -0,0 +1,27 @@ +{ + "name": "jquery-jsonp", + "version": "2.4.0", + "description": "Alternative solution to jQuery's implementation of JSONP", + "main": "src/jquery.jsonp.js", + "directories": { + "doc": "doc", + "test": "test" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://github.com/jaubourg/jquery-jsonp.git" + }, + "keywords": [ + "JSONP", + "jQuery" + ], + "author": "Julian Aubourg", + "license": "MIT", + "bugs": { + "url": "https://github.com/jaubourg/jquery-jsonp/issues" + }, + "homepage": "https://github.com/jaubourg/jquery-jsonp" +}