Main module fixed

This commit is contained in:
2015-08-02 20:21:53 +02:00
parent deb75f0905
commit c241c8987e
2 changed files with 28 additions and 0 deletions

7
README.md Normal file
View File

@@ -0,0 +1,7 @@
IO-PROMISE
==========
Wrapping of io.js modules asynchronous functions with promises
Currently only fs module is wrapped.

21
package.json Normal file
View File

@@ -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"
}