package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "@jupyterlab/test-apputils",
  3. "version": "2.0.0-alpha.4",
  4. "private": true,
  5. "scripts": {
  6. "build": "tsc -b",
  7. "clean": "rimraf build && rimraf coverage",
  8. "coverage": "python run.py --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/apputils": "^2.0.0-alpha.4",
  16. "@jupyterlab/services": "^5.0.0-alpha.4",
  17. "@jupyterlab/testutils": "^2.0.0-alpha.4",
  18. "@lumino/algorithm": "^1.2.3",
  19. "@lumino/commands": "^1.9.1",
  20. "@lumino/coreutils": "^1.4.2",
  21. "@lumino/messaging": "^1.3.3",
  22. "@lumino/virtualdom": "^1.4.0",
  23. "@lumino/widgets": "^1.9.7",
  24. "chai": "^4.2.0",
  25. "jest": "^24.9.0",
  26. "jest-junit": "^10.0.0",
  27. "react": "~16.9.0",
  28. "simulate-event": "~1.4.0",
  29. "ts-jest": "^24.2.0"
  30. },
  31. "devDependencies": {
  32. "@types/chai": "^4.2.7",
  33. "@types/jest": "^24.0.23",
  34. "rimraf": "~3.0.0",
  35. "typescript": "~3.7.3"
  36. }
  37. }