GildedRose-Refactoring-Kata/TypeScript/package.json
2025-07-23 14:51:12 +02:00

26 lines
630 B
JSON

{
"name": "gilded-rose-kata",
"version": "1.0.0",
"description": "Gilded Rose kata in TypeScript",
"scripts": {
"precompile": "rimraf app/**/*.js test/**/*.js",
"compile": "tsc",
"pretest": "rimraf app/**/*.js test/**/*.js",
"test": "jest",
"test:watch": "jest --watchAll"
},
"license": "MIT",
"private": true,
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"jest": "^29.4.3",
"rimraf": "^4.1.2",
"source-map-support": "^0.5.20",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.4.4"
}
}