-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
35 lines (35 loc) · 964 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
{
"name": "lichess-node-bot",
"version": "1.0.0",
"description": "Lichess bot event and game code example",
"main": "src/Main.js",
"scripts": {
"test": "nyc tap test/*",
"coverage": "nyc --reporter=lcov tap test/*",
"start": "node src/Main.js",
"tournament": "node src/tournament/Main.js",
"build": "echo 'runs directly with node'",
"deps": "npx yarn-check --skip-unused",
"markdownlint": "npx markdownlint-cli2 README.md --fix",
"prettify": "prettier --write --trailing-comma es5 --no-semi {src,test}/**/*.[jt]s dist/*.html"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"moxios": "^0.4.0",
"nock": "13.5.4",
"nyc": "^15.1.0",
"sinon": "17.0.1",
"tap": "^16.3.8",
"tape": "5.7.5"
},
"dependencies": {
"axios": "1.6.8",
"chess.js": "^1.0.0-beta.6",
"express": "4.19.2",
"ndjson": "^2.0.0",
"oboe": "^2.1.5",
"prettier": "3.2.5"
}
}