-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "use-redux-state",
"version": "0.0.1",
"description": "Use redux with a hook, similar to useState. Includes async handling.",
"main": "dist/use-redux-state.js",
"module": "dist/use-redux-state.module.js",
"unpkg": "dist/use-redux-state.umd.js",
"scripts": {
"build": "microbundle --raw",
"dev": "microbundle watch",
"size": "size-limit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isakkeyten/use-redux-state.git"
},
"size-limit": [
{
"path": "dist/use-redux-state.js"
}
],
"keywords": [
"react",
"redux",
"hooks",
"state"
],
"author": "Mario Rajcik",
"license": "MIT",
"bugs": {
"url": "https://github.com/isakkeyten/use-redux-state/issues"
},
"homepage": "https://github.com/isakkeyten/use-redux-state#readme",
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2"
},
"peerDependencies": {
"react-redux": "^7.2.0"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.9.0",
"microbundle": "^0.12.3",
"size-limit": "^4.9.0"
}
}