-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 733 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "python-mini-metro",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.6.0"
},
"scripts": {
"setup:civ-engine": "node scripts/civ-engine-setup.mjs",
"pretest": "node scripts/civ-engine-setup.mjs --verify-only",
"preplaytest:verify": "node scripts/civ-engine-setup.mjs --verify-only",
"preplaytest:recursive": "node scripts/civ-engine-setup.mjs --verify-only --allow-dirty",
"test": "node scripts/civ-engine-guard.mjs test",
"playtest:verify": "node scripts/civ-engine-guard.mjs playtest:verify",
"playtest:recursive": "node scripts/civ-engine-guard.mjs playtest:recursive"
},
"dependencies": {
"civ-engine": "file:.civ-engine-pin"
}
}