-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.19 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
79
80
81
{
"name": "tiebreak",
"version": "0.4.0",
"description": "Calculation of chess tournament tiebreaks compliant with FIDE regulations",
"keywords": [
"chess",
"fide",
"tiebreak",
"tiebreaker",
"ranking",
"buchholz"
],
"repository": {
"type": "git",
"url": "git+https://github.com/marceljuenemann/tiebreak.git"
},
"author": {
"name": "Marcel Juenemann",
"email": "[email protected]",
"url": "https://marcel.world/"
},
"type": "module",
"exports": {
".": {
"import": "./build/index.js",
"types": "./build/src/index.d.ts"
}
},
"types": "./build/src/index.d.ts",
"license": "MIT",
"engines": {
"node": ">=18.15.0",
"npm": ">=9.5.0"
},
"volta": {
"node": "18.15.0",
"npm": "10.2.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && npm run type:dts && npm run build:main",
"build:main": "tsx ./scripts/build.ts",
"clean": "tsx ./scripts/clean.ts",
"type:dts": "tsc --emitDeclarationOnly --project tsconfig.build.json",
"type:check": "tsc --noEmit",
"format": "prettier \"src/**/*.ts\" --write",
"format:check": "prettier \"src/**/*.ts\" --check",
"lint": "eslint src --ext .ts --fix",
"lint:check": "eslint src --ext .ts",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:setup": "tsx ./scripts/test-setup.ts",
"spell:check": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
"cz": "cz",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@types/node": "^20.5.0",
"@types/prompts": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"c8": "^8.0.1",
"cspell": "^7.0.0",
"csv-parse": "^5.5.5",
"esbuild": "^0.19.2",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.0",
"nyc": "^15.1.0",
"prettier": "^3.0.2",
"source-map-support": "^0.5.21",
"tsx": "^4.7.1",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
}
}