package.json 545 B

123456789101112131415161718192021
  1. {
  2. "author": "Michael Tiller",
  3. "description": "Demo how to use Jest with Typescript code",
  4. "devDependencies": {
  5. "@types/jest": "^23.3.1",
  6. "jest": "^23.5.0",
  7. "ts-jest": "^23.1.3",
  8. "tslint": "^5.11.0",
  9. "typescript": "^3.0.1"
  10. },
  11. "license": "MIT",
  12. "main": "index.js",
  13. "name": "typescript",
  14. "private": false,
  15. "repository": "https://medium.com/@mtiller/debugging-with-typescript-jest-ts-jest-and-visual-studio-code-ef9ca8644132",
  16. "scripts": {
  17. "compile": "tsc",
  18. "test": "jest"
  19. },
  20. "version": "1.0.0"
  21. }