-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.66 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "cypress-signalr-mock",
"version": "0.0.0-development",
"description": "An easy way to mock a SignalR server which can send and receive messages during Cypress tests.",
"author": "JasonLandbridge",
"license": "ISC",
"type": "module",
"scripts": {
"build": "vite build",
"test": "vitest run",
"test-watch": "vitest watch",
"test-coverage": "vitest coverage",
"type-check": "tsc --noEmit",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/JasonLandbridge/cypress-signalr-mock.git"
},
"keywords": [
"SignalR",
"Cypress",
"Mock",
"cypress-plugin"
],
"bugs": {
"url": "https://github.com/JasonLandbridge/cypress-signalr-mock/issues"
},
"homepage": "https://github.com/JasonLandbridge/cypress-signalr-mock#readme",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"files": [
"dist"
],
"dependencies": {
"@microsoft/signalr": ">=7.0.0",
"cypress": ">=10.0.0",
"rxjs": ">=6.6.0 <8"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^10.0.3",
"@types/debug": "^4.1.7",
"@types/node": "^18.16.3",
"@vitest/coverage-c8": "^0.30.1",
"happy-dom": "^9.10.7",
"prettier": "^2.8.8",
"semantic-release": "^21.0.2",
"typescript": "^5.0.4",
"vite": "^4.3.2",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.30.1"
}
}