From ff8ccb447ef765c6377b37dae488cf53b00d8ef9 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 6 Aug 2013 12:20:03 -0700 Subject: [PATCH] ready to publish as beta --- README.md | 3 ++- package.json | 30 ++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 package.json diff --git a/README.md b/README.md index ef9c637..b6616e9 100644 --- a/README.md +++ b/README.md @@ -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`. diff --git a/package.json b/package.json new file mode 100644 index 0000000..f806908 --- /dev/null +++ b/package.json @@ -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 (http://coolaj86.info/)", + "license": "Apache2", + "bugs": { + "url": "https://github.com/FuturesJS/forEachAsync/issues" + } +}