-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.09 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
72
73
74
75
76
{
"name": "react-restfully",
"version": "1.1.2",
"main": "src/index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"lint": "node_modules/.bin/eslint src/ --ext .js --format 'node_modules/eslint-codeframe-formatter'"
},
"repository": "https://github.com/nucleuslabs/react-restfully",
"keywords": [
"react",
"hook",
"promise",
"fetch"
],
"contributors": [
{
"name": "Miroslav Glamuzina",
"email": "[email protected]",
"url": "https://nucleuslabs.com"
}
],
"author": "Miroslav Glamuzina",
"license": "MIT",
"description": "React Restfully is a set of React Hooks and their analogous vanilla JS functions that assist you in fetching data using the fetch() api.",
"jest": {
"testMatch": [
"**/__tests__/**/*.(spec|test).[jt]s?(x)"
],
"setupFilesAfterEnv": [
"jest-extended"
],
"collectCoverageFrom": [
"**/src/*.js",
"**/src/fetch/*.js",
"**/src/hooks/*.jsx"
]
},
"peerDependencies": {
"react": "^18.2",
"react-dom": "^18.2",
"@babel/cli": "^7",
"@babel/core": "^7",
"@babel/plugin-transform-runtime": "^7",
"@babel/plugin-proposal-optional-chaining": "^7",
"@babel/preset-env": "^7",
"@babel/preset-react": "^7"
},
"devDependencies": {
"react": "^18.2",
"react-dom": "^18.2",
"@babel/cli": "^7",
"@babel/core": "^7",
"@babel/plugin-transform-runtime": "^7",
"@babel/plugin-proposal-optional-chaining": "^7",
"@babel/preset-env": "^7",
"@babel/preset-react": "^7",
"@testing-library/react": "^13",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-codeframe-formatter": "^1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.1.0",
"jest-extended": "^0.11.5",
"react-test-renderer": "^18.2",
"node-fetch": "^2",
"fetch-mock": "^9.11.0"
}
}