-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.49 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
{
"name": "teslo",
"version": "0.6.1",
"description": "Elo rating system",
"author": "William Grosset",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/williamgrosset/teslo"
},
"homepage": "https://teslo.dev",
"keywords": [
"typescript",
"elo",
"rating",
"elo-rating",
"elo-rating-system",
"multiplayer",
"games",
"matchmaking",
"leaderboard",
"ranking-system",
"player-stats"
],
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint .",
"format": "prettier --write src/**/*.ts",
"build": "rollup --config",
"clean": "rm -rf ./dist",
"start": "node dist/index.js",
"test": "jest",
"prepublish": "pnpm clean && pnpm build"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"rollup": "^4.29.1",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"jest": {
"preset": "ts-jest"
},
"lint-staged": {
"src/**/*.ts": "prettier --write"
}
}