-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "redux-saga-take-cache",
"version": "0.1.1",
"description": "redux-saga cache channel helper",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"typecheck": "kcd-scripts typecheck",
"validate": "kcd-scripts validate"
},
"keywords": [
"redux-saga",
"effect",
"helper"
],
"author": "Ezio Lin <[email protected]>",
"license": "MIT",
"devDependencies": {
"kcd-scripts": "^10.0.0",
"redux": "^4.1.0",
"redux-saga": "1.1.1",
"typescript": "^4.2.4"
},
"peerDependencies": {
"redux-saga": "*"
},
"dependencies": {
"@babel/runtime": "^7.14.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ninesunsabiu/redux-saga-cache-channel-helper"
},
"bugs": {
"url": "https://github.com/ninesunsabiu/redux-saga-cache-channel-helper/issues"
}
}