Skip to content

Commit

Permalink
fix(examples/typescript): missing dependencies
Browse files Browse the repository at this point in the history
- missing tsc meant the build command would not run
- missing nyc and mocha would mean the tests would not run
  • Loading branch information
rahulballal committed Sep 27, 2018
1 parent 2ba8dbe commit 314119d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions examples/typescript/package.json
Expand Up @@ -11,10 +11,11 @@
"license": "MIT",
"devDependencies": {
"@types/mocha": "^2.2.41",
"mocha": "3.x",
"nyc": "^11.2.0"
"mocha": "^3.5.3",
"nyc": "^11.9.0"
},
"dependencies": {
"axios": "^0.17.1"
"axios": "^0.17.1",
"typescript": "^3.0.3"
}
}

0 comments on commit 314119d

Please sign in to comment.