forked from philihp/openskill.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.77 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "openskill",
"version": "4.0.2",
"description": "Weng-Lin Bayesian approximation method for online skill-ranking.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup",
"lint": "eslint .",
"prepare": "husky && npm run build",
"release": "np",
"test": "jest",
"test:coverage": "npm run test -- --coverage"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/dist",
"!/dist/**/__tests__/*"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/philihp/openskill.js.git"
},
"keywords": [
"ranking",
"trueskill",
"bayesian"
],
"author": "Philihp Busby <philihp@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/philihp/openskill.js/issues"
},
"homepage": "https://github.com/philihp/openskill.js#readme",
"devDependencies": {
"@eslint/js": "9.7.0",
"@philihp/prettier-config": "1.0.0",
"@tsconfig/recommended": "1.0.7",
"@types/jest": "29.5.12",
"esbuild": "0.23.0",
"esbuild-jest": "0.5.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.6.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.7",
"tsup": "8.1.0",
"typescript": "5.5.3",
"typescript-eslint": "7.16.0"
},
"prettier": "@philihp/prettier-config",
"dependencies": {
"@types/gaussian": "1.2.2",
"@types/ramda": "0.30.1",
"gaussian": "1.3.0",
"ramda": "0.30.1",
"sort-unwind": "3.0.1"
}
}