-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 KB
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
{
"name": "react-easy-redux",
"version": "1.0.8",
"description": "一个将redux redux-saga做了简易封装的轮子",
"main": "dist/index.js",
"types": "src/types/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fallenner/react-easy-redux.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"redux",
"redux-saga",
"react",
"react-native"
],
"author": "dzq",
"license": "MIT",
"bugs": {
"url": "https://github.com/fallenner/react-easy-redux/issues"
},
"homepage": "https://github.com/fallenner/react-easy-redux#readme",
"dependencies": {
"react-redux": "7.2.2",
"redux": "4.0.5",
"redux-saga": "1.1.3"
},
"devDependencies": {
"@types/react-redux": "7.1.16",
"tslint": "6.1.1",
"typescript": "4.2.2"
},
"peerDependencies": {
"react": "^16.8.3 || ^17"
}
}