package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@jupyterlab/test-filebrowser",
  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-test.py --browsers=ChromeHeadless karma-cov.conf.js",
  9. "test": "jlpm run test:firefox",
  10. "test:chrome": "python run-test.py --browsers=Chrome karma.conf.js",
  11. "test:chrome-headless": "python run-test.py --browsers=ChromeHeadless karma.conf.js",
  12. "test:debug": "python run-test.py --browsers=Chrome --singleRun=false --debug=true --browserNoActivityTimeout=10000000 karma.conf.js",
  13. "test:firefox": "python run-test.py --browsers=Firefox karma.conf.js",
  14. "test:ie": "python run-test.py --browsers=IE karma.conf.js",
  15. "watch": "tsc -b --watch",
  16. "watch:src": "tsc -p src --watch"
  17. },
  18. "dependencies": {
  19. "@jupyterlab/coreutils": "^4.0.0-alpha.4",
  20. "@jupyterlab/docmanager": "^2.0.0-alpha.4",
  21. "@jupyterlab/docregistry": "^2.0.0-alpha.4",
  22. "@jupyterlab/filebrowser": "^2.0.0-alpha.4",
  23. "@jupyterlab/services": "^5.0.0-alpha.4",
  24. "@jupyterlab/statedb": "^2.0.0-alpha.4",
  25. "@jupyterlab/testutils": "^2.0.0-alpha.4",
  26. "@jupyterlab/ui-components": "^2.0.0-alpha.4",
  27. "@lumino/algorithm": "^1.2.1",
  28. "@lumino/coreutils": "^1.4.0",
  29. "@lumino/messaging": "^1.3.1",
  30. "@lumino/widgets": "^1.9.4",
  31. "chai": "^4.2.0",
  32. "simulate-event": "~1.4.0"
  33. },
  34. "devDependencies": {
  35. "@types/chai": "^4.2.7",
  36. "karma": "^4.4.1",
  37. "karma-chrome-launcher": "~3.1.0",
  38. "puppeteer": "~2.0.0",
  39. "rimraf": "~3.0.0",
  40. "typescript": "~3.7.3"
  41. }
  42. }