-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
44 lines (44 loc) · 912 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
43
44
{
"name": "@rehooks/window-scroll-position",
"version": "1.0.1",
"description": "React hook for Window scroll position",
"main": "index.js",
"repository": "https://github.com/rehooks/window-scroll-position",
"author": "Pave Prichodko",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"hooks",
"scroll"
],
"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": {
"lodash.throttle": "^4.1.1"
}
}