package.json 999 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@jupyterlab/test-application",
  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/application": "^2.1.0",
  16. "@jupyterlab/apputils": "^2.1.0",
  17. "@jupyterlab/statedb": "^2.1.0",
  18. "@jupyterlab/testutils": "^2.1.0",
  19. "@lumino/algorithm": "^1.2.3",
  20. "@lumino/commands": "^1.10.1",
  21. "@lumino/coreutils": "^1.4.2",
  22. "@lumino/messaging": "^1.3.3",
  23. "@lumino/widgets": "^1.11.1",
  24. "chai": "^4.2.0",
  25. "jest": "^25.2.3",
  26. "jest-junit": "^10.0.0",
  27. "simulate-event": "~1.4.0",
  28. "ts-jest": "^25.2.1"
  29. },
  30. "devDependencies": {
  31. "@types/chai": "^4.2.7",
  32. "@types/jest": "^24.0.23",
  33. "rimraf": "~3.0.0",
  34. "typescript": "~3.7.3"
  35. }
  36. }