-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 864 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 864 Bytes
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
{
"name": "hookompose",
"version": "0.12.5",
"description": "Hookompose allows you to call hook functions in a recompose style, giving you the best of both worlds.",
"keywords": [
"javascript",
"react",
"hook",
"recompose"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ln613/hookompose.git"
},
"main": "common",
"scripts": {
"start": "watch \"npm run build\" src",
"build": "babel src --out-dir .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Nan Li",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.9.4"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"dependencies": {
"@ln613/ipath": "^0.2.2"
}
}