Skip to content

Commit

Permalink
Updates requirements and package managers
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Morris committed Feb 20, 2017
1 parent 8de36ff commit 0dc9b4e
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 39 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ Want to contribute to jQuery Form? Awesome! See [CONTRIBUTING](CONTRIBUTING.md)
###Code of Conduct
Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md) to ensure that this project is a welcoming place for **everyone** to contribute to. By participating in this project you agree to abide by its terms.

##Requirements
Requires jQuery 1.7+.

---

##API
Expand Down
5 changes: 2 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
{
"name": "jquery-form",
"version": "3.51.0",
"main": "jquery.form.js",
"author": "M. Alsup",
"author": "Kevin Morris",
"dependencies": {
"jquery": ">=1.5"
"jquery": ">=1.7"
},
"ignore": [
"README.md",
Expand Down
15 changes: 9 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,32 @@
{
"name": "malsup/form",
"name": "jquery-form/form",
"description": "A simple way to AJAX-ify any form on your page; with file upload and progress support.",
"type": "component",
"homepage": "http://jquery.malsup.com/form/",
"homepage": "https://github.com/jquery-form/form/",
"keywords": [
"form",
"upload",
"ajax"
],
"support": {
"issues": "https://github.com/malsup/form/issues",
"wiki": "http://jquery.malsup.com/form/"
"issues": "https://github.com/jquery-form/form/issues",
"wiki": "https://github.com/jquery-form/form/"
},
"authors": [
{
"name": "Kevin Morris",
"url": "https://github.com/jquery-form/form"
},{
"name": "M. Alsup",
"homepage": "http://jquery.malsup.com"
}
],
"license": [
"MIT",
"GPL-2.0"
"LGPL-3.0"
],
"require": {
"components/jquery": ">=1.5"
"components/jquery": ">=1.7"
},
"extra": {
"component": {
Expand Down
18 changes: 9 additions & 9 deletions form.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,25 @@
],
"version": "3.51.0",
"author": {
"name": "M. Alsup",
"url": "http://jquery.malsup.com"
"name": "Kevin Morris",
"url": "https://github.com/jquery-form/form"
},
"licenses": [
{
"type": "MIT",
"url": "http://malsup.github.com/mit-license.txt"
"url": "https://github.com/jquery-form/form/LICENSE"
},
{
"type": "GPL",
"url": "http://malsup.github.com/gpl-license-v2.txt"
"url": "https://github.com/jquery-form/form/blob/master/LICENSE-LGPLv3"
}
],
"bugs": "https://github.com/malsup/form/issues",
"homepage": "http://jquery.malsup.com/form/",
"docs": "http://jquery.malsup.com/form/",
"download": "http://malsup.github.com/jquery.form.js",
"bugs": "https://github.com/jquery-form/form/issues",
"homepage": "https://github.com/jquery-form/form/",
"docs": "https://github.com/jquery-form/form/",
"download": "https://github.com/jquery-form/form/blob/master/jquery.form.js",
"dependencies": {
"jquery": ">=1.5"
"jquery": ">=1.7"
}
}

9 changes: 4 additions & 5 deletions jquery.form.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
/*!
* jQuery Form Plugin
* version: 3.51.0-2014.06.20
* Requires jQuery v1.5 or later
* Requires jQuery v1.7 or later
* Copyright (c) 2014 M. Alsup
* Examples and documentation at: http://malsup.com/jquery/form/
* Project repository: https://github.com/malsup/form
* Dual licensed under the MIT and GPL licenses.
* https://github.com/malsup/form#copyright-and-license
* Project repository: https://github.com/jquery-form/form
* Dual licensed under the MIT and LGPLv3 licenses.
* https://github.com/jquery-form/form#license
*/
/*global ActiveXObject */

Expand Down
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,38 +9,38 @@
],
"version": "3.51.1",
"author": {
"name": "M. Alsup",
"url": "http://jquery.malsup.com"
"name": "Kevin Morris",
"url": "https://github.com/jquery-form/form"
},
"licenses": [
{
"type": "MIT",
"url": "http://malsup.github.com/mit-license.txt"
"url": "https://github.com/jquery-form/form/LICENSE"
},
{
"type": "GPL",
"url": "http://malsup.github.com/gpl-license-v2.txt"
"type": "LGPLv3",
"url": "https://github.com/jquery-form/form/blob/master/LICENSE-LGPLv3"
}
],
"bugs": "https://github.com/malsup/form/issues",
"homepage": "http://jquery.malsup.com/form/",
"docs": "http://jquery.malsup.com/form/",
"download": "http://malsup.github.com/jquery.form.js",
"bugs": "https://github.com/jquery-form/form/issues",
"homepage": "https://github.com/jquery-form/form",
"docs": "https://github.com/jquery-form/form",
"download": "https://github.com/jquery-form/form/blob/master/jquery.form.js",
"dependencies": {
"jquery": ">=1.5"
"jquery": ">=1.7"
},
"main": "jquery.form.js",
"jam": {
"main": "jquery.form.js",
"dependencies": {
"jquery": ">=1.5.0"
"jquery": ">=1.7"
}
},
"devDependencies": {
"gulp-util": "~2.2.14",
"gulp": "~3.5.2",
"gulp-uglify": "~0.2.1",
"gulp-concat": "~2.1.7",
"gulp-jshint": "~1.4.2"
"gulp": "~3",
"gulp-util": "~3",
"gulp-uglify": "~2",
"gulp-concat": "~2",
"gulp-jshint": "~2"
}
}

0 comments on commit 0dc9b4e

Please sign in to comment.