-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 740 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 740 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
35
36
37
{
"name": "arpad",
"version": "2.0.0",
"description": "An implementation of the ELO Rating System",
"main": "index.js",
"scripts": {
"test": "node ./test/tests.js"
},
"keywords": [
"elo",
"arpad",
"rating",
"scoring",
"matchmaking",
"chess",
"pvp"
],
"author": "Thomas Hunter II <me@thomashunter.name>",
"license": "MIT",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/tlhunter/node-arpad.git"
},
"bugs": {
"url": "https://github.com/tlhunter/node-arpad/issues"
},
"homepage": "https://github.com/tlhunter/node-arpad",
"devDependencies": {
"tape": "^4.6.3"
},
"engines": {
"node": ">=12.0.0"
}
}