-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
78 lines (78 loc) · 1.92 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
74
75
76
77
78
{
"name": "openskill",
"version": "4.1.0",
"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"
},
"./models": {
"require": "./dist/models/index.cjs",
"import": "./dist/models/index.js",
"types": "./dist/models/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.18.0",
"@philihp/prettier-config": "1.0.0",
"@tsconfig/recommended": "1.0.8",
"@types/jest": "29.5.14",
"esbuild": "0.24.2",
"esbuild-jest": "0.5.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-prettier": "5.2.3",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.4.1",
"tsup": "8.3.5",
"typescript": "5.7.3",
"typescript-eslint": "8.20.0"
},
"prettier": "@philihp/prettier-config",
"dependencies": {
"@types/gaussian": "1.2.2",
"@types/ramda": "0.30.2",
"gaussian": "1.3.0",
"ramda": "0.30.1",
"sort-unwind": "3.1.0"
}
}