forked from rehooks/component-size
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 844 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
40
41
42
{
"name": "@rehooks/component-size",
"version": "1.0.3",
"description": "React hook for component-size",
"main": "index.js",
"repository": "https://github.com/rehooks/component-size",
"author": "Fouad Matin <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"hooks",
"component-size"
],
"files": [
"index.*"
],
"scripts": {
"test": "ava test.js",
"example": "parcel example.html"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@types/react": "16.4.18",
"ava": "0.25.0",
"browser-env": "3.2.5",
"parcel": "^1.12.3",
"raf": "3.4.0",
"react": "16.8.1",
"react-dom": "16.8.1",
"react-test-renderer": "16.8.1"
},
"ava": {
"require": [
"./test-setup.js"
]
}
}