|
@@ -3,19 +3,26 @@
|
|
|
"version": "0.5.1",
|
|
|
"private": true,
|
|
|
"scripts": {
|
|
|
- "build": "tsc",
|
|
|
+ "build": "tsc -b",
|
|
|
"clean": "rimraf build && rimraf coverage",
|
|
|
- "coverage": "python run-test.py --browsers ChromeHeadless karma-cov.conf.js",
|
|
|
- "test": "jlpm run test:firefox",
|
|
|
- "test:chrome": "python run-test.py --browsers=Chrome 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:ie": "python run-test.py --browsers=IE karma.conf.js",
|
|
|
- "watch": "python run-test.py --singleRun=false",
|
|
|
- "watch:src": "tsc -w --listEmittedFiles"
|
|
|
+ "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/statusbar": "^0.7.1",
|
|
|
+ "@jupyterlab/testutils": "^0.3.1",
|
|
|
+ "@phosphor/widgets": "^1.6.0",
|
|
|
+ "chai": "~4.1.2",
|
|
|
+ "jest": "^23.5.0",
|
|
|
+ "ts-jest": "^23.1.4"
|
|
|
},
|
|
|
"devDependencies": {
|
|
|
- "karma": "~2.0.4",
|
|
|
+ "@types/chai": "~4.0.10",
|
|
|
+ "@types/jest": "^23.3.1",
|
|
|
+ "puppeteer": "^1.5.0",
|
|
|
"rimraf": "~2.6.2",
|
|
|
"typescript": "~3.1.1"
|
|
|
}
|