-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.05 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
{
"name": "teslo",
"version": "0.5.2",
"description": "Elo rating calculator",
"author": "William Grosset",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/williamgrosset/teslo"
},
"keywords": [
"typescript",
"elo",
"rating",
"elo-rating",
"elo rating",
"calculator",
"multiplayer",
"games",
"chess"
],
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"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.12",
"jest": "^29.7.0",
"rollup": "^4.9.6",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"jest": {
"preset": "ts-jest"
}
}