GildedRose-Refactoring-Kata/TypeScript/package.json
Alexander Kahoun 5cae7b7d72
Sibi stack
2021-03-30 14:07:34 -07:00

41 lines
816 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": "nyc mocha"
},
"license": "MIT",
"private": true,
"devDependencies": {
"@types/chai": "4.2.15",
"@types/mocha": "8.2.2",
"@types/node": "14.14.37",
"chai": "4.3.4",
"mocha": "8.3.2",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"source-map-support": "0.5.19",
"ts-node": "9.1.1",
"typescript": "4.2.3"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"test/**"
],
"require": [
"ts-node/register"
],
"reporter": [
"html",
"text"
]
}
}