package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "functionaltests",
  3. "private": true,
  4. "version": "1.0.0",
  5. "description": "",
  6. "main": "index.js",
  7. "dependencies": {
  8. "@microsoft/signalr": "link:../signalr",
  9. "@microsoft/signalr-protocol-msgpack": "link:../signalr-protocol-msgpack"
  10. },
  11. "devDependencies": {
  12. "@types/debug": "0.0.30",
  13. "@types/jasmine": "^2.8.8",
  14. "@types/karma": "^1.7.5",
  15. "@types/node": "^9.6.28",
  16. "debug": "^3.1.0",
  17. "es6-promise": "^4.2.4",
  18. "jasmine": "^3.2.0",
  19. "jasmine-core": "^3.2.1",
  20. "karma": "^4.4.1",
  21. "karma-chrome-launcher": "^2.2.0",
  22. "karma-edge-launcher": "^0.4.2",
  23. "karma-firefox-launcher": "^1.3.0",
  24. "karma-ie-launcher": "^1.0.0",
  25. "karma-jasmine": "^3.1.0",
  26. "karma-junit-reporter": "^1.2.0",
  27. "karma-mocha-reporter": "^2.2.5",
  28. "karma-safari-launcher": "^1.0.0",
  29. "karma-sauce-launcher": "^1.2.0",
  30. "karma-sourcemap-loader": "^0.3.7",
  31. "karma-summary-reporter": "^1.6.0",
  32. "process": "^0.11.10",
  33. "rxjs": "^6.3.3",
  34. "ts-node": "^8.6.2",
  35. "typescript": "^3.7.5",
  36. "webpack": "^5.23.0",
  37. "ws": " ^6.0.0"
  38. },
  39. "scripts": {
  40. "preclean": "cd .. && yarn run build",
  41. "clean": "node ../common/node_modules/rimraf/bin.js ./wwwroot/dist ./obj/js",
  42. "prebuild": "yarn run clean && yarn install --mutex network",
  43. "build": "yarn run build:inner",
  44. "build:inner": "yarn run build:lint && yarn run build:webpack",
  45. "build:lint": "node ../common/node_modules/eslint/bin/eslint . --ext .ts --resolve-plugins-relative-to ../common",
  46. "build:webpack": "node ../common/node_modules/webpack-cli/bin/cli.js",
  47. "pretest": "yarn run build && dotnet build SignalR.Npm.FunctionalTests.npmproj",
  48. "test": "tsc --noEmit && yarn run test:local",
  49. "test:inner": "yarn run build:inner && ts-node --project ./scripts/tsconfig.json ./scripts/run-tests.ts",
  50. "test:local": "yarn run pretest && ts-node --project ./scripts/tsconfig.json ./scripts/run-tests.ts",
  51. "test:all": "yarn run pretest && ts-node --project ./scripts/tsconfig.json ./scripts/run-tests.ts --all-browsers",
  52. "test:sauce": "yarn run pretest && ts-node --project ./scripts/tsconfig.json ./scripts/run-tests.ts --sauce",
  53. "sauce": "yarn run test:sauce"
  54. },
  55. "resolutions": {
  56. "lodash": ">=4.7.14"
  57. },
  58. "author": "",
  59. "license": "MIT"
  60. }