-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 KB
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
{
"name": "@rocambille/elo",
"version": "2.1.8",
"description": "Enrich your objects with Elo rating.",
"keywords": [
"elo",
"rating",
"ranking",
"chess",
"go",
"game"
],
"homepage": "https://github.com/rocambille/elo#readme",
"bugs": {
"url": "https://github.com/rocambille/elo/issues"
},
"license": "MIT",
"author": "rocambille <rocambille@gmail.com>",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rocambille/elo.git"
},
"scripts": {
"prepare": "git config core.hooksPath .git-hooks || true",
"biome:check": "biome check --error-on-warnings .",
"biome:fix": "biome check --write --error-on-warnings .",
"build": "tsc && mv ./dist/index.js ./dist/index.cjs && tsc -m es6 && mv ./dist/index.js ./dist/index.mjs",
"prepublish": "npm run build",
"test": "npx jest",
"types:check": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2.2.5",
"@types/jest": "^30.0.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.4",
"typescript": "^5.9.3"
}
}