Skip to content

Commit

Permalink
Add some package.json properties
Browse files Browse the repository at this point in the history
  • Loading branch information
taniarascia committed May 1, 2019
1 parent 8f3b4c9 commit eb8f8f8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Expand Up @@ -4,17 +4,18 @@ Tic Tac Toe in TypeScript.

## Installation

```
```bash
yarn
yarn build
yarn build # to compile TypeScript
yarn watch # to set a TypeScript watch
```

Go to `index.html` in a browser.

## Todos

- [x] Convert to TypeScript
- [ ] Implement listeners on the state to trigger DOM updates
- [ ] Convert to TypeScript

## Author

Expand Down
11 changes: 11 additions & 0 deletions package.json
@@ -1,8 +1,19 @@
{
"name": "tictactoe",
"version": "0.1.0",
"description": "Tic Tac Toe in TypeScript.",
"author": {
"name": "Tania Rascia",
"email": "me@taniarascia.com",
"url": "https://www.taniarascia.com"
},
"main": "dist/tictactoe.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w"
},
"license": "MIT",
"private": false,
"devDependencies": {
"@types/node": "^11.13.8",
"typescript": "^3.4.5"
Expand Down

0 comments on commit eb8f8f8

Please sign in to comment.