package.json 627 B

1234567891011121314151617181920212223
  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": "lib/src/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. "lint": "tslint -p tsconfig.json",
  19. "test": "jest"
  20. },
  21. "typings": "lib/src/index.d.ts",
  22. "version": "1.0.0"
  23. }