-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "magnetic-slider",
"version": "1.0.4",
"description": "A lightweight extension of @material-ui's Slider component complying to a super-set of its API spec, that enables the thumb to snap to nearby marks on the slider with configurable behaviour.",
"main": "lib/MagneticSlider.js",
"scripts": {
"prepare": "rm -rf lib && NODE_ENV=production babel src --out-dir lib",
"test": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loucadufault/MagneticSlider.git"
},
"keywords": [
"react",
"slider",
"material-ui",
"mui",
"material-components",
"sliders",
"slider-range",
"slider-component",
"slider-element",
"slider-plugin",
"slider-animation",
"slider-control",
"snappy",
"snapping",
"snapping-slider"
],
"author": "Louca Dufault",
"license": "ISC",
"bugs": {
"url": "https://github.com/loucadufault/MagneticSlider/issues"
},
"homepage": "https://github.com/loucadufault/MagneticSlider#readme",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0",
"@babel/runtime": "^7.16.3",
"@material-ui/core": "^4.12.3"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0"
},
"private": false,
"sideEffects": false
}