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
|
{
"name": "carcassonne-engine",
"version": "0.0.0",
"main": "index.ts",
"author": "eug-vs <eugene@eug-vs.xyz>",
"license": "MIT",
"scripts": {
"start": "ts-node index.ts",
"test": "mocha -r ts-node/register **/*.test.ts"
},
"dependencies": {
"debug": "^4.3.3",
"lodash": "^4.17.21",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"devDependencies": {
"@types/assert": "^1.5.6",
"@types/debug": "^4.1.7",
"@types/lodash": "^4.14.179",
"@types/mocha": "^9.1.0",
"assert": "^2.0.0",
"mocha": "^9.2.1",
"tslib": "^2.3.1"
}
}
|