summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolan McMahon <caolan.mcmahon@gmail.com>2013-05-01 03:11:14 -0700
committerCaolan McMahon <caolan.mcmahon@gmail.com>2013-05-01 03:11:14 -0700
commit6b4709e986c37ddba094c8338333ac22d7a657de (patch)
tree9eecfa34de7d4091f3c98a9812b809589611ddcc
parentd32dc25861329a47b38dfd5c96b8f76cebe22477 (diff)
parent2960736b397ffad94c1d25f177dc87aef311078d (diff)
downloadasync-6b4709e986c37ddba094c8338333ac22d7a657de.tar.gz
Merge pull request #193 from superjoe30/component
ability to use async as a component
-rw-r--r--README.md2
-rw-r--r--component.json11
2 files changed, 12 insertions, 1 deletions
diff --git a/README.md b/README.md
index c5e8b51..257def3 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
Async is a utility module which provides straight-forward, powerful functions
for working with asynchronous JavaScript. Although originally designed for
use with [node.js](http://nodejs.org), it can also be used directly in the
-browser.
+browser. Also supports [component](https://github.com/component/component).
Async provides around 20 functions that include the usual 'functional'
suspects (map, reduce, filter, each…) as well as some common patterns
diff --git a/component.json b/component.json
new file mode 100644
index 0000000..bbb0115
--- /dev/null
+++ b/component.json
@@ -0,0 +1,11 @@
+{
+ "name": "async",
+ "repo": "caolan/async",
+ "description": "Higher-order functions and common patterns for asynchronous code",
+ "version": "0.1.23",
+ "keywords": [],
+ "dependencies": {},
+ "development": {},
+ "main": "lib/async.js",
+ "scripts": [ "lib/async.js" ]
+}