-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
38 lines (38 loc) · 1 KB
/
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
{
"name": "react-gemini-scrollbar",
"version": "2.3.4",
"description": "React component for custom scrollbars with native scrolling",
"main": "dist/index.js",
"scripts": {
"dist": "mkdir -p dist && babel src/index.jsx -u -o dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/noeldelgado/react-gemini-scrollbar.git"
},
"keywords": [
"react",
"scrollbars",
"scrollbar",
"native",
"scrolling",
"custom"
],
"author": "Noel Delgado <[email protected]> (http://pixelia.me/)",
"license": "MIT",
"homepage": "https://github.com/noeldelgado/react-gemini-scrollbar",
"dependencies": {
"gemini-scrollbar": "^1.5.3"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0"
}
}