Socket
Socket
Sign inDemoInstall

react-json-editor-ajrm

Package Overview
Dependencies
13
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.0.2 to 2.0.3

13

package.json
{
"name": "react-json-editor-ajrm",
"version": "2.0.2",
"version": "2.0.3",
"description": "A stylish, editor-like, modular, react component for viewing, editing, and debugging javascript object syntax!",

@@ -44,12 +44,11 @@ "author": "andrew.redican.mejia@gmail.com",

"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-remove-strict-mode": "0.0.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-remove-strict-mode": "0.0.2",
"webpack": "^3.10.0",
"react": ">=16.2.0",
"react-dom": ">=16.2.0",
"uglifyjs-webpack-plugin": "^1.1.8",
"react": ">=16.2.0",
"react-dom": ">=16.2.0"
"webpack": "^3.10.0"
}
}

@@ -10,14 +10,13 @@ const

entry : [
'babel-polyfill',
'./src/index.js'
],
output: {
path : path.join(__dirname, './dist'),
filename : 'index.js',
library : libraryName,
libraryTarget : 'umd',
publicPath : '/dist/',
umdNamedDefine : true
output: {
path : path.join(__dirname, './dist'),
filename : 'index.js',
library : libraryName,
libraryTarget : 'umd',
publicPath : '/dist/',
umdNamedDefine : true
},
plugins : [
plugins : [
new webpack.DefinePlugin({ 'process.env.NODE_ENV': 'true' }),

@@ -42,22 +41,22 @@ new UglifyJSPlugin()

},
resolve: {
alias: {
resolve: {
alias: {
react : path.resolve(__dirname, './node_modules/react'),
'react-dom': path.resolve(__dirname, './node_modules/react-dom'),
}
'react-dom': path.resolve(__dirname, './node_modules/react-dom')
}
},
externals: {
react: {
commonjs : 'react',
commonjs2 : 'react',
amd : 'React',
root : 'React'
},
'react-dom': {
commonjs : 'react-dom',
commonjs2 : 'react-dom',
amd : 'ReactDOM',
root : 'ReactDOM'
}
react: {
commonjs : 'react',
commonjs2 : 'react',
amd : 'React',
root : 'React'
},
'react-dom': {
commonjs : 'react-dom',
commonjs2 : 'react-dom',
amd : 'ReactDOM',
root : 'ReactDOM'
}
}
}

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc