ready to publish as beta

This commit is contained in:
AJ ONeal 2013-08-06 12:20:03 -07:00
parent 5fecd1cb3f
commit ff8ccb447e
2 changed files with 32 additions and 1 deletions

View File

@ -4,7 +4,8 @@ forEachAsync
As I do every few years, I decided to rewrite FuturesJS.
This year's remake is extremely lightweight.
v3.0 - Diet Cola Edition (not yet published to npm - and don't worry, v2.x is still supported)
v3.x - Diet Cola Edition
(published on npm as beta, so you must use the @3.x - and don't worry, v2.x is still supported)
Analogous to `[].forEach`, but handles items asynchronously with a final callback passed to `then`.

30
package.json Normal file
View File

@ -0,0 +1,30 @@
{
"name": "forEachAsync",
"version": "3.0.0-rc1",
"description": "A node- and browser-ready async counterpart of Array.prototype.forEach",
"main": "forEachAsync.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/FuturesJS/forEachAsync.git"
},
"keywords": [
"forEach",
"for",
"forEachAsync",
"async",
"futures",
"futuresjs",
"each"
],
"author": "AJ ONeal <coolaj86@gmail.com> (http://coolaj86.info/)",
"license": "Apache2",
"bugs": {
"url": "https://github.com/FuturesJS/forEachAsync/issues"
}
}