package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@jupyterlab/test-rendermime",
  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/apputils": "^2.1.0",
  21. "@jupyterlab/coreutils": "^4.1.0",
  22. "@jupyterlab/mathjax2": "^2.1.0",
  23. "@jupyterlab/nbformat": "^2.1.0",
  24. "@jupyterlab/rendermime": "^2.1.0",
  25. "@jupyterlab/services": "^5.1.0",
  26. "@jupyterlab/testutils": "^2.1.0",
  27. "@lumino/algorithm": "^1.2.3",
  28. "@lumino/coreutils": "^1.4.2",
  29. "@lumino/widgets": "^1.11.1",
  30. "chai": "^4.2.0"
  31. },
  32. "devDependencies": {
  33. "@types/chai": "^4.2.7",
  34. "@types/mocha": "^7.0.2",
  35. "karma": "^4.4.1",
  36. "karma-chrome-launcher": "~3.1.0",
  37. "puppeteer": "~2.0.0",
  38. "rimraf": "~3.0.0",
  39. "typescript": "~3.7.3"
  40. }
  41. }