-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
40 lines (40 loc) · 1010 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "signalr_test",
"version": "0.0.0",
"description": "e2e test for signalr server",
"private": true,
"license": "UNLICENSED",
"scripts": {
"test": "run-p test:wsgo test:jest --race",
"test:wsgo": "go test -v -run TestServerWebSockets",
"test:jest": "npx jest -t 'e2e test with microsoft/signalr client should work'"
},
"dependencies": {
"@microsoft/signalr": "^7.0.7",
"@microsoft/signalr-protocol-msgpack": "^5.0.9",
"@types/jest": "^27.0.2",
"@types/node": "^12.20.4",
"jest": "^27.2.5",
"jest-preset-typescript": "^1.2.0",
"path-parse": ">=1.0.7",
"rxjs": "^6.6.6",
"rxjs-for-await": "^0.0.2",
"set-value": ">=4.0.1",
"ts-jest": "^27.0.7",
"typescript": "^4.2.2"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 10000,
"preset": "jest-preset-typescript",
"setupFilesAfterEnv": [
"<rootDir>/setupJest.ts"
],
"transformIgnorePatterns": [
"node_modules/(?!(@aspnet/signalr)/)"
]
}
}