-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 792 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 792 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
{
"name": "lichess-node-bot",
"version": "1.0.0",
"description": "Lichess bot event and game code flow example",
"main": "src/Main.js",
"scripts": {
"test": "nyc tap test/*",
"start": "node src/Main.js",
"tournament": "node src/tournament/Main.js",
"build": "webpack",
"deps": "npx yarn-check --skip-unused"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"coveralls": "^3.1.1",
"moxios": "^0.4.0",
"nock": "^10.0.6",
"nyc": "^15.1.0",
"sinon": "^9.0.2",
"tap": "^14.10.7",
"tape": "^4.13.2",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"axios": "^0.21.4",
"chess.js": "^0.12.0",
"express": "^4.17.3",
"ndjson": "^2.0.0",
"oboe": "^2.1.5"
}
}