package.json 817 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@jupyterlab/test-codemirror",
  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/codeeditor": "^2.1.0",
  16. "@jupyterlab/codemirror": "^2.1.0",
  17. "@jupyterlab/testutils": "^2.1.0",
  18. "chai": "^4.2.0",
  19. "codemirror": "~5.49.2",
  20. "jest": "^25.2.3",
  21. "jest-junit": "^10.0.0",
  22. "simulate-event": "~1.4.0",
  23. "ts-jest": "^25.2.1"
  24. },
  25. "devDependencies": {
  26. "@types/chai": "^4.2.7",
  27. "@types/jest": "^24.0.23",
  28. "rimraf": "~3.0.0",
  29. "typescript": "~3.7.3"
  30. }
  31. }