forked from uroshekic/racing-game
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 856 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 856 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
{
"name": "racing-game-server",
"version": "0.0.1",
"description": "a node.js server for the multiplayer version of the racing game",
"main": "server/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GPHS-Code-Club/racing-game.git"
},
"author": "Joel Simpson <joel.simpson@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/GPHS-Code-Club/racing-game/issues"
},
"homepage": "https://github.com/GPHS-Code-Club/racing-game#readme",
"dependencies": {
"http": "^0.0.1-security",
"http-server": "^0.12.3",
"isomorphic-ws": "^4.0.1",
"pretty-bytes": "^5.6.0",
"readline": "^1.3.0",
"websocket": "^1.0.33",
"ws": "^7.4.3"
},
"devDependencies": {
"jshint": "^2.12.0"
}
}