package.json 837 B

12345678910111213141516171819202122
  1. {
  2. "name": "template-for-tests",
  3. "version": "2.1.0",
  4. "private": true,
  5. "scripts": {
  6. "build": "tsc",
  7. "clean": "rimraf build && rimraf coverage",
  8. "coverage": "python run-test.py --browsers ChromeHeadless karma-cov.conf.js",
  9. "test": "jlpm run test:firefox",
  10. "test:chrome": "python run-test.py --browsers=Chrome karma.conf.js",
  11. "test:debug": "python run-test.py --browsers=Chrome --singleRun=false --debug=true --browserNoActivityTimeout=10000000 karma.conf.js",
  12. "test:firefox": "python run-test.py --browsers=Firefox karma.conf.js",
  13. "test:ie": "python run-test.py --browsers=IE karma.conf.js",
  14. "watch": "python run-test.py --singleRun=false",
  15. "watch:src": "tsc -w --listEmittedFiles"
  16. },
  17. "devDependencies": {
  18. "karma": "^4.4.1",
  19. "rimraf": "~3.0.0",
  20. "typescript": "~3.7.3"
  21. }
  22. }