-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.22 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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "scroll-bar-indicator",
"version": "0.2.0",
"description": "A React component to display scroll position",
"main": "./dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "webpack",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"scroll",
"react",
"component",
"scroll bar",
"progress bar",
"scroll view",
"scrolling"
],
"author": "Sarah C. Siqueira",
"license": "MIT",
"homepage": "https://scroll-indicator-demo.sarahjobs.com",
"bugs": {
"url": "https://github.com/sarahcssiqueira/scroll-bar-indicator/issues",
"email": "sarahcosiqueira@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sarahcssiqueira/scroll-bar-indicator.git"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"style-loader": "^2.0.0",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2"
}
}