diff --git a/README.md b/README.md new file mode 100644 index 0000000..e022ce3 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Learn TypeScript Linting + +This repository is for the Matterhorn Mountain Top post series Learn TypeScript Linting. + +Check out part 1 on [TypeScript & ESLint](https://blog.matterhorn.dev/posts/learn-typescript-linting-part-1/) and part 2 on [Standard and Prettier Integration](https://blog.matterhorn.dev/posts/learn-typescript-linting-part-2/) diff --git a/package.json b/package.json index 691c06b..b8cb3d3 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,18 @@ { - "name": "leanr-js-linting", - "version": "0.1.0", - "description": "", - "main": "index.js", + "name": "learn-typescript-linting", + "version": "1.0.0", + "description": "A basic TypeScript library for use with the @MatterhornDev Learn TypeScript Linting post", "scripts": { "compile": "tsc -p tsconfig.json", "start": "node lib/index.js" }, - "keywords": [], - "author": "", - "license": "ISC", + "keywords": [ "typescript", "eslint", "standardjs", "prettier", "linting" ], + "repository": { + "type": "git", + "url": "https://github.com/MatterhornDev/learn-typescript-linting.git" + }, + "author": "Ethan Arrowood", + "license": "MIT", "devDependencies": { "typescript": "^3.4.5" }