forked from panaggio/10-minute-real-time-web-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 798 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name" : "10-minute-real-time-web-chat",
"description": "A very small yet powerful example of a real time web chat using Node, Express and Faye.",
"version" : "0.0.0",
"keywords": [ "realtime", "webchat", "example" ],
"maintainers": [{
"name": "Ricardo Panaggio",
"email": "[email protected]"
}],
"contributors": [{
"name": "Ricardo Panaggio",
"email": "[email protected]"
}],
"bugs": "https://github.com/panaggio/10-minute-real-time-web-chat/issues",
"licenses": [{
"type": "AGPLv3",
"url": "https://www.gnu.org/licenses/agpl.html"
}],
"repositories": [{
"type": "git",
"url": "https://github.com/panaggio/10-minute-real-time-web-chat.git"
}],
"dependencies" : {
"express" : "3.0.0rc3",
"faye": "0.8.3"
}
}