-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "react-use-fetch-api",
"version": "2.1.0",
"description": "React hook for making simple JSON API requests using the browser Fetch API",
"author": "Mercedes Bernard",
"repository": {
"type": "git",
"url": "git+https://github.com/mercedesb/react-use-fetch-api.git"
},
"bugs": {
"url": "https://github.com/mercedesb/react-use-fetch-api/issues"
},
"homepage": "https://github.com/mercedesb/react-use-fetch-api#readme",
"keywords": [
"react",
"hooks",
"api",
"fetch",
"fetch api"
],
"license": "MIT",
"private": false,
"main": "./lib/index.js",
"scripts": {
"test": "jest",
"prepublish": "babel src --out-dir lib"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"babel-jest": "^25.1.0",
"jest": "^25.1.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@babel/runtime": "^7.8.4"
}
}