123456789101112131415161718192021222324252627282930 |
- {
- "name": "@jupyterlab/test-observables",
- "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/observables": "^3.1.0",
- "@jupyterlab/testutils": "^2.1.0",
- "@lumino/algorithm": "^1.2.3",
- "@lumino/coreutils": "^1.4.2",
- "chai": "^4.2.0",
- "jest": "^25.2.3",
- "jest-junit": "^10.0.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"
- }
- }
|