-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.23 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
{
"name": "glicko2.ts",
"description": "Implementation of the Glicko2 ranking system in typescript",
"keywords": [
"glicko",
"utilities",
"ranking",
"glicko2"
],
"version": "1.0.4",
"license": "MIT",
"main": "dist/glicko2.js",
"types": "dist/glicko2.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/animafps/glicko2.ts.git"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.4.10",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"semantic-release": "^17.4.7",
"ts-jest": "^27.0.5",
"ts-node": "^10.1.0",
"typedoc": "^0.21.5",
"typedoc-plugin-markdown": "^3.10.4",
"typescript": "^4.3.5"
},
"scripts": {
"doc": "typedoc --out docs --readme none glicko2.ts",
"prepare": "tsc",
"lint": "eslint glicko2.ts",
"lint:fix": "eslint glicko2.ts --fix",
"prettier": "prettier -c glicko2.ts",
"test": "jest",
"test:coverage": "jest --collectCoverage"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "changelog.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"changelog.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}