From 6e7b0b0a9c9e1993fee7ed9366755ff7f4991a96 Mon Sep 17 00:00:00 2001 From: Peter 'Pita' Martischka Date: Sun, 8 May 2011 19:10:42 +0100 Subject: [PATCH] Added a package.json, now installable via 'npm ep-lite' and startable via 'ep-lite'. Fixed #6 --- package.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 000000000..92a775b9b --- /dev/null +++ b/package.json @@ -0,0 +1,14 @@ +{ + "name" : "ep-lite", + "description" : "A Etherpad based on node.js", + "url" : "https://github.com/Pita/etherpad-lite", + "keywords" : ["etherpad", "realtime", "collaborative", "editor"], + "author" : "Peter 'Pita' Martischka ", + "dependencies" : { + "socket.io" : ">=0.6.17" + }, + "version" : "0.0.1", + "bin" : { + "ep-lite" : "./bin/run.sh" + } +}