package.json 971 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@jupyterlab/test-fileeditor",
  3. "version": "2.1.0",
  4. "private": true,
  5. "scripts": {
  6. "build": "tsc -b",
  7. "clean": "rimraf build && rimraf coverage",
  8. "coverage": "python run.py --coverage",
  9. "test": "python run.py",
  10. "watch": "python run.py --debug",
  11. "watch:all": "python run.py --debug --watchAll",
  12. "watch:src": "tsc -b --watch"
  13. },
  14. "dependencies": {
  15. "@jupyterlab/codemirror": "^2.1.0",
  16. "@jupyterlab/docregistry": "^2.1.0",
  17. "@jupyterlab/fileeditor": "^2.1.0",
  18. "@jupyterlab/services": "^5.1.0",
  19. "@jupyterlab/testutils": "^2.1.0",
  20. "@lumino/coreutils": "^1.4.2",
  21. "@lumino/messaging": "^1.3.3",
  22. "@lumino/widgets": "^1.11.1",
  23. "chai": "^4.2.0",
  24. "jest": "^25.2.3",
  25. "jest-junit": "^10.0.0",
  26. "simulate-event": "~1.4.0",
  27. "ts-jest": "^25.2.1"
  28. },
  29. "devDependencies": {
  30. "@types/chai": "^4.2.7",
  31. "@types/jest": "^24.0.23",
  32. "rimraf": "~3.0.0",
  33. "typescript": "~3.7.3"
  34. }
  35. }