-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.05 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": "react-use-sync-scroll",
"version": "0.0.6",
"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"
},
"peerDependencies": {
"react": ">=16.8"
},
"files": [
"dist"
]
}