diff --git a/TypeScript/package.json b/TypeScript/package.json index 28b6bb3f..4494c786 100644 --- a/TypeScript/package.json +++ b/TypeScript/package.json @@ -1,17 +1,14 @@ { - "name": "typescript-mocha-kata-seed", - "version": "1.4.0", - "description": "Seed project for TDD code katas on TypeScript and mocha", - "main": "index.js", + "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" }, - "author": "paucls", - "homepage": "https://github.com/paucls/typescript-mocha-kata-seed", - "license": "ISC", + "license": "MIT", "private": true, "devDependencies": { "@types/chai": "~3.5.2", @@ -21,8 +18,9 @@ "mocha": "~3.2.0", "nyc": "~11.0.3", "rimraf": "~2.5.2", + "source-map-support": "0.5.9", "ts-node": "~3.1.0", - "typescript": "~2.2.0" + "typescript": "~3.0.3" }, "nyc": { "extension": [ diff --git a/TypeScript/tsconfig.json b/TypeScript/tsconfig.json index 4f713921..84381f86 100644 --- a/TypeScript/tsconfig.json +++ b/TypeScript/tsconfig.json @@ -2,6 +2,7 @@ "compilerOptions": { "module": "commonjs", "target": "es5", + "strict": true, "noImplicitAny": false, "sourceMap": false },