package.json 364 B

12345678910111213141516
  1. {
  2. "author": "Bruce Wilson",
  3. "description": "Simple math game built with TypeScript",
  4. "devDependencies": {
  5. "http-server": "^0.9.0",
  6. "tslint": "^5.11.0",
  7. "typescript": "~2.2.1"
  8. },
  9. "license": "ISC",
  10. "main": "index.js",
  11. "name": "Pluralsight-GettingStartedWithTypeScript",
  12. "scripts": {
  13. "start": "http-server"
  14. },
  15. "version": "2.0.0"
  16. }