package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@jupyterlab/test-filebrowser",
  3. "version": "2.1.0",
  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-headless",
  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:firefox-headless": "python run-test.py --browsers=FirefoxHeadless karma.conf.js",
  15. "test:ie": "python run-test.py --browsers=IE karma.conf.js",
  16. "watch": "tsc -b --watch",
  17. "watch:src": "tsc -p src --watch"
  18. },
  19. "dependencies": {
  20. "@jupyterlab/coreutils": "^4.1.0",
  21. "@jupyterlab/docmanager": "^2.1.0",
  22. "@jupyterlab/docregistry": "^2.1.0",
  23. "@jupyterlab/filebrowser": "^2.1.0",
  24. "@jupyterlab/services": "^5.1.0",
  25. "@jupyterlab/statedb": "^2.1.0",
  26. "@jupyterlab/testutils": "^2.1.0",
  27. "@lumino/algorithm": "^1.2.3",
  28. "@lumino/coreutils": "^1.4.2",
  29. "@lumino/messaging": "^1.3.3",
  30. "@lumino/widgets": "^1.11.1",
  31. "chai": "^4.2.0",
  32. "simulate-event": "~1.4.0"
  33. },
  34. "devDependencies": {
  35. "@types/chai": "^4.2.7",
  36. "@types/mocha": "^7.0.2",
  37. "karma": "^4.4.1",
  38. "karma-chrome-launcher": "~3.1.0",
  39. "puppeteer": "~2.0.0",
  40. "rimraf": "~3.0.0",
  41. "typescript": "~3.7.3"
  42. }
  43. }