package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@jupyterlab/test-fileeditor",
  3. "version": "0.3.0-1",
  4. "private": true,
  5. "scripts": {
  6. "build": "tsc",
  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": "python run-test.py --singleRun=false",
  16. "watch:src": "tsc -w --listEmittedFiles"
  17. },
  18. "dependencies": {
  19. "@jupyterlab/codemirror": "^0.17.0-1",
  20. "@jupyterlab/docregistry": "^0.17.0-1",
  21. "@jupyterlab/fileeditor": "^0.17.0-1",
  22. "@jupyterlab/services": "^3.0.0-1",
  23. "@phosphor/coreutils": "^1.3.0",
  24. "@phosphor/messaging": "^1.2.2",
  25. "@phosphor/widgets": "^1.6.0",
  26. "expect.js": "~0.3.1",
  27. "simulate-event": "~1.4.0"
  28. },
  29. "devDependencies": {
  30. "karma": "~2.0.4",
  31. "karma-chrome-launcher": "~2.2.0",
  32. "puppeteer": "^1.5.0",
  33. "rimraf": "~2.6.2",
  34. "typescript": "~2.9.2"
  35. }
  36. }