GildedRose-Refactoring-Kata/TypeScript/package.json
Grecu Bogdan d4fea26156 Done
Updated updateQuality method to include conjured mana cake items
Created updateQuality2 method to refactor the code
Created tests for updateQuality and then duplicated the tests for updateQuality2
2022-06-29 13:20:33 +01:00

36 lines
937 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": "jest",
"test:jest:watch": "jest --watchAll",
"test:mocha": "nyc mocha"
},
"license": "MIT",
"private": true,
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/chai": "^4.2.22",
"@types/jest": "^27.0.2",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"babel-jest": "^28.1.1",
"chai": "^4.3.4",
"jest": "^27.5.1",
"mocha": "^9.1.3",
"nyc": "~15.1.0",
"rimraf": "~3.0.2",
"source-map-support": "^0.5.20",
"ts-jest": "^27.1.5",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.4"
}
}