Added a package.json, now installable via 'npm ep-lite' and startable via 'ep-lite'. Fixed #6

This commit is contained in:
Peter 'Pita' Martischka 2011-05-08 19:10:42 +01:00
parent d003aaad44
commit 6e7b0b0a9c
1 changed files with 14 additions and 0 deletions

14
package.json Normal file
View File

@ -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 <petermartischka@googlemail.com>",
"dependencies" : {
"socket.io" : ">=0.6.17"
},
"version" : "0.0.1",
"bin" : {
"ep-lite" : "./bin/run.sh"
}
}