-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
39 lines (39 loc) · 1003 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
{
"name": "react-use-signalr",
"version": "0.0.3",
"description": "React hooks for SignalR",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "tsc",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pguilbert/react-use-signalr.git"
},
"author": "Paul Guilbert <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pguilbert/react-use-signalr/issues"
},
"homepage": "https://github.com/pguilbert/react-use-signalr#readme",
"peerDependencies": {
"@microsoft/signalr": "^6.0.1",
"react": "^16.8.0 || ^17.0.0"
},
"devDependencies": {
"@microsoft/signalr": "^6.0.1",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.0",
"jest": "^27.4.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"ts-jest": "^27.1.2",
"typescript": "^4.1.3"
}
}