12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "@jupyterlab/test-filebrowser",
- "version": "2.1.0",
- "private": true,
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf build && rimraf coverage",
- "coverage": "python run-test.py --browsers=ChromeHeadless karma-cov.conf.js",
- "test": "jlpm run test:firefox-headless",
- "test:chrome": "python run-test.py --browsers=Chrome karma.conf.js",
- "test:chrome-headless": "python run-test.py --browsers=ChromeHeadless karma.conf.js",
- "test:debug": "python run-test.py --browsers=Chrome --singleRun=false --debug=true --browserNoActivityTimeout=10000000 karma.conf.js",
- "test:firefox": "python run-test.py --browsers=Firefox karma.conf.js",
- "test:firefox-headless": "python run-test.py --browsers=FirefoxHeadless karma.conf.js",
- "test:ie": "python run-test.py --browsers=IE karma.conf.js",
- "watch": "tsc -b --watch",
- "watch:src": "tsc -p src --watch"
- },
- "dependencies": {
- "@jupyterlab/coreutils": "^4.1.0",
- "@jupyterlab/docmanager": "^2.1.0",
- "@jupyterlab/docregistry": "^2.1.0",
- "@jupyterlab/filebrowser": "^2.1.0",
- "@jupyterlab/services": "^5.1.0",
- "@jupyterlab/statedb": "^2.1.0",
- "@jupyterlab/testutils": "^2.1.0",
- "@lumino/algorithm": "^1.2.3",
- "@lumino/coreutils": "^1.4.2",
- "@lumino/messaging": "^1.3.3",
- "@lumino/widgets": "^1.11.1",
- "chai": "^4.2.0",
- "simulate-event": "~1.4.0"
- },
- "devDependencies": {
- "@types/chai": "^4.2.7",
- "@types/mocha": "^7.0.2",
- "karma": "^4.4.1",
- "karma-chrome-launcher": "~3.1.0",
- "puppeteer": "~2.0.0",
- "rimraf": "~3.0.0",
- "typescript": "~3.7.3"
- }
- }
|