-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
56
57
58
59
60
61
62
63
{
"name": "redux-rad-requests",
"version": "2.0.0",
"author": "Chadwick Dahlquist",
"description": "Redux tooling for managing async request actions with react hooks. Prevent race conditions. Build responsive UIs. Rad.",
"main": "index.js",
"scripts": {
"lint": "eslint ./src",
"test": "NODE_ENV=test nyc tape '{,!(node_modules)/**/}*.test.js' | faucet && nyc report --check-coverage",
"test:one": "NODE_ENV=test tape"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bugeats/redux-rad-requests.git"
},
"license": "ISC",
"homepage": "https://github.com/bugeats/redux-rad-requests#readme",
"bugs": {
"url": "https://github.com/bugeats/redux-rad-requests/issues"
},
"peerDependencies": {
"react": "^17.x",
"react-redux": "^7.x",
"redux": "^4.x"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"babel-tape-runner": "^3.0.0",
"enzyme": "^3.11.0",
"eslint": "^7.27.0",
"faucet": "0.0.1",
"jsdom": "16.6.0",
"jsdom-global": "3.0.2",
"nyc": "^15.1.0",
"react-dom": "^17.0.2",
"tape": "^5.2.2"
},
"keywords": [
"actions",
"async",
"dispatch",
"promise",
"promise-middleware",
"react",
"react-hook",
"react-hooks",
"reducer",
"reducers",
"redux",
"redux-middleware",
"redux-reducer",
"request",
"requests",
"response",
"responses",
"selector",
"selectors",
"thunk"
]
}