-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.44 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
{
"name": "react-bootstrap-native-slider",
"version": "2.0.1",
"description": "Native Slider with Boostrap Slider failover component for React",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server",
"build": "babel ./src/js/react-native-bootstrap-slider.jsx -o ./dist/react-native-bootstrap-slider.js",
"buildDemo": "npm run build && webpack",
"prepublish": "npm run build"
},
"main": "dist/react-native-bootstrap-slider.js",
"repository": {
"type": "git",
"url": "https://github.com/brownieboy/react-bootstrap-native-slider.git"
},
"keywords": [
"react-component",
"react",
"slider",
"component",
"bootstrap"
],
"bugs": {
"url": "https://github.com/brownieboy/react-bootstrap-native-slider/issues"
},
"author": "Michael Brown <brownieboy@gmail.com>",
"license": "MIT",
"dependencies": {
"detect-browser": "^1.3.1",
"es6bindall": "^0.0.3",
"react": "^15.0.1",
"react-bootstrap-slider": "^1.0.0",
"react-dom": "^15.0.1",
"react-html5-slider": "^0.1.1"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"path": "^0.12.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.9.0"
}
}