From 2346467b307d81d33d7f0e161aeaaf506e25d4f2 Mon Sep 17 00:00:00 2001 From: mscdex Date: Fri, 28 Jun 2013 13:15:27 -0400 Subject: [PATCH] update package.json --- package.json | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index c98017c..d628a1b 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,17 @@ { "name": "imap", - "version": "0.7.12", + "version": "0.8.0", "author": "Brian White ", "description": "An IMAP module for node.js that makes communicating with IMAP servers easy", - "main": "./lib/imap", - "engines": { "node" : ">=0.6.0" }, + "main": "./lib/Connection", "dependencies": { - "utf7": "1.0.0" + "utf7": "1.0.0", + "readable-stream": "1.0.2" }, + "scripts": { + "test": "node test/test.js" + }, + "engines": { "node": ">=0.8.0" }, "keywords": [ "imap", "mail", "email", "reader", "client" ], "licenses": [ { "type": "MIT", "url": "http://github.com/mscdex/node-imap/raw/master/LICENSE" } ], "repository": { "type": "git", "url": "http://github.com/mscdex/node-imap.git" } -} \ No newline at end of file +}