package.json 452 B

123456789101112131415161718
  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. "clean": "rm -fr js/* all/*.js",
  14. "compile": "rm -fr js/* && cd app && npx tsc",
  15. "start": "http-server"
  16. },
  17. "version": "2.0.0"
  18. }