forked from drownbes/react-use-sync-scroll
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 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
47
48
{
"name": "react-use-sync-scroll",
"version": "0.1.0",
"description": "A custom React hook for synchronized DOM element scrolling",
"keywords": [
"react",
"hook",
"sync",
"synchronized",
"scroll",
"scrolling",
"dom",
"element"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/agorf/react-use-sync-scroll.git"
},
"author": "Angelos Orfanakos",
"license": "MIT",
"bugs": {
"url": "https://github.com/agorf/react-use-sync-scroll/issues"
},
"homepage": "https://github.com/agorf/react-use-sync-scroll",
"devDependencies": {
"@babel/core": "^7.4.5",
"babel-eslint": "^10.0.2",
"eslint": "^5.16.0",
"eslint-plugin-react-hooks": "^1.6.0",
"rollup": "^1.13.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-copy": "^3.1.0"
},
"peerDependencies": {
"react": ">=16.8"
},
"files": [
"dist"
],
"types": "dist/index.d.ts"
}