package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@jupyterlab/test-terminal",
  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/services": "^5.1.0",
  21. "@jupyterlab/terminal": "^2.1.0",
  22. "@jupyterlab/testutils": "^2.1.0",
  23. "@lumino/messaging": "^1.3.3",
  24. "@lumino/widgets": "^1.11.1",
  25. "chai": "^4.2.0"
  26. },
  27. "devDependencies": {
  28. "@types/chai": "^4.2.7",
  29. "@types/mocha": "^7.0.2",
  30. "karma": "^4.4.1",
  31. "karma-chrome-launcher": "~3.1.0",
  32. "puppeteer": "~2.0.0",
  33. "rimraf": "~3.0.0",
  34. "typescript": "~3.7.3"
  35. }
  36. }