init project

This commit is contained in:
2025-01-31 22:26:59 +01:00
commit ef133747bc
5 changed files with 1847 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "typescript-katas",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "mocha -r ts-node/register **/tests.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.0",
"chai": "^5.1.2",
"mocha": "^11.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}