-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 877 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/visibility-sensor",
"version": "1.0.0",
"description": "React hook for Visibility Sensor",
"main": "index.js",
"repository": "https://github.com/rehooks/visibility-sensor",
"author": "Bhargav Ponnapalli",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"hooks",
"visibility-sensor"
],
"files": [
"index.*"
],
"scripts": {
"test": "ava test.js",
"example": "parcel example.html"
},
"peerDependencies": {
"react": "^16.7.0-alpha.0"
},
"devDependencies": {
"ava": "^0.25.0",
"browser-env": "^3.2.5",
"parcel": "^1.10.3",
"raf": "^3.4.0",
"react": "^16.7.0-alpha.0",
"react-dom": "^16.7.0-alpha.0",
"react-test-renderer": "^16.7.0-alpha.0"
},
"ava": {
"require": [
"./test-setup.js"
]
},
"dependencies": {}
}