-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·34 lines (34 loc) · 883 Bytes
/
package.json
File metadata and controls
executable file
·34 lines (34 loc) · 883 Bytes
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
{
"name": "chatjs-server",
"version": "1.0.0",
"description": "Server end for chat.js",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openudge/chatjs-server.git"
},
"keywords": [
"chat.js",
"chat.js-server"
],
"author": "nalinc <nalin.chhibber@gmail.com> (http://nalinc.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/openudge/chatjs-server/issues"
},
"homepage": "https://github.com/openudge/chatjs-server#readme",
"dependencies": {
"express": "^4.11.2",
"grunt-express-server": "^0.4.19",
"socket.io": "^1.3.3"
},
"devDependencies": {
"grunt": ">= 0.1.13",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-watch": "^0.6.1"
}
}