From 930635818653e1346ebac4f8bd614ea964514778 Mon Sep 17 00:00:00 2001 From: Darren Date: Mon, 26 Dec 2011 19:09:20 +0000 Subject: [PATCH] Included the NPM package.json file --- README.md | 21 ++++++++------------- package.json | 10 ++++++++++ 2 files changed, 18 insertions(+), 13 deletions(-) create mode 100644 package.json diff --git a/README.md b/README.md index ec69ca0..9aa1917 100755 --- a/README.md +++ b/README.md @@ -1,25 +1,20 @@ # Installation -* Install the dependencies +* Download the Kiwi source or clone the git repository: + $ git clone git@github.com:prawnsalad/KiwiIRC.git - $npm install jade - - $npm install node-static - - $npm install uglify-js - - $npm install socket.io - - $npm install socket.io-client +* Install the dependancies: + $ npm install * If you're using SSL, create your certificate and key, place it in the server folder. -* Edit the configuration file +* Edit the configuration file as needed - $nano server/config.json + $ nano server/config.json # Running - $node server/kiwi.js +From the source folder: + $ node server/kiwi.js # Bugs Report bugs using the issue tracker on github: https://github.com/prawnsalad/KiwiIRC/issues diff --git a/package.json b/package.json new file mode 100644 index 0000000..a4b9437 --- /dev/null +++ b/package.json @@ -0,0 +1,10 @@ +{ + "name": "KiwiIRC", + "version": "0.5.0", + "dependencies": { + "jade": "0.19.0", + "node-static": "0.5.9", + "uglify-js": "1.2.3", + "socket.io": "0.8.7" + } +} \ No newline at end of file -- 2.25.1