-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.41 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
{
"name": "@civ-clone/core-unit",
"version": "0.1.17",
"repository": "[email protected]:civ-clone/core-unit.git",
"keywords": [
"typescript",
"civilization"
],
"author": "dom111 <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "npm run ts:compile && npm run prettier:format",
"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/core-terrain": "^0.1.0",
"@civ-clone/core-world-generator": "^0.1.0",
"@types/chai": "^4.0.0",
"@types/chai-spies": "^1.0.0",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.0",
"c8": "^7.0.0",
"chai": "^4.0.0",
"chai-spies": "^1.0.0",
"mocha": "^9.0.0",
"prettier": "^2.0.0",
"ts-mocha": "^9.0.0",
"typescript": "^4.0.0"
},
"dependencies": {
"@civ-clone/core-city": "^0.1.0",
"@civ-clone/core-city-build": "^0.1.3",
"@civ-clone/core-data-object": "^0.1.0",
"@civ-clone/core-player": "^0.1.0",
"@civ-clone/core-registry": "^0.1.0",
"@civ-clone/core-rule": "^0.1.0",
"@civ-clone/core-turn-based-game": "^0.1.0",
"@civ-clone/core-world": "^0.1.0",
"@civ-clone/core-yield": "^0.1.0"
}
}