-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
52
53
54
55
56
{
"name": "@dashdot/react-hooks-slider",
"version": "0.0.6",
"description": "A headless, customizable slider for React using hooks.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"build": "rollup -c",
"dev": "rollup -c -w",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"peerDependencies": {
"react": ">=16.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@dashdot/eslint-config-base": "^0.4.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"react": "18.2.0",
"rollup": "^3.9.0"
},
"eslintConfig": {
"extends": "@dashdot/eslint-config-base"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wappla/react-hooks-slider.git"
},
"keywords": [
"react",
"hooks",
"slider",
"dashdot",
"wappla",
"carousel"
],
"author": "",
"bugs": {
"url": "https://github.com/wappla/react-hooks-slider/issues"
},
"homepage": "https://github.com/wappla/react-hooks-slider#readme"
}