-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
71 lines (71 loc) · 1.78 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
64
65
66
67
68
69
70
71
{
"name": "use-axios-react",
"version": "0.2.3",
"description": "Axios in React in the hooks era",
"source": "src/index.js",
"main": "lib/index.js",
"module": "lib/index.module.js",
"scripts": {
"test": "jest --config jest.config.json --no-cache",
"build": "microbundle",
"eslint": "eslint . --ext .js --ignore-path .gitignore",
"eslint:fix": "eslint . --ext .js --ignore-path .gitignore --fix",
"prepublishOnly": "npm run build"
},
"files": [
"lib",
"src"
],
"author": "Sergey Sytsevich <[email protected]>",
"homepage": "https://github.com/sergey-s/use-axios-react",
"repository": "github:sergey-s/use-axios-react",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.0",
"axios": "^0.18.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@testing-library/react-hooks": "^2.0.1",
"axios": "^0.19.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^24.9.0",
"microbundle": "^0.11.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-hooks-testing-library": "^0.6.0",
"react-test-renderer": "^16.9.0"
},
"keywords": [
"react",
"axios",
"http",
"api",
"useAxios",
"react hook",
"react hooks",
"react async",
"react-async",
"react-hook",
"axios hook",
"axios hooks",
"axios-hook",
"use",
"use-axios",
"use-axios-react",
"fetch",
"hook",
"hooks",
"fetch",
"request"
]
}