-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 956 Bytes
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 956 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
35
36
37
38
39
40
41
42
{
"name": "chuck.js",
"author": "logsol <fartman@gmx.de>",
"contributors": [
"Jeena Paradies <spam@jeenaparadies.net> (https://jeena.net)"
],
"description": "Multiplayer browser jump and run game",
"version": "0.1.0",
"homepage": "http://chuck-game.tumblr.com/",
"repository": {
"type": "git",
"url": "https://github.com/logsol/chuck.js"
},
"bugs": {
"url": "https://github.com/logsol/chuck.js/issues",
"email": "fartman@gmx.de"
},
"main": "server.js",
"dependencies": {
"socket.io": "^4.7.4",
"express": "^4.18.2",
"requirejs": "^2.3.6",
"screenfull": "^6.0.2",
"chart.js": "^4.4.0"
},
"devDependencies": {
"nodemon": "^3.0.2"
},
"optionalDependencies": {},
"engines": {
"node": ">=16.0.0"
},
"config": {
"port": "1234"
},
"private": true,
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"prestart": "scripts/build.sh"
}
}