package.json 995 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@jupyterlab/test-services",
  3. "version": "0.1.1",
  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/coreutils": "^2.2.1",
  16. "@jupyterlab/services": "^3.2.1",
  17. "@jupyterlab/testutils": "^0.3.1",
  18. "@phosphor/algorithm": "^1.1.2",
  19. "@phosphor/coreutils": "^1.3.0",
  20. "@phosphor/signaling": "^1.2.2",
  21. "chai": "~4.1.2",
  22. "jest": "^23.5.0",
  23. "jest-junit": "^5.2.0",
  24. "node-fetch": "~2.2.0",
  25. "text-encoding": "~0.5.5",
  26. "ts-jest": "^23.1.4",
  27. "ws": "~6.0.0"
  28. },
  29. "devDependencies": {
  30. "@types/chai": "~4.0.10",
  31. "@types/jest": "^23.3.1",
  32. "@types/ws": "^6.0.1",
  33. "rimraf": "~2.6.2",
  34. "typescript": "~3.1.1"
  35. }
  36. }