-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.64 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
{
"name": "glicko2.ts",
"description": "Implementation of the Glicko2 ranking system in Typescript",
"keywords": [
"glicko",
"utilities",
"ranking",
"glicko2"
],
"version": "1.3.2",
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
},
"author": {
"name": "Anima.",
"url": "https://animafps.xyz"
},
"bugs": {
"url": "https://github.com/animafps/glicko2.ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/animafps/glicko2.ts.git"
},
"homepage": "https://glicko2.js.org",
"files": [
"dist",
"!dist/*.tsbuildinfo"
],
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^16.11.26",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"cz-conventional-changelog": "^3.3.0",
"denoify": "^0.11.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tsup": "^5.12.3",
"typedoc": "^0.22.13",
"typescript": "^4.6.3"
},
"scripts": {
"prepare": "tsup",
"lint": "eslint . --ext ts",
"lint:fix": "eslint . --fix --ext ts",
"format": "prettier --write '**.ts'",
"test": "jest",
"test:coverage": "jest --collectCoverage",
"release": "standard-version",
"build": "tsup && denoify",
"docs": "typedoc"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"packageManager": "[email protected]",
"dependencies": {
"standard-version": "^9.3.2"
}
}