-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.51 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.51 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "react-bootstrap-slider",
"version": "3.0.0",
"main": "dist/react-bootstrap-slider.js",
"description": "Bootstrap Slider component for React",
"repository": {
"type": "git",
"url": "https://github.com/brownieboy/react-bootstrap-slider.git"
},
"keywords": [
"react-component",
"react",
"slider",
"component",
"bootstrap"
],
"bugs": {
"url": "https://github.com/brownieboy/react-bootstrap-slider/issues"
},
"author": "Michael Brown <brownieboy@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"@babel/plugin-transform-modules-umd": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/register": "^7.10.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-es3": "^1.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"dependencies": {
"bootstrap-slider": "^11.0.2"
},
"peerDependencies": {
"bootstrap": "^4.5.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"scripts": {
"build": "NODE_ENV=production node_modules/.bin/babel ./src/react-bootstrap-slider.js -o ./dist/react-bootstrap-slider.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}