-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.6 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "glicko2-lite",
"version": "4.0.0",
"description": "Barebones Glicko-2 implementation",
"keywords": [
"statistics"
],
"repository": "github:kenany/glicko2-lite",
"license": "MIT",
"author": "Kenan Yildirim <kenan@kenany.me> (https://kenany.me/)",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": "18 || >=20"
},
"files": [
"CHANGELOG.md",
"index.d.ts",
"index.js",
"LICENSE.txt"
],
"directories": {
"test": "test"
},
"scripts": {
"clean": "rimraf --glob test/**/*.d.ts *.d.ts",
"lint": "eslint .",
"release": "semantic-release",
"type-coverage": "type-coverage --at-least 100 --detail --strict",
"prebuild": "npm run clean",
"build": "tsc",
"pretest": "npm run build",
"test": "tape test/index.js",
"posttest": "npm run lint && npm run type-coverage",
"prepack": "npm run build"
},
"dependencies": {},
"devDependencies": {
"@kenan/eslint-config": "^11.1.11",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node18": "^18.2.4",
"@types/almost-equal": "^1.1.3",
"@types/lodash.isfunction": "^3.0.9",
"@types/tape": "^5.6.4",
"almost-equal": "^1.1.0",
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.4",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.57.1",
"glicko2": "^1.2.1",
"glicko2.ts": "^1.3.2",
"lodash.isfunction": "^3.0.9",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"tape": "^5.9.0",
"type-coverage": "^2.29.7",
"typescript": "^5.6.3"
}
}