-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 928 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
28
29
30
31
32
33
34
35
36
37
{
"name": "floorcade",
"version": "0.0.1",
"description": "Multiplayer arcade game server",
"main": "index.js",
"scripts": {
"prod": "node index.js",
"dev": "cross-env DEV=true nodemon ./index.js 127.0.0.1",
"postinstall": "node install-games.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hgcummings/floorcade.git"
},
"author": "hgcummings",
"license": "MIT",
"bugs": {
"url": "https://github.com/hgcummings/floorcade/issues"
},
"homepage": "https://github.com/hgcummings/floorcade#readme",
"dependencies": {
"cross-spawn": "^6.0.5",
"js-pixel-fonts": "1.3.0",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"simple-git": "^3.5.0"
},
"optionalDependencies": {
"node-hid": "^0.7.2",
"onoff": "^3.1.0"
},
"devDependencies": {
"ansi": "^0.3.1",
"cross-env": "^5.2.0",
"nodemon": "^1.18.2"
}
}