-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.16 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.16 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
{
"name": "hover-carousel",
"version": "1.1.0",
"description": "The carousel allows users to view a collection of images by hovering over the container and moving their mouse horizontally. The images are displayed in a smooth scrolling manner, giving a pleasant user experience.",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/babel src --out-file index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ART3MISTICAL/hover-carousel.git"
},
"keywords": [
"carousel",
"hover",
"images",
"scroll"
],
"author": "devansharora18",
"license": "MIT",
"bugs": {
"url": "https://github.com/ART3MISTICAL/hover-carousel/issues"
},
"homepage": "https://github.com/ART3MISTICAL/hover-carousel#readme",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"jquery": "^3.7.0"
}
}