mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-04 09:11:39 +00:00
- moved snapshot tests to better named folder - refactored gilded-rose tests to unit tests in their right location. - mock implementation details in gilded rose test - wrote unit tests for behavior resolver - fix testing config to account for the changes
26 lines
650 B
JSON
26 lines
650 B
JSON
{
|
|
"name": "gilded-rose-kata",
|
|
"version": "1.0.0",
|
|
"description": "Gilded Rose kata in TypeScript",
|
|
"scripts": {
|
|
"precompile": "rimraf app/**/*.js snapshot-tests/**/*.js",
|
|
"compile": "tsc",
|
|
"pretest": "rimraf app/**/*.js snapshot-tests/**/*.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"
|
|
}
|
|
}
|