-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds Grunt test task; updates documentation
- Loading branch information
1 parent
34292d9
commit bbe589c
Showing
3 changed files
with
105 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,48 @@ | ||
{ | ||
"name": "jquery-ajax-chain", | ||
"description": "jQuery helper class meant to ease up the process of making multiple synchronously chained Ajax calls.", | ||
"keywords": [ | ||
"jquery-plugin", | ||
"javascript", | ||
"ajax", | ||
"chain", | ||
"sequence", | ||
"series", | ||
"waterfall", | ||
"async" | ||
], | ||
"version": "1.0.5", | ||
"dependencies": { | ||
"jquery": ">=1.5.0" | ||
}, | ||
"author": "Andrea Blasio (https://github.com/humana-fragilitas)", | ||
"license": "MIT", | ||
"main": "./dist/jquery.ajax-chain.min.js", | ||
"homepage": "https://github.com/humana-fragilitas", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/humana-fragilitas/jQuery-Ajax-Chain.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/humana-fragilitas/jQuery-Ajax-Chain/issues", | ||
"email": "[email protected]" | ||
}, | ||
"engines": { | ||
"node": ">= 0.8.0" | ||
}, | ||
"scripts": { | ||
"test": "grunt qunit" | ||
}, | ||
"dependencies": { | ||
"jquery": ">=1.5.0" | ||
}, | ||
"devDependencies": { | ||
"grunt-contrib-jshint": "~0.10.0", | ||
"grunt-contrib-qunit": "~0.2.0", | ||
"grunt-contrib-concat": "~0.3.0", | ||
"grunt-contrib-uglify": "~0.2.0", | ||
"grunt-contrib-watch": "~0.4.0", | ||
"grunt-contrib-clean": "~0.4.0", | ||
"grunt": "~0.4.5" | ||
} | ||
} | ||
"name": "jquery-ajax-chain", | ||
"description": "jQuery helper class meant to ease up the process of making multiple synchronously chained Ajax calls.", | ||
"keywords": [ | ||
"jquery-plugin", | ||
"javascript", | ||
"ajax", | ||
"chain", | ||
"sequence", | ||
"series", | ||
"waterfall", | ||
"async" | ||
], | ||
"version": "1.0.5", | ||
"dependencies": { | ||
"jquery": ">=1.5.0" | ||
}, | ||
"author": "Andrea Blasio (https://github.com/humana-fragilitas)", | ||
"license": "MIT", | ||
"main": "./dist/jquery.ajax-chain.min.js", | ||
"homepage": "https://github.com/humana-fragilitas", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/humana-fragilitas/jQuery-Ajax-Chain.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/humana-fragilitas/jQuery-Ajax-Chain/issues", | ||
"email": "[email protected]" | ||
}, | ||
"engines": { | ||
"node": ">= 0.8.0" | ||
}, | ||
"scripts": { | ||
"test": "grunt qunit" | ||
}, | ||
"devDependencies": { | ||
"grunt": "~0.4.5", | ||
"grunt-contrib-clean": "~0.4.0", | ||
"grunt-contrib-concat": "~0.3.0", | ||
"grunt-contrib-connect": "^1.0.0", | ||
"grunt-contrib-jshint": "~0.10.0", | ||
"grunt-contrib-qunit": "~0.2.0", | ||
"grunt-contrib-uglify": "~0.2.0", | ||
"grunt-contrib-watch": "~0.4.0", | ||
"install": "^0.6.0", | ||
"npm": "^3.8.2" | ||
} | ||
} |