forked from GallagherAiden/footballSimulationEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.9 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.9 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "footballsim",
"version": "5.0.0",
"description": "A modernized, TypeScript-first engine for simulating football matches (Fork of footballSimulationEngine)",
"homepage": "https://github.com/eozgit/footballsim",
"files": [
"dist/",
"!dist/test",
"!dist/vitestSetup.*",
"README.md",
"LICENSE"
],
"main": "./dist/engine.js",
"types": "./dist/engine.d.ts",
"release": {
"branches": [
"main"
]
},
"exports": {
".": {
"types": "./dist/engine.d.ts",
"import": "./dist/engine.js"
},
"./lib/*": "./dist/lib/*"
},
"scripts": {
"build": "tsc && tsc-alias",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"format": "prettier --write .",
"lint:check": "eslint .",
"lint": "eslint . --fix",
"stats": "eslint . --format json --stats > lint-stats.json",
"test": "vitest run src/test",
"test:bail": "vitest run src/test --bail 1",
"test:watch": "vitest",
"test:coverage": "vitest run src/test --coverage --coverage.reportsDirectory ./coverage/test/",
"test:precommit": "vitest run --reporter=dot --silent --bail 1",
"prepare": "husky",
"type-check": "tsc --noEmit",
"type-check:coverage": "typescript-coverage-report -o ./coverage/type/ --ignore-files 'coverage/**'",
"coverage:all": "npm run test:coverage && npm run type-check:coverage",
"arch": "depcruise src --config .dependency-cruiser.cjs --output-type err",
"arch:graph": "depcruise src --output-type mermaid > architecture.mmd",
"arch:baseline": "depcruise src --output-type json | jq '.summary.violations' > .dependency-cruiser-known-violations.json",
"arch:check": "depcruise --ignore-known .dependency-cruiser-known-violations.json src",
"release": "standard-version",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"dupes:scan": "jscpd ./src --reporters json --output ./scripts --ignore \"**/*.json\"",
"dupes:whales": "node ./scripts/review-clones.js"
},
"repository": {
"type": "git",
"url": "https://github.com/eozgit/footballsim"
},
"keywords": [
"football",
"football simulation",
"football engine",
"football simulation engine",
"soccer",
"soccer simulation",
"soccer engine",
"soccer simulation engine",
"simulation",
"game",
"football manager",
"footie",
"football management"
],
"author": "Aiden Gallagher",
"license": "ISC",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.3",
"@stylistic/eslint-plugin": "^5.7.0",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"ast-types": "^0.14.2",
"dependency-cruiser": "^17.3.5",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.23.2",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-unicorn": "^62.0.0",
"eslint-plugin-unused-imports": "^4.3.0",
"express": "^5.2.1",
"glob": "^13.0.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"recast": "^0.23.11",
"semantic-release": "^25.0.2",
"semantic-ui-react": "^2.1.5",
"standard-version": "^9.5.0",
"ts-migrate": "^0.1.35",
"ts-morph": "^27.0.2",
"tsc-alias": "^1.8.16",
"type-coverage": "^2.29.7",
"typescript": "^5.9.3",
"typescript-coverage-report": "^1.1.1",
"typescript-eslint": "^8.51.0",
"vitest": "^4.0.16"
},
"lint-staged": {
"**/*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"**/*.{mjs,json,md}": [
"prettier --write"
]
},
"type": "module"
}