forked from react-recompose/react-recompose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1009 Bytes
/
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
{
"name": "react-recompose",
"version": "0.32.0",
"repository": {
"type": "git",
"url": "https://github.com/swrlab/react-recompose.git"
},
"license": "MIT",
"scripts": {
"precommit": "cd build && yarn lint-staged",
"prepush": "cd build && yarn test"
},
"bugs": {
"url": "https://github.com/swrlab/react-recompose/issues"
},
"homepage": "https://github.com/swrlab/react-recompose",
"description": "A React utility belt for function components and higher-order components",
"keywords": [
"react",
"higher-order",
"components",
"microcomponentization",
"toolkit",
"utilities",
"composition"
],
"main": "lib/packages/recompose/dist/Recompose.cjs.js",
"module": "lib/packages/recompose/dist/Recompose.esm.js",
"dependencies": {
"@babel/runtime": "^7.20.7",
"change-emitter": "^0.1.2",
"hoist-non-react-statics": "^3.3.2",
"react-lifecycles-compat": "^3.0.4",
"symbol-observable": "^4.0.0"
},
"peerDependencies": {
"react": "^16.3.0 || ^17.0.0 || ^18.0.0"
}
}