package.json 786 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "@jupyterlab/test-inspector",
  3. "version": "0.5.1",
  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/inspector": "^0.19.1",
  16. "@jupyterlab/testutils": "^0.3.1",
  17. "@phosphor/signaling": "^1.2.2",
  18. "@phosphor/widgets": "^1.6.0",
  19. "chai": "~4.1.2",
  20. "jest": "^23.5.0",
  21. "jest-junit": "^5.2.0",
  22. "ts-jest": "^23.1.4"
  23. },
  24. "devDependencies": {
  25. "@types/chai": "~4.0.10",
  26. "@types/jest": "^23.3.1",
  27. "rimraf": "~2.6.2",
  28. "typescript": "~3.1.1"
  29. }
  30. }