mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
Use newer version of TypeScript. Use proper project name in project properties.
This commit is contained in:
parent
68da549751
commit
b881804cda
@ -1,17 +1,14 @@
|
|||||||
{
|
{
|
||||||
"name": "typescript-mocha-kata-seed",
|
"name": "gilded-rose-kata",
|
||||||
"version": "1.4.0",
|
"version": "1.0.0",
|
||||||
"description": "Seed project for TDD code katas on TypeScript and mocha",
|
"description": "Gilded Rose kata in TypeScript",
|
||||||
"main": "index.js",
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"precompile": "rimraf app/**/*.js test/**/*.js",
|
"precompile": "rimraf app/**/*.js test/**/*.js",
|
||||||
"compile": "tsc",
|
"compile": "tsc",
|
||||||
"pretest": "rimraf app/**/*.js test/**/*.js",
|
"pretest": "rimraf app/**/*.js test/**/*.js",
|
||||||
"test": "nyc mocha"
|
"test": "nyc mocha"
|
||||||
},
|
},
|
||||||
"author": "paucls",
|
"license": "MIT",
|
||||||
"homepage": "https://github.com/paucls/typescript-mocha-kata-seed",
|
|
||||||
"license": "ISC",
|
|
||||||
"private": true,
|
"private": true,
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/chai": "~3.5.2",
|
"@types/chai": "~3.5.2",
|
||||||
@ -21,8 +18,9 @@
|
|||||||
"mocha": "~3.2.0",
|
"mocha": "~3.2.0",
|
||||||
"nyc": "~11.0.3",
|
"nyc": "~11.0.3",
|
||||||
"rimraf": "~2.5.2",
|
"rimraf": "~2.5.2",
|
||||||
|
"source-map-support": "0.5.9",
|
||||||
"ts-node": "~3.1.0",
|
"ts-node": "~3.1.0",
|
||||||
"typescript": "~2.2.0"
|
"typescript": "~3.0.3"
|
||||||
},
|
},
|
||||||
"nyc": {
|
"nyc": {
|
||||||
"extension": [
|
"extension": [
|
||||||
|
|||||||
@ -2,6 +2,7 @@
|
|||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"module": "commonjs",
|
"module": "commonjs",
|
||||||
"target": "es5",
|
"target": "es5",
|
||||||
|
"strict": true,
|
||||||
"noImplicitAny": false,
|
"noImplicitAny": false,
|
||||||
"sourceMap": false
|
"sourceMap": false
|
||||||
},
|
},
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user