123456789101112131415161718192021222324252627282930313233 |
- {
- "name": "@jupyterlab/test-codeeditor",
- "version": "2.1.0",
- "private": true,
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf build && rimraf coverage",
- "coverage": "python run.py --coverage",
- "test": "python run.py",
- "watch": "python run.py --debug",
- "watch:all": "python run.py --debug --watchAll",
- "watch:src": "tsc -b --watch"
- },
- "dependencies": {
- "@jupyterlab/codeeditor": "^2.1.0",
- "@jupyterlab/codemirror": "^2.1.0",
- "@jupyterlab/observables": "^3.1.0",
- "@jupyterlab/testutils": "^2.1.0",
- "@lumino/messaging": "^1.3.3",
- "@lumino/widgets": "^1.11.1",
- "chai": "^4.2.0",
- "jest": "^25.2.3",
- "jest-junit": "^10.0.0",
- "simulate-event": "~1.4.0",
- "ts-jest": "^25.2.1"
- },
- "devDependencies": {
- "@types/chai": "^4.2.7",
- "@types/jest": "^24.0.23",
- "rimraf": "~3.0.0",
- "typescript": "~3.7.3"
- }
- }
|