-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.33 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
{
"name": "tic-tac-client",
"version": "1.0.0",
"description": "A NodeJS WebSockets Tic Tac Toe Client",
"main": "index.mjs",
"engines": {
"node": "8.11.1"
},
"scripts": {
"team1": "node --experimental-modules tournament.mjs --team 1",
"team2": "node --experimental-modules tournament.mjs --team 2",
"team3": "node --experimental-modules tournament.mjs --team 3",
"team4": "node --experimental-modules tournament.mjs --team 4",
"team5": "node --experimental-modules tournament.mjs --team 5",
"team6": "node --experimental-modules tournament.mjs --team 6",
"team7": "node --experimental-modules tournament.mjs --team 7",
"team8": "node --experimental-modules tournament.mjs --team 8",
"tournament": "concurrently \"npm run team1\" \"npm run team2\" \"npm run team3\" \"npm run team4\" \"npm run team5\" \"npm run team6\" \"npm run team7\" \"npm run team8\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/supernova-at/tic-tac-client.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/supernova-at/tic-tac-client/issues"
},
"homepage": "https://github.com/supernova-at/tic-tac-client#readme",
"dependencies": {
"concurrently": "^4.0.1",
"ws": "6.0.0"
},
"devDependencies": {
"minimist": "^1.2.0"
}
}