| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "name": "functionaltests",
- "private": true,
- "version": "1.0.0",
- "description": "",
- "main": "index.js",
- "dependencies": {
- "@microsoft/signalr": "link:../signalr",
- "@microsoft/signalr-protocol-msgpack": "link:../signalr-protocol-msgpack"
- },
- "devDependencies": {
- "@types/debug": "0.0.30",
- "@types/jasmine": "^2.8.8",
- "@types/karma": "^1.7.5",
- "@types/node": "^9.6.28",
- "debug": "^3.1.0",
- "es6-promise": "^4.2.4",
- "jasmine": "^3.2.0",
- "jasmine-core": "^3.2.1",
- "karma": "^4.4.1",
- "karma-chrome-launcher": "^2.2.0",
- "karma-edge-launcher": "^0.4.2",
- "karma-firefox-launcher": "^1.3.0",
- "karma-ie-launcher": "^1.0.0",
- "karma-jasmine": "^3.1.0",
- "karma-junit-reporter": "^1.2.0",
- "karma-mocha-reporter": "^2.2.5",
- "karma-safari-launcher": "^1.0.0",
- "karma-sauce-launcher": "^1.2.0",
- "karma-sourcemap-loader": "^0.3.7",
- "karma-summary-reporter": "^1.6.0",
- "process": "^0.11.10",
- "rxjs": "^6.3.3",
- "ts-node": "^8.6.2",
- "typescript": "^3.7.5",
- "webpack": "^5.23.0",
- "ws": " ^6.0.0"
- },
- "scripts": {
- "preclean": "cd .. && yarn run build",
- "clean": "node ../common/node_modules/rimraf/bin.js ./wwwroot/dist ./obj/js",
- "prebuild": "yarn run clean && yarn install --mutex network",
- "build": "yarn run build:inner",
- "build:inner": "yarn run build:lint && yarn run build:webpack",
- "build:lint": "node ../common/node_modules/eslint/bin/eslint . --ext .ts --resolve-plugins-relative-to ../common",
- "build:webpack": "node ../common/node_modules/webpack-cli/bin/cli.js",
- "pretest": "yarn run build && dotnet build SignalR.Npm.FunctionalTests.npmproj",
- "test": "tsc --noEmit && yarn run test:local",
- "test:inner": "yarn run build:inner && ts-node --project ./scripts/tsconfig.json ./scripts/run-tests.ts",
- "test:local": "yarn run pretest && ts-node --project ./scripts/tsconfig.json ./scripts/run-tests.ts",
- "test:all": "yarn run pretest && ts-node --project ./scripts/tsconfig.json ./scripts/run-tests.ts --all-browsers",
- "test:sauce": "yarn run pretest && ts-node --project ./scripts/tsconfig.json ./scripts/run-tests.ts --sauce",
- "sauce": "yarn run test:sauce"
- },
- "resolutions": {
- "lodash": ">=4.7.14"
- },
- "author": "",
- "license": "MIT"
- }
|