-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 979 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
41
42
43
44
45
{
"name": "redux-saga-catch",
"version": "1.1.2",
"description": "Helper for redux-saga, auto wrap saga with try-catch, prevent one throw stop all.",
"main": "build/index.js",
"types": "build/index.d.ts",
"peerDependencies": {
"redux-saga": ">= 0.15 <= 1"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyrilluce/redux-saga-catch.git"
},
"keywords": [
"redux",
"saga",
"catch",
"trycatch",
"error",
"exception",
"robust"
],
"files": [
"src",
"build",
"README.md"
],
"author": "cyrilluce@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyrilluce/redux-saga-catch/issues"
},
"homepage": "https://github.com/cyrilluce/redux-saga-catch#readme",
"devDependencies": {
"redux-saga": "^1.1.3",
"typescript": "^4.3.5"
},
"dependencies": {
"fast-deep-equal": "^3.1.3"
}
}