From c241c8987e3b2107b96c5f052b4f5ac6f7936ba1 Mon Sep 17 00:00:00 2001 From: boudin Date: Sun, 2 Aug 2015 20:21:53 +0200 Subject: [PATCH] Main module fixed --- README.md | 7 +++++++ package.json | 21 +++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 README.md create mode 100644 package.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..b172d48 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +IO-PROMISE +========== + +Wrapping of io.js modules asynchronous functions with promises + +Currently only fs module is wrapped. + diff --git a/package.json b/package.json new file mode 100644 index 0000000..3046097 --- /dev/null +++ b/package.json @@ -0,0 +1,21 @@ +{ + "name": "io-promise", + "version": "1.0.0", + "description": "Asynchronous functions wrapped in promises", + "main": "lib/io-promise.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://lab.cherboiche.org/iojs/io-promise.git" + }, + "keywords": [ + "module", + "iojs", + "promise", + "fs" + ], + "author": "boudin", + "license": "GPL-3.0" +}