-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 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
39
40
41
42
43
44
45
46
{
"name": "tournament-pairings",
"version": "1.6.0",
"description": "Functions to generate pairings for tournaments ",
"main": "./dist/index.js",
"files": [
"dist/**/*"
],
"type": "module",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/* && tsc -p tsconfig.json && rollup --config rollup.config.ts --configPlugin typescript",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slashinfty/tournament-pairings.git"
},
"keywords": [
"elimination",
"roundrobin",
"swiss",
"pairings",
"tournament"
],
"author": "Matt Braddock",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chai": "^4.3.17",
"@types/edmonds-blossom": "^1.0.4",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.0",
"chai": "^5.1.1",
"mocha": "^10.7.3",
"rollup": "^4.21.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4"
},
"dependencies": {
"edmonds-blossom-fixed": "^1.0.1"
}
}