-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.28 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
{
"name": "redux-signalr",
"version": "1.2.0",
"description": "Redux middleware for SignalR (ASP.NET Core)",
"keywords": [
"SignalR",
"signalr",
"redux",
"middleware",
"redux-middleware"
],
"homepage": "https://github.com/Omhet/redux-signalr",
"bugs": {
"url": "https://github.com/Omhet/redux-signalr/issues",
"email": "omhetehmo@yandex.ru"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepare": "install-peers -f",
"prepublish": "yarn build",
"build": "node ./node_modules/typescript/bin/tsc --project ./tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/Omhet/redux-signalr.git"
},
"author": "Vladimir Ivanov (Omhet) <omhetehmo@yandex.ru> (https://omhet.github.io/)",
"license": "MIT",
"private": false,
"engines": {
"node": ">=6.0.0"
},
"engineStrict": true,
"peerDependencies": {
"@microsoft/signalr": "^5.0.0",
"redux": "^4.0.5"
},
"devDependencies": {
"@types/node": "^14.0.1",
"husky": "^4.2.5",
"install-peers-cli": "^2.2.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"typescript": "^3.9.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}