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
44 lines (44 loc) · 1013 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1013 Bytes
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
{
"name": "footballsimulationengine",
"version": "4.0.0",
"description": "an engine for simulating football matches",
"main": "engine.js",
"scripts": {
"start": "node engine.js",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"test": "nyc --reporter=html mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/GallagherAiden/footballSimulationEngine"
},
"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 <aiden.g@live.co.uk>",
"license": "ISC",
"engines": {
"node": ">=7.6.0"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^7.32.0",
"eslint-config-unu": "^1.2.4",
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
}
}