mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 12:22:12 +00:00
43 lines
824 B
JSON
43 lines
824 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": "~3.5.2",
|
|
"@types/mocha": "~2.2.41",
|
|
"@types/node": "~7.0.18",
|
|
"chai": "~3.5.0",
|
|
"mocha": "~3.2.0",
|
|
"nyc": "~11.0.3",
|
|
"rimraf": "~2.5.2",
|
|
"source-map-support": "0.5.9",
|
|
"ts-node": "~3.1.0",
|
|
"typescript": "~3.0.3"
|
|
},
|
|
"nyc": {
|
|
"extension": [
|
|
".ts"
|
|
],
|
|
"exclude": [
|
|
"**/*.d.ts",
|
|
"test/**"
|
|
],
|
|
"require": [
|
|
"ts-node/register"
|
|
],
|
|
"reporter": [
|
|
"html",
|
|
"text"
|
|
]
|
|
}
|
|
}
|
|
|