ready to publish as beta
This commit is contained in:
parent
5fecd1cb3f
commit
ff8ccb447e
|
@ -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`.
|
||||
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue