forked from Superfresh/demochat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.63 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "lets-chat",
"version": "0.4.5",
"description": "A chat app for small teams.",
"license": "MIT",
"main": "app.js",
"scripts": {
"start": "node $DEBUGGER app.js",
"stop": "pkill --signal SIGINT letschat",
"prestart": "migroose",
"migrate": "migroose",
"test": "mocha ./app/tests"
},
"engine": {
"node": "0.10.x",
"npm": "2.1.x"
},
"repository": {
"type": "git",
"url": "git://github.com/sdelements/lets-chat.git"
},
"author": {
"name": "Houssam Haidar",
"email": "[email protected]"
},
"contributors": [
{
"name": "Simon Bartlett",
"email": "[email protected]"
},
{
"name": "Shawn Gustaw",
"email": "[email protected]"
},
{
"name": "Geoff Whittington",
"email": "[email protected]"
},
{
"name": "Hanif Virani",
"email": "[email protected]"
},
{
"name": "Jeffery Bain",
"email": "[email protected]"
},
{
"name": "Ramanan Sivaranjan",
"email": "[email protected]"
},
{
"name": "Sonny Piers",
"email": "[email protected]"
}
],
"keywords": [
"chat",
"group chat"
],
"bugs": {
"url": "https://github.com/sdelements/lets-chat/issues"
},
"homepage": "https://github.com/sdelements/lets-chat",
"dependencies": {
"async": "^1.4.2",
"bcryptjs": "~2.2.2",
"body-parser": "^1.14.0",
"colors": "~1.1.2",
"compression": "^1.5.2",
"connect-assets": "^5.0.1",
"connect-mongo": "^0.8.2",
"cookie-parser": "^1.4.0",
"debug": "^2.2.0",
"express.oi": "^0.0.19",
"helmet": "^0.11.0",
"i18n": "^0.5.0",
"js-yaml": "^3.4.2",
"less": "2.6.1",
"lodash": "^3.10.1",
"md5": "^2.0.0",
"migroose": "^0.5.0",
"migroose-cli": "^0.1.0",
"moment": "^2.10.6",
"mongoose": "~4.1.8",
"mongoose-unique-validator": "~0.4.1",
"mongoose-validate": "0.0.5",
"multer": "^0.1.8",
"node-uuid": "^1.4.3",
"node-xmpp-server": "2.1.0",
"node_hash": "^0.2.0",
"nunjucks": "^1.3.4",
"on-finished": "^2.3.0",
"passport": "0.2.2",
"passport-http": "0.2.2",
"passport-http-bearer": "1.0.1",
"passport-local": "1.0.0",
"passport.socketio": "3.5.1",
"require-directory": "^2.1.1",
"require-tree": "^1.1.1"
},
"devDependencies": {
"eslint": "^1.10.3",
"grunt": "~0.4.5",
"grunt-bower": "~0.20.0",
"grunt-bower-task": "~0.4.0",
"gulp": "^3.9.0",
"gulp-debug": "^2.1.2",
"gulp-istanbul": "^0.10.3",
"gulp-mocha": "^2.2.0",
"istanbul": "^0.4.2",
"mocha": "^2.3.4",
"shortid": "^2.2.4"
}
}