package.json 978 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@jupyterlab/test-fileeditor",
  3. "version": "0.5.1",
  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": "^0.19.1",
  16. "@jupyterlab/docregistry": "^0.19.1",
  17. "@jupyterlab/fileeditor": "^0.19.1",
  18. "@jupyterlab/services": "^3.2.1",
  19. "@jupyterlab/testutils": "^0.3.1",
  20. "@phosphor/coreutils": "^1.3.0",
  21. "@phosphor/messaging": "^1.2.2",
  22. "@phosphor/widgets": "^1.6.0",
  23. "chai": "~4.1.2",
  24. "jest": "^23.5.0",
  25. "jest-junit": "^5.2.0",
  26. "simulate-event": "~1.4.0",
  27. "ts-jest": "^23.1.4"
  28. },
  29. "devDependencies": {
  30. "@types/chai": "~4.0.10",
  31. "@types/jest": "^23.3.1",
  32. "rimraf": "~2.6.2",
  33. "typescript": "~3.1.1"
  34. }
  35. }