-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 827 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 827 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
{
"name": "javascript-jass-bot",
"version": "0.0.7",
"description": "javascript jass bot for https://github.com/webplatformz/challenge",
"scripts": {
"prestart": "npm i",
"start": "parallelshell \"npm run runBotA\" \"npm run runBotA\" \"npm run runBotB\" \"npm run runBotB\"",
"runBotA": "node examples/simple-bot-A.js",
"runBotB": "node examples/simple-bot-B.js"
},
"dependencies": {
"ws": "^0.8.0"
},
"devDependencies": {
"parallelshell": "^2.0.0"
},
"author": "Stefan Jaeger",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://stefanjaeger@github.com/stefanjaeger/javascript-jass-bot.git"
},
"bugs": {
"url": "https://github.com/stefanjaeger/javascript-jass-bot/issues"
},
"homepage": "https://github.com/stefanjaeger/javascript-jass-bot"
}