-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 KB
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
{
"name": "use-hooked-component",
"version": "3.1.1",
"description": "Update your components props directly using callbacks from a hook",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/apearce/use-hooked-component.git"
},
"keywords": [
"React",
"Components",
"Hooks"
],
"author": "Alan Pearce <alan.pearce@alttag.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apearce/use-hooked-component/issues"
},
"homepage": "https://github.com/apearce/use-hooked-component#readme",
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.14.5",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^3.7.0",
"@types/react": "^18.2.74",
"babel-preset-minify": "^0.5.1",
"jest": "^26.6.3",
"react-test-renderer": "^17.0.1",
"typescript": "^5.4.3"
},
"peerDependencies": {
"react": ">=16.9.0"
}
}