🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

react-page-slider

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-page-slider - npm Package Compare versions

Comparing version

to
1.2.0

lib/index.min.js

13

package.json
{
"name": "react-page-slider",
"version": "1.1.0",
"version": "1.2.0",
"description": "To insert an overlay in a page for a customized experience",
"main": "lib/index.js",
"main": "lib/index.min.js",
"scripts": {
"start": "webpack-dev-server",
"start": "npm run compile && webpack-dev-server",
"build": "babel ./modules -d lib",

@@ -30,3 +30,2 @@ "test": "npm run lint",

"devDependencies": {
"animate.css": "^3.4.0",
"babel": "^6.5.2",

@@ -41,7 +40,9 @@ "babel-core": "^6.18.2",

"path": "^0.12.7",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
}
}

@@ -8,3 +8,5 @@ var path = require('path');

path: path.resolve(__dirname, 'lib'),
filename: "index.js"
filename: "index.min.js",
library: true,
libraryTarget: 'commonjs2'
},

@@ -20,4 +22,11 @@ module: {

// Use external version of React
"react": "React"
}
};
"react": "react"
},
plugins: [
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
})
]
};

@@ -24,3 +24,5 @@ var path = require('path');

devtool: 'source-map',
plugins: [new HtmlWebpackPlugin()]
};
plugins: [
new HtmlWebpackPlugin()
]
};