-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
48 lines (48 loc) · 1.69 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
{
"name": "react-switch-button",
"version": "2.3.8",
"private": false,
"description": "A React UI Component to display an awesome Switch (swipe) Button control",
"main": "dist/react-switch-button.js",
"author": "Giovambattista Fazioli",
"license": "MIT",
"homepage": "http://gfazioli.github.io/react-switch-button/",
"repository": {
"type": "git",
"url": "https://github.com/gfazioli/react-switch-button"
},
"bugs": {
"url": "https://github.com/gfazioli/react-switch-button/issues"
},
"scripts": {
"dev": "NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^3.2.4",
"laravel-mix": "^1.7.2",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"react": "~16.2.0",
"react-dom": "~16.2.0",
"webpack-strip-blocks": "^1.0.0"
},
"browser": "src/react-switch-button.jsx",
"browserify": {
"transform": [
"babelify"
]
},
"browserify-shim": {
"react": "global:React"
},
"keywords": [
"react",
"react-component"
]
}