Shuo/package.json

33 lines
551 B
JSON
Raw Normal View History

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