-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1016 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "go-glicko",
"version": "1.1.0",
"description": "A TypeScript/JavaScript implementation of Glicko2 algorithm.",
"tags": [
"glicko",
"glicko2",
"glicko-2",
"mmr",
"elo",
"matchmaking rating",
"rating",
"ranking",
"statistics",
"math",
"multiplayer",
"sports",
"algorithm"
],
"main": "./lib/Glicko2.js",
"types": "./lib/Glicko2.d.ts",
"repository": "https://github.com/MatthewSH/go-glicko.git",
"author": "Matthew Hatcher <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest",
"compile": "./node_modules/.bin/tsc",
"prepublish": "npm run compile"
},
"files": [
"/lib",
"LICENSE",
"README.md"
],
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.19",
"@types/uuid": "^8.3.0",
"jest": "^26.6.3",
"nanobench": "^2.1.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"dependencies": {
"uuid": "^8.3.2"
}
}