-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.68 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
78
79
80
81
82
83
84
85
86
87
{
"name": "@civ-clone/simple-ai-client",
"version": "0.1.2",
"repository": "[email protected]:civ-clone/simple-ai-client.git",
"keywords": [
"typescript",
"civilization"
],
"author": "dom111 <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npm run prettier:format && npm run ts:compile",
"prettier:check": "prettier --config .prettierrc '**/*.ts'",
"prettier:format": "prettier --config .prettierrc '**/*.ts' --write",
"test": "ts-mocha ./tests/*.test.ts",
"test:coverage": "c8 ts-mocha ./tests/*.test.ts",
"ts:compile": "tsc --build tsconfig.json"
},
"devDependencies": {
"@civ-clone/civ1-city-happiness": "github:civ-clone/civ1-city-happiness",
"@civ-clone/civ1-civilization": "github:civ-clone/civ1-civilization",
"@civ-clone/civ1-diplomacy": "github:civ-clone/civ1-diplomacy",
"@civ-clone/civ1-game-year": "github:civ-clone/civ1-game-year",
"@civ-clone/civ1-goody-hut": "github:civ-clone/civ1-goody-hut",
"@civ-clone/civ1-player": "github:civ-clone/civ1-player",
"@civ-clone/civ1-spaceship": "github:civ-clone/civ1-spaceship",
"@civ-clone/civ1-trade-rate": "github:civ-clone/civ1-trade-rate",
"@civ-clone/civ1-treasury": "github:civ-clone/civ1-treasury",
"@civ-clone/civ1-wonder": "github:civ-clone/civ1-wonder",
"@civ-clone/core-civilization": "^0.1.0",
"@civ-clone/core-game-year": "^0.1.0",
"@civ-clone/core-player": "^0.1.0",
"@civ-clone/core-player-world": "^0.1.0",
"@civ-clone/core-spaceship": "^0.1.6",
"@civ-clone/core-strategy": "^0.1.0",
"@civ-clone/core-trade-rate": "^0.1.0",
"@civ-clone/core-turn-based-game": "^0.1.0",
"@civ-clone/simple-world-generator": "github:civ-clone/simple-world-generator",
"@civ-clone/simple-world-path": "github:civ-clone/simple-world-path",
"@types/chai": "^4.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^16.0.0",
"c8": "^7.0.0",
"chai": "^4.0.0",
"github": "civ-clone/civ1-diplomacy",
"mocha": "^10.0.0",
"prettier": "^2.0.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.0.0"
},
"dependencies": {
"@civ-clone/base-city-yield-gold": "^0.1.0",
"@civ-clone/base-player-action-end-turn": "^0.1.0",
"@civ-clone/base-unit-type-naval-transport": "^0.1.0",
"@civ-clone/civ1-city": "github:civ-clone/civ1-city",
"@civ-clone/civ1-city-improvement": "github:civ-clone/civ1-city-improvement",
"@civ-clone/civ1-government": "github:civ-clone/civ1-government",
"@civ-clone/civ1-science": "github:civ-clone/civ1-science",
"@civ-clone/civ1-unit": "github:civ-clone/civ1-unit",
"@civ-clone/core-ai-client": "^0.1.0",
"@civ-clone/core-city": "^0.1.0",
"@civ-clone/core-city-build": "^0.1.0",
"@civ-clone/core-city-growth": "^0.1.0",
"@civ-clone/core-city-improvement": "^0.1.0",
"@civ-clone/core-client": "^0.1.0",
"@civ-clone/core-diplomacy": "^0.1.0",
"@civ-clone/core-engine": "^0.1.0",
"@civ-clone/core-goody-hut": "^0.1.0",
"@civ-clone/core-government": "^0.1.0",
"@civ-clone/core-registry": "^0.1.0",
"@civ-clone/core-rule": "^0.1.0",
"@civ-clone/core-science": "^0.1.0",
"@civ-clone/core-terrain": "^0.1.0",
"@civ-clone/core-terrain-feature": "^0.1.0",
"@civ-clone/core-tile-improvement": "^0.1.0",
"@civ-clone/core-treasury": "^0.1.0",
"@civ-clone/core-turn-based-game": "^0.1.0",
"@civ-clone/core-unit": "^0.1.0",
"@civ-clone/core-unit-improvement": "^0.1.0",
"@civ-clone/core-wonder": "^0.1.0",
"@civ-clone/core-world": "^0.1.0",
"@civ-clone/core-world-path": "^0.1.0",
"@civ-clone/core-yield": "^0.1.0",
"@civ-clone/library-diplomacy": "^0.1.0",
"@civ-clone/library-unit": "^0.1.0"
}
}