package.json 901 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@jupyterlab/test-imageviewer",
  3. "version": "2.1.0",
  4. "private": true,
  5. "scripts": {
  6. "build": "tsc -b",
  7. "clean": "rimraf build && rimraf coverage",
  8. "coverage": "python run.py --coverage",
  9. "test": "python run.py",
  10. "watch": "python run.py --debug",
  11. "watch:all": "python run.py --debug --watchAll",
  12. "watch:src": "tsc -b --watch"
  13. },
  14. "dependencies": {
  15. "@jupyterlab/docregistry": "^2.1.0",
  16. "@jupyterlab/imageviewer": "^2.1.0",
  17. "@jupyterlab/services": "^5.1.0",
  18. "@jupyterlab/testutils": "^2.1.0",
  19. "@lumino/coreutils": "^1.4.2",
  20. "@lumino/messaging": "^1.3.3",
  21. "@lumino/widgets": "^1.11.1",
  22. "chai": "^4.2.0",
  23. "jest": "^25.2.3",
  24. "jest-junit": "^10.0.0",
  25. "ts-jest": "^25.2.1"
  26. },
  27. "devDependencies": {
  28. "@types/chai": "^4.2.7",
  29. "@types/jest": "^24.0.23",
  30. "rimraf": "~3.0.0",
  31. "typescript": "~3.7.3"
  32. }
  33. }