123456789101112131415161718192021222324252627282930313233343536 |
- {
- "name": "@jupyterlab/test-services",
- "version": "0.1.1",
- "private": true,
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf build && rimraf coverage",
- "coverage": "python run.py --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/coreutils": "^2.2.1",
- "@jupyterlab/services": "^3.2.1",
- "@jupyterlab/testutils": "^0.3.1",
- "@phosphor/algorithm": "^1.1.2",
- "@phosphor/coreutils": "^1.3.0",
- "@phosphor/signaling": "^1.2.2",
- "chai": "~4.1.2",
- "jest": "^23.5.0",
- "jest-junit": "^5.2.0",
- "node-fetch": "~2.2.0",
- "text-encoding": "~0.5.5",
- "ts-jest": "^23.1.4",
- "ws": "~6.0.0"
- },
- "devDependencies": {
- "@types/chai": "~4.0.10",
- "@types/jest": "^23.3.1",
- "@types/ws": "^6.0.1",
- "rimraf": "~2.6.2",
- "typescript": "~3.1.1"
- }
- }
|