thelounge/package.json

33 lines
551 B
JSON
Raw Normal View History

2014-03-04 17:31:52 +01:00
{
2014-03-07 00:17:08 +01:00
"name": "chat",
2014-03-24 12:30:28 +01:00
"description": "Web client/server IRC chat",
2014-03-24 11:53:40 +01:00
"version": "0.1.0",
2014-03-04 18:22:06 +01:00
"author": {
"name": "Mattias Erming",
"email": "mattias@mattiaserming.com"
},
2014-03-04 17:31:52 +01:00
"dependencies": {
2014-03-07 22:24:02 +01:00
"backbone": "1.1.2",
2014-03-04 17:31:52 +01:00
"connect": "2.13.0",
2014-03-06 19:02:43 +01:00
"irc": "0.3.6",
2014-03-16 17:19:53 +01:00
"lodash": "2.4.1",
2014-03-07 00:17:08 +01:00
"moment": "2.5.1",
2014-03-04 18:22:06 +01:00
"socket.io": "0.9.16"
2014-03-07 00:17:08 +01:00
},
"keywords": [
"chat",
"irc",
"server",
"web",
"browser"
],
2014-03-24 11:53:40 +01:00
"main": "./index.js",
2014-03-16 22:32:26 +01:00
"scripts": {
2014-03-24 12:30:28 +01:00
"start": "nodemon index.js"
2014-03-16 22:32:26 +01:00
},
2014-03-07 00:17:08 +01:00
"repository": {
"type": "git",
"url": "https://github.com/erming/chat.git"
2014-03-04 17:31:52 +01:00
}
}