{"_id":"react-webpack-rails","_rev":"29-d7c7ecba63d011594a2e6d84f12fad84","name":"react-webpack-rails","time":{"modified":"2022-06-26T08:55:08.160Z","created":"2016-01-15T01:00:31.842Z","0.0.1":"2016-01-15T01:00:31.842Z","0.0.2":"2016-01-15T01:09:11.047Z","0.0.3":"2016-01-18T00:31:35.838Z","0.0.4":"2016-01-18T19:41:18.706Z","0.0.5":"2016-01-24T13:51:08.946Z","0.0.6":"2016-01-26T19:39:16.181Z","0.1.0":"2016-01-27T16:25:52.494Z","0.1.0-ssrPrev1":"2016-01-29T18:37:00.700Z","0.1.0-ssrPrev2":"2016-01-30T11:49:51.344Z","0.1.1":"2016-02-02T15:46:51.859Z","0.1.2":"2016-02-03T21:03:01.413Z","0.2.0":"2016-02-10T20:51:43.441Z","0.2.1":"2016-02-22T12:08:42.119Z","0.3.0":"2016-03-23T10:52:14.814Z","0.3.1":"2016-03-29T09:58:37.820Z","0.4.0":"2016-04-17T20:05:33.018Z","0.4.1":"2016-04-23T16:04:16.111Z","0.5.0":"2016-07-21T15:01:52.258Z","0.6.0":"2016-08-19T16:55:05.003Z","0.7.0":"2017-03-30T11:49:33.228Z"},"maintainers":[{"name":"netguru","email":"react@netguru.co"},{"name":"papermana","email":"yzukonta@gmail.com"}],"dist-tags":{"latest":"0.7.0"},"description":"Js part of react_webpack_rails - webpack based React & Rails integration.","readme":"# ReactWebpackRails\n[![Travis CI](https://travis-ci.org/netguru/react_webpack_rails.svg?branch=master)](https://travis-ci.org/netguru/react_webpack_rails)\n\n#### Rails - Webpack setup with React integration.\nThis gem provides easy and convenient way to build modern JavaScript stack on top of Rails applications using [Webpack](http://webpack.github.io/) and [React](https://facebook.github.io/react/).\n\n## Features\n* [Install Generator](https://github.com/netguru/react_webpack_rails/blob/master/docs/install_generator.md) for quick [Webpack](http://webpack.github.io/) setup.\n* Integrated [react-hot-loader](https://github.com/gaearon/react-hot-loader)\n* ES6/7 support with [babeljs](https://babeljs.io/).\n* Node.js based [server-side JavaScript execution](https://github.com/netguru/react_webpack_rails/blob/master/docs/server_side_rendering.md).\n* [React](https://facebook.github.io/react/) integration with server prerender option.\n\n### Plugins:\n* [rwr-alt](https://github.com/netguru/rwr-alt) plugin that makes it possible to populate and share Alt stores between react component located in different parts of rails views.\n* [rwr-redux](https://github.com/netguru/rwr-redux) allows to use redux state containers in a rails views.\n* [rwr-react_router](https://github.com/netguru/rwr-react_router) react-router integration.\n* [rwr-view_helpers](https://github.com/netguru/rwr-view_helpers) handy view helpers.\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'react_webpack_rails'\n```\n\nExecute:\n\n    $ bundle\n\nThen run installation:\n\n    $ rails g react_webpack_rails:install\n\n*read more about [`install  generator`](https://github.com/netguru/react_webpack_rails/blob/master/docs/install_generator.md)*\n\n### Babel\n\nBy default, `react-webpack-rails` uses Babel Stage 1 - Proposal. If you want to change the stage, you can do so in the `.babelrc` file. It is however not recommended to use Stage 0 in a production app, because the features present there can be dropped, which would break your application.\n\n## Usage\n##### Check [docs](https://github.com/netguru/react_webpack_rails/tree/master/docs) for detailed api description.\n#### to use hot-reloading add partial in your application.html.erb to `<body>`:\n(it's not needed when you want to use just webpack in watch mode without hot-reloading)\n```erb\n<%= render 'layouts/react_hot_assets' %>\n```\n\n#### Register component in index.js\n\n```js\nimport Component from './components/some-component';\nRWR.registerComponent('customComponentName', Component);\n```\n\n#### Use it in rails view\n\n```erb\n<%= react_component('customComponentName', { user: User.last }) %>\n```\n\n#### Use it in javascript file\n\n```js\nconst element = $('#my-element');\nRWR.renderComponent('customComponentName', {user_id: 1}, element);\n```\n\n#### Render component in controller\n\n```ruby\ndef action_name\n  render react_component: 'customComponentName', props: { user_id: 1 }\nend\n```\n\n### Development environment\nRun webpack in watch mode using script:\n\n    $ npm start\n\nRun webpack in hot-auto-reloading mode using script (to use it you have to add `react_hot_assets` partial as mentioned before):\n\n    $ npm run start-hot-dev\n\nIf you are using server side render in components *(it's enabled by default in generated example)*, run node server:\n\n    $ npm run rwr-node-dev-server\n\n### Production environment\nRun webpack in production mode before compiling assets using script:\n\n    $ npm run build\n\nIf you are using server side render *(it's enabled by default in generated example)*, run node server:\n\n    $ npm run rwr-node-server\n\n#### Deployment\nCheck [docs/deployment.md](docs/deployment.md)\n\n## Contributing\n\nSee the [contribution guide](https://github.com/netguru/react_webpack_rails/blob/master/CONTRIBUTING.md).\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).\n","versions":{"0.1.0":{"name":"react-webpack-rails","version":"0.1.0","description":"Js part of react_webpack_rails - webpack based React & Rails integration.","main":"js/lib/index.js","files":["js/lib"],"scripts":{"compile":"babel --presets es2015 -d js/lib/ js/src/","prepublish":"npm run compile","test":"mocha js/test --ui bdd --recursive --require babel-core/register"},"repository":{"type":"git","url":"git+https://github.com/netguru/react_webpack_rails.git"},"keywords":["react","rails","webpack","react_webpack_rails"],"author":{"name":"Rafał Gawlik"},"license":"MIT","bugs":{"url":"https://github.com/netguru/react_webpack_rails/issues"},"homepage":"https://github.com/netguru/react_webpack_rails#readme","peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"dependencies":{"babel-polyfill":"^6.3.0"},"devDependencies":{"babel-cli":"^6.4.0","babel-core":"^6.4.0","babel-preset-es2015":"^6.3.0","babel-preset-react":"^6.3.0","eslint":"^1.10.3","eslint-config-airbnb":"^3.1.0","eslint-plugin-react":"^3.15.0","expect":"^1.13.4","history":"^1.17.0","mocha":"^2.3.4"},"gitHead":"08c656b4ddf1f48914739fb295d7b4ac0592aefe","_id":"react-webpack-rails@0.1.0","_shasum":"67c7a2fefcd66043e4826bd26308de6d579dc1c4","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"netguru","email":"react@netguru.co"},"dist":{"shasum":"67c7a2fefcd66043e4826bd26308de6d579dc1c4","tarball":"https://registry.npmjs.org/react-webpack-rails/-/react-webpack-rails-0.1.0.tgz","integrity":"sha512-dvFNj8b1ZZbUQSJjMn56OaJLYTm5gnVvPaCi+8evQJSGf5Sjo9hVWPZFpNnlCFldHQbxz3dv/s2CPk+ro4ifaw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDDbs305ihBOnPSAbNtb1CpCQSElHgb1psPWqPAIqSgrwIgYLCuDGdIpzLYCq0q9vC5FunKu+Zc3LDKSlgah9g/YFg="}]},"maintainers":[{"name":"netguru","email":"react@netguru.co"}]},"0.1.0-ssrPrev1":{"name":"react-webpack-rails","version":"0.1.0-ssrPrev1","description":"Js part of react_webpack_rails - webpack based React & Rails integration.","main":"js/lib/index.js","files":["js/lib"],"scripts":{"compile":"babel --presets es2015 -d js/lib/ js/src/","prepublish":"npm run compile","test":"mocha js/test --ui bdd --recursive --require babel-core/register"},"repository":{"type":"git","url":"git+https://github.com/netguru/react_webpack_rails.git"},"keywords":["react","rails","webpack","react_webpack_rails"],"author":{"name":"Rafał Gawlik"},"license":"MIT","bugs":{"url":"https://github.com/netguru/react_webpack_rails/issues"},"homepage":"https://github.com/netguru/react_webpack_rails#readme","peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"dependencies":{"babel-polyfill":"^6.3.0"},"devDependencies":{"babel-cli":"^6.4.0","babel-core":"^6.4.0","babel-preset-es2015":"^6.3.0","babel-preset-react":"^6.3.0","eslint":"^1.10.3","eslint-config-airbnb":"^3.1.0","eslint-plugin-react":"^3.15.0","expect":"^1.13.4","history":"^1.17.0","mocha":"^2.3.4"},"gitHead":"18a84868df02001441adb5e2a24b68958e690aa7","_id":"react-webpack-rails@0.1.0-ssrPrev1","_shasum":"cd63f10e41361985930b920ae0782ae4c4bd0198","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"netguru","email":"react@netguru.co"},"dist":{"shasum":"cd63f10e41361985930b920ae0782ae4c4bd0198","tarball":"https://registry.npmjs.org/react-webpack-rails/-/react-webpack-rails-0.1.0-ssrPrev1.tgz","integrity":"sha512-fLPlRWRmeC8GFfy7ivzsU+r0kyKcP7bnOfqVDx8d9f06etrAECd/3/c0FL4SbgW4p9ruDOqJ6xp+Ff0c/S+AWg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC6YyKnDH5c5N01LaMafa4sVoTii00lkXkxv7zqfqca/gIhAPPIk6BrgNP/DRW8Mb11LymmUkoQ51zfgwU2DnvchyVw"}]},"maintainers":[{"name":"netguru","email":"react@netguru.co"}]},"0.1.0-ssrPrev2":{"name":"react-webpack-rails","version":"0.1.0-ssrPrev2","description":"Js part of react_webpack_rails - webpack based React & Rails integration.","main":"js/lib/index.js","files":["js/lib"],"scripts":{"compile":"babel --presets es2015 -d js/lib/ js/src/","prepublish":"npm run compile","test":"mocha js/test --ui bdd --recursive --require babel-core/register"},"repository":{"type":"git","url":"git+https://github.com/netguru/react_webpack_rails.git"},"keywords":["react","rails","webpack","react_webpack_rails"],"author":{"name":"Rafał Gawlik"},"license":"MIT","bugs":{"url":"https://github.com/netguru/react_webpack_rails/issues"},"homepage":"https://github.com/netguru/react_webpack_rails#readme","peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"dependencies":{"babel-polyfill":"^6.3.0"},"devDependencies":{"babel-cli":"^6.4.0","babel-core":"^6.4.0","babel-preset-es2015":"^6.3.0","babel-preset-react":"^6.3.0","eslint":"^1.10.3","eslint-config-airbnb":"^3.1.0","eslint-plugin-react":"^3.15.0","expect":"^1.13.4","history":"^1.17.0","mocha":"^2.3.4"},"gitHead":"a824bfd57c21d41e186412c031a04c7736c4b538","_id":"react-webpack-rails@0.1.0-ssrPrev2","_shasum":"13c44e806862e31442cf73cce6da9510af256c2d","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"netguru","email":"react@netguru.co"},"dist":{"shasum":"13c44e806862e31442cf73cce6da9510af256c2d","tarball":"https://registry.npmjs.org/react-webpack-rails/-/react-webpack-rails-0.1.0-ssrPrev2.tgz","integrity":"sha512-G6Z5jRaJZhN2MJC5Ujj/nB2mgShAxTqtZWSYsxbKZ4JKo2uNH18CMF6WgH2oXU23RF8Us8+66X6TOhLeRJqiHQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGJGv+wxeKdWYiGoIAV6xe1FTLmQse6rMlxhasvoxUIUAiBVy4GdfHatCZkkBN8DoKrZ88r2d+O+6BRRnB4KbDwXKg=="}]},"maintainers":[{"name":"netguru","email":"react@netguru.co"}]},"0.1.1":{"name":"react-webpack-rails","version":"0.1.1","description":"Js part of react_webpack_rails - webpack based React & Rails integration.","main":"js/lib/index.js","files":["js/lib"],"scripts":{"compile":"babel --presets es2015 -d js/lib/ js/src/","prepublish":"npm run compile","test":"mocha js/test --ui bdd --recursive --require babel-core/register"},"repository":{"type":"git","url":"git+https://github.com/netguru/react_webpack_rails.git"},"keywords":["react","rails","webpack","react_webpack_rails"],"author":{"name":"Rafał Gawlik"},"license":"MIT","bugs":{"url":"https://github.com/netguru/react_webpack_rails/issues"},"homepage":"https://github.com/netguru/react_webpack_rails#readme","peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"dependencies":{"babel-polyfill":"^6.3.0"},"devDependencies":{"babel-cli":"^6.4.0","babel-core":"^6.4.0","babel-preset-es2015":"^6.3.0","babel-preset-react":"^6.3.0","eslint":"^1.10.3","eslint-config-airbnb":"^3.1.0","eslint-plugin-react":"^3.15.0","expect":"^1.13.4","history":"^1.17.0","mocha":"^2.3.4"},"gitHead":"5fbb2b39ee3e45e1f271ba88519ef01b02476ef9","_id":"react-webpack-rails@0.1.1","_shasum":"fd2d3bf6c229bbabfd45c6fff1776a6e6900f4e7","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"netguru","email":"react@netguru.co"},"dist":{"shasum":"fd2d3bf6c229bbabfd45c6fff1776a6e6900f4e7","tarball":"https://registry.npmjs.org/react-webpack-rails/-/react-webpack-rails-0.1.1.tgz","integrity":"sha512-xyngVbl3Jz336aMRoJzyNGOVb+Qn1ho4duEcbI/kWTBI7YBMVld7DjiswCeaogoHBmnVcm1MdbwR8aIK/xDXbQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAYg3HTn0UL+qqpTOaC1OlOuTicgm3FPdLwh6KVkUUTEAiB4AOISo6+IyT/v9LQz+wTaEoZ7ROditGoEpG9o4yXHDg=="}]},"maintainers":[{"name":"netguru","email":"react@netguru.co"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/react-webpack-rails-0.1.1.tgz_1454428010925_0.671194443013519"}},"0.1.2":{"name":"react-webpack-rails","version":"0.1.2","description":"Js part of react_webpack_rails - webpack based React & Rails integration.","main":"js/lib/index.js","files":["js/lib"],"scripts":{"compile":"babel --presets es2015 -d js/lib/ js/src/","prepublish":"npm run compile","test":"mocha js/test --ui bdd --recursive --require babel-core/register"},"repository":{"type":"git","url":"git+https://github.com/netguru/react_webpack_rails.git"},"keywords":["react","rails","webpack","react_webpack_rails"],"author":{"name":"Rafał Gawlik"},"license":"MIT","bugs":{"url":"https://github.com/netguru/react_webpack_rails/issues"},"homepage":"https://github.com/netguru/react_webpack_rails#readme","peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"dependencies":{"babel-polyfill":"^6.3.0"},"devDependencies":{"babel-cli":"^6.4.0","babel-core":"^6.4.0","babel-preset-es2015":"^6.3.0","babel-preset-react":"^6.3.0","eslint":"^1.10.3","eslint-config-airbnb":"^3.1.0","eslint-plugin-react":"^3.15.0","expect":"^1.13.4","history":"^1.17.0","mocha":"^2.3.4"},"gitHead":"a56ef6a2ca65fdf7caa2481bc3d3edfa205a3e5c","_id":"react-webpack-rails@0.1.2","_shasum":"abd3194dc79baa5e5b019473f64c0607a0b52eff","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"netguru","email":"react@netguru.co"},"dist":{"shasum":"abd3194dc79baa5e5b019473f64c0607a0b52eff","tarball":"https://registry.npmjs.org/react-webpack-rails/-/react-webpack-rails-0.1.2.tgz","integrity":"sha512-7cOQirBXoOpbWPz1UZcMDf+sVXLIN84RX8JAzUnqM6nB9sDT8h2h6UAd0AVxXcVo/UEm4i/7QWaa+Z2Y/X37aQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID86x3psKVxDKOztPYPYMTKbnBKUvAsEmMcFeWze+kT1AiAmfhoaSNRNdjYGs9wCUPFdiMOlbP8puaCMNQoU2qCw+A=="}]},"maintainers":[{"name":"netguru","email":"react@netguru.co"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/react-webpack-rails-0.1.2.tgz_1454533380093_0.586377409985289"}},"0.2.0":{"name":"react-webpack-rails","version":"0.2.0","description":"Js part of react_webpack_rails - webpack based React & Rails integration.","main":"js/lib/index.js","files":["js/lib"],"scripts":{"compile":"babel --presets es2015 -d js/lib/ js/src/","prepublish":"npm run compile","test":"mocha js/test --ui bdd --recursive --require babel-core/register"},"repository":{"type":"git","url":"git+https://github.com/netguru/react_webpack_rails.git"},"keywords":["react","rails","webpack","react_webpack_rails"],"author":{"name":"Rafał Gawlik"},"license":"MIT","bugs":{"url":"https://github.com/netguru/react_webpack_rails/issues"},"homepage":"https://github.com/netguru/react_webpack_rails#readme","peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"dependencies":{"babel-polyfill":"^6.3.0"},"devDependencies":{"babel-cli":"^6.4.0","babel-core":"^6.4.0","babel-preset-es2015":"^6.3.0","babel-preset-react":"^6.3.0","eslint":"^1.10.3","eslint-config-airbnb":"^3.1.0","eslint-plugin-react":"^3.15.0","expect":"^1.13.4","history":"^1.17.0","mocha":"^2.3.4"},"gitHead":"415436db2935d35dd3cf2a3de0f5e65dc6d4326f","_id":"react-webpack-rails@0.2.0","_shasum":"0465497f6d99549486b955bc583d96051fd4c022","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"netguru","email":"react@netguru.co"},"dist":{"shasum":"0465497f6d99549486b955bc583d96051fd4c022","tarball":"https://registry.npmjs.org/react-webpack-rails/-/react-webpack-rails-0.2.0.tgz","integrity":"sha512-cQfkb4azxMwsCGD5QVDLRbvsNDCNYY2QuzessRnJA5GFWEm15vuHWEY4SAHDnEtsIsAfrtOJYHlgpiie+wZmoA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC5amTyQJE5BsVCf7ZN427Cs7ldMZ3xlqGSOnbF7t1GSAiEArRZMBnYxMuNSRzv6WIaI1LK+/bulH2zIzekOZDb9xIo="}]},"maintainers":[{"name":"netguru","email":"react@netguru.co"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/react-webpack-rails-0.2.0.tgz_1455137501703_0.22750026476569474"}},"0.2.1":{"name":"react-webpack-rails","version":"0.2.1","description":"Js part of react_webpack_rails - webpack based React & Rails integration.","main":"js/lib/index.js","files":["js/lib"],"scripts":{"compile":"babel --presets es2015 -d js/lib/ js/src/","prepublish":"npm run compile","test":"mocha js/test --ui bdd --recursive --require babel-core/register"},"repository":{"type":"git","url":"git+https://github.com/netguru/react_webpack_rails.git"},"keywords":["react","rails","webpack","react_webpack_rails"],"author":{"name":"Rafał Gawlik"},"license":"MIT","bugs":{"url":"https://github.com/netguru/react_webpack_rails/issues"},"homepage":"https://github.com/netguru/react_webpack_rails#readme","peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"dependencies":{"babel-polyfill":"^6.3.0"},"devDependencies":{"babel-cli":"^6.4.0","babel-core":"^6.4.0","babel-preset-es2015":"^6.3.0","babel-preset-react":"^6.3.0","eslint":"^1.10.3","eslint-config-airbnb":"^3.1.0","eslint-plugin-react":"^3.15.0","expect":"^1.13.4","history":"^1.17.0","mocha":"^2.3.4"},"gitHead":"87bfd2c5aec6be68b71f5421d0cd4043ebc63b30","_id":"react-webpack-rails@0.2.1","_shasum":"9c251c3647e57b8c15694121ea2e43e70b427d66","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.12.7","_npmUser":{"name":"netguru","email":"react@netguru.co"},"dist":{"shasum":"9c251c3647e57b8c15694121ea2e43e70b427d66","tarball":"https://registry.npmjs.org/react-webpack-rails/-/react-webpack-rails-0.2.1.tgz","integrity":"sha512-69t4jg915RzHqfrAaM8/MaiF1YENM4ehvXn9cl2xQIXEf25P5UQsdxwbNsUko35Q2FGJf8rrusGyZ9gDRkwihQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFGgio015vyBFT8bk1FXykICTYFKWHX0u/D5SxJhXNlWAiBwhGRZGuA/oZL1n6VZgAkgPHSz7B/VNjsjtccK1hYXZg=="}]},"maintainers":[{"name":"netguru","email":"react@netguru.co"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/react-webpack-rails-0.2.1.tgz_1456142916311_0.7978555695153773"}},"0.3.0":{"name":"react-webpack-rails","version":"0.3.0","description":"Js part of react_webpack_rails - webpack based React & Rails integration.","main":"js/lib/index.js","files":["js/lib"],"scripts":{"compile":"babel --presets es2015 -d js/lib/ js/src/","prepublish":"npm run compile","test":"mocha js/test --ui bdd --recursive --require babel-core/register"},"repository":{"type":"git","url":"git+https://github.com/netguru/react_webpack_rails.git"},"keywords":["react","rails","webpack","react_webpack_rails"],"author":{"name":"Rafał Gawlik"},"license":"MIT","bugs":{"url":"https://github.com/netguru/react_webpack_rails/issues"},"homepage":"https://github.com/netguru/react_webpack_rails#readme","peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"dependencies":{"babel-polyfill":"^6.3.0"},"devDependencies":{"babel-cli":"^6.4.0","babel-core":"^6.4.0","babel-preset-es2015":"^6.3.0","babel-preset-react":"^6.3.0","eslint":"^1.10.3","eslint-config-airbnb":"^3.1.0","eslint-plugin-react":"^3.15.0","expect":"^1.13.4","history":"^1.17.0","mocha":"^2.3.4"},"gitHead":"d3af6e3ae5dcc090d98c83f37ac1715a3e67fc36","_id":"react-webpack-rails@0.3.0","_shasum":"9c85e1baf97f9fbfd2d53dab317741c03fc506d8","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.0.0","_npmUser":{"name":"netguru","email":"react@netguru.co"},"dist":{"shasum":"9c85e1baf97f9fbfd2d53dab317741c03fc506d8","tarball":"https://registry.npmjs.org/react-webpack-rails/-/react-webpack-rails-0.3.0.tgz","integrity":"sha512-ig9ZSBo1WYE3nwMwC+X9/Vx0MGgfp+Wk8Zzr4CA7bvISDs7gPozF3rWeKJ9yBE2UBznsF/upM7hpKUzYXzEz8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD4KgufEcXA3+53b8Rcr1CWHp7oAUnu2WwYByopyMgTKwIgIYTEhA1Je6zb0yYDZUgMQQ1uThnDcT/GyFeG5k/akTI="}]},"maintainers":[{"name":"netguru","email":"react@netguru.co"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-webpack-rails-0.3.0.tgz_1458730332459_0.23769696173258126"}},"0.3.1":{"name":"react-webpack-rails","version":"0.3.1","description":"Js part of react_webpack_rails - webpack based React & Rails integration.","main":"js/lib/index.js","files":["js/lib"],"scripts":{"compile":"babel --presets es2015 -d js/lib/ js/src/","prepublish":"npm run compile","test":"mocha js/test --ui bdd --recursive --require babel-core/register"},"repository":{"type":"git","url":"git+https://github.com/netguru/react_webpack_rails.git"},"keywords":["react","rails","webpack","react_webpack_rails"],"author":{"name":"Rafał Gawlik"},"license":"MIT","bugs":{"url":"https://github.com/netguru/react_webpack_rails/issues"},"homepage":"https://github.com/netguru/react_webpack_rails#readme","peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"dependencies":{"babel-polyfill":"^6.3.0"},"devDependencies":{"babel-cli":"^6.4.0","babel-core":"^6.4.0","babel-preset-es2015":"^6.3.0","babel-preset-react":"^6.3.0","eslint":"^1.10.3","eslint-config-airbnb":"^3.1.0","eslint-plugin-react":"^3.15.0","expect":"^1.13.4","history":"^1.17.0","mocha":"^2.3.4"},"gitHead":"07af227330d034f33d8061f36793e2278c9694a2","_id":"react-webpack-rails@0.3.1","_shasum":"10c38f6fd80f064d1949fed1863d61180b529ee0","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.0.0","_npmUser":{"name":"netguru","email":"react@netguru.co"},"dist":{"shasum":"10c38f6fd80f064d1949fed1863d61180b529ee0","tarball":"https://registry.npmjs.org/react-webpack-rails/-/react-webpack-rails-0.3.1.tgz","integrity":"sha512-vq/D1LDATj5fGyGEHv/FImxYExZvqiDBLEFCLJWmyh2pYYbphntgcet16J9pgVES0n90n6LDnjwcBkJe6akU8Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDZBiA5NGd/nMcMxtnSXrgY1r5uGXgo+cfyWBGTKoMKwgIgJdvoGVKH7bYEb8oviOc+QYKA6wPKF00pbObvK9WNU0w="}]},"maintainers":[{"name":"netguru","email":"react@netguru.co"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-webpack-rails-0.3.1.tgz_1459245515155_0.5367595846764743"}},"0.4.0":{"name":"react-webpack-rails","version":"0.4.0","description":"Js part of react_webpack_rails - webpack based React & Rails integration.","main":"js/lib/index.js","files":["js/lib"],"scripts":{"compile":"babel --presets es2015 -d js/lib/ js/src/","prepublish":"npm run compile","test":"mocha js/test --ui bdd --recursive --require babel-core/register"},"repository":{"type":"git","url":"git+https://github.com/netguru/react_webpack_rails.git"},"keywords":["react","rails","webpack","react_webpack_rails"],"author":{"name":"Rafał Gawlik"},"license":"MIT","bugs":{"url":"https://github.com/netguru/react_webpack_rails/issues"},"homepage":"https://github.com/netguru/react_webpack_rails#readme","peerDependencies":{"react":"^15.0.0","react-dom":"^15.0.0"},"dependencies":{"babel-polyfill":"^6.3.0","react":"^15.0.1","react-dom":"^15.0.1"},"devDependencies":{"babel-cli":"^6.4.0","babel-core":"^6.4.0","babel-preset-es2015":"^6.3.0","babel-preset-react":"^6.3.0","eslint":"^1.10.3","eslint-config-airbnb":"^3.1.0","eslint-plugin-react":"^3.15.0","expect":"^1.13.4","history":"^1.17.0","mocha":"^2.3.4"},"gitHead":"daf0f392d35a7fc1771c299e6440645be05c0f86","_id":"react-webpack-rails@0.4.0","_shasum":"1ce28a89dd506a26153f9a6baf1da3d40db3ce17","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"netguru","email":"react@netguru.co"},"dist":{"shasum":"1ce28a89dd506a26153f9a6baf1da3d40db3ce17","tarball":"https://registry.npmjs.org/react-webpack-rails/-/react-webpack-rails-0.4.0.tgz","integrity":"sha512-z9BdVGBHuRNrwnXwNkc4b3G7bLRqF2+2RlZneVJ8SpQVGruR5+HunFXlUBRl5kUNlw9R61Jadaun/l9rm/YArg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDR68kU2r0hOFcRVcd29Fsp17XT6nMz3vUG0Ll/qbp4pQIhAJdFNfXg60FbBiech4WYHecqryyG6CgC4TXsMciPOIC5"}]},"maintainers":[{"name":"netguru","email":"react@netguru.co"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/react-webpack-rails-0.4.0.tgz_1460923531850_0.13540707156062126"}},"0.4.1":{"name":"react-webpack-rails","version":"0.4.1","description":"Js part of react_webpack_rails - webpack based React & Rails integration.","main":"js/lib/index.js","files":["js/lib"],"scripts":{"compile":"babel --presets es2015 -d js/lib/ js/src/","prepublish":"npm run compile","test":"mocha js/test --ui bdd --recursive --require babel-core/register"},"repository":{"type":"git","url":"git+https://github.com/netguru/react_webpack_rails.git"},"keywords":["react","rails","webpack","react_webpack_rails"],"author":{"name":"Rafał Gawlik"},"license":"MIT","bugs":{"url":"https://github.com/netguru/react_webpack_rails/issues"},"homepage":"https://github.com/netguru/react_webpack_rails#readme","peerDependencies":{"react":"^15.0.0","react-dom":"^15.0.0"},"dependencies":{"babel-polyfill":"^6.3.0","react":"^15.0.1","react-dom":"^15.0.1"},"devDependencies":{"babel-cli":"^6.4.0","babel-core":"^6.4.0","babel-preset-es2015":"^6.3.0","babel-preset-react":"^6.3.0","eslint":"^1.10.3","eslint-config-airbnb":"^3.1.0","eslint-plugin-react":"^3.15.0","expect":"^1.13.4","history":"^1.17.0","mocha":"^2.3.4"},"gitHead":"54ec69c5405e331b68d814234e01b513fb6cff56","_id":"react-webpack-rails@0.4.1","_shasum":"f0ef21e5d426f5021d858bd97f7d6c9a552ebf3a","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"netguru","email":"react@netguru.co"},"dist":{"shasum":"f0ef21e5d426f5021d858bd97f7d6c9a552ebf3a","tarball":"https://registry.npmjs.org/react-webpack-rails/-/react-webpack-rails-0.4.1.tgz","integrity":"sha512-qprxjumJgj+JiAzf6OHzfQgNvF6jq/iWv74sJ6bQPfSs/s4NPQnIGBYz3c0OwtiC3LPxf0yMJRn8mldsR/Dtmg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFKM+L55VYXDSeH2s5D4kUhojYE653fH9NdQLKwpXR6bAiBDXReU8cawDB7qG5U8PEVvliDOo8WRoUAV/OpimId4/Q=="}]},"maintainers":[{"name":"netguru","email":"react@netguru.co"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/react-webpack-rails-0.4.1.tgz_1461427454237_0.44153538276441395"}},"0.5.0":{"name":"react-webpack-rails","version":"0.5.0","description":"Js part of react_webpack_rails - webpack based React & Rails integration.","main":"js/lib/index.js","files":["js/lib"],"scripts":{"compile":"babel --presets es2015 -d js/lib/ js/src/","prepublish":"npm run compile","test":"mocha js/test --ui bdd --recursive --require babel-core/register"},"repository":{"type":"git","url":"git+https://github.com/netguru/react_webpack_rails.git"},"keywords":["react","rails","webpack","react_webpack_rails"],"author":{"name":"Rafał Gawlik"},"license":"MIT","bugs":{"url":"https://github.com/netguru/react_webpack_rails/issues"},"homepage":"https://github.com/netguru/react_webpack_rails#readme","peerDependencies":{"react":"^15.0.0","react-dom":"^15.0.0"},"dependencies":{"babel-polyfill":"^6.3.0","react":"^15.0.1","react-dom":"^15.0.1"},"devDependencies":{"babel-cli":"^6.10.0","babel-core":"^6.10.0","babel-preset-es2015":"^6.9.0","babel-preset-react":"^6.11.0","eslint":"^2.13.0","eslint-config-airbnb":"^9.0.0","eslint-plugin-react":"^5.2.0","expect":"^1.20.0","history":"^3.0.0","mocha":"^2.5.0"},"gitHead":"3d3de9f81ee068df4703c05cd246cfae5757bbc8","_id":"react-webpack-rails@0.5.0","_shasum":"a77badc81d9e1ed48ab522dc5c0321cdf086a321","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"netguru","email":"react@netguru.co"},"dist":{"shasum":"a77badc81d9e1ed48ab522dc5c0321cdf086a321","tarball":"https://registry.npmjs.org/react-webpack-rails/-/react-webpack-rails-0.5.0.tgz","integrity":"sha512-BjWgLUVtQY8MigCCJyyoHI48Y6kF/CLtY+di4z8jSyfF4dtq4mk2Tb84YKBj3YOa+MbVSGGAGuJxbsL8L+/8ZQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBVM2BUKwsp1TJ6r8taVAO3EZwetIDcEttRpNDFVsWXJAiB/STQCApIZvZ8O5di3q2Ch37iXUhPLtFNBtVLnH5riCQ=="}]},"maintainers":[{"name":"netguru","email":"react@netguru.co"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-webpack-rails-0.5.0.tgz_1469113310353_0.871897229924798"}},"0.6.0":{"name":"react-webpack-rails","version":"0.6.0","description":"Js part of react_webpack_rails - webpack based React & Rails integration.","main":"js/lib/index.js","files":["js/lib"],"scripts":{"compile":"babel --presets es2015 -d js/lib/ js/src/","prepublish":"npm run compile","test":"mocha js/test --ui bdd --recursive --require babel-core/register"},"repository":{"type":"git","url":"git+https://github.com/netguru/react_webpack_rails.git"},"keywords":["react","rails","webpack","react_webpack_rails"],"author":{"name":"Rafał Gawlik"},"license":"MIT","bugs":{"url":"https://github.com/netguru/react_webpack_rails/issues"},"homepage":"https://github.com/netguru/react_webpack_rails#readme","dependencies":{"babel-polyfill":"^6.3.0","react":"^15.0.0","react-dom":"^15.0.0"},"devDependencies":{"babel-cli":"^6.10.0","babel-core":"^6.10.0","babel-preset-es2015":"^6.9.0","babel-preset-react":"^6.11.0","eslint":"^2.13.0","eslint-config-airbnb":"^9.0.0","eslint-plugin-react":"^5.2.0","expect":"^1.20.0","history":"^3.0.0","mocha":"^2.5.0"},"gitHead":"e9a01495ca6aad289a1e0c2e155f386f8d1e1a88","_id":"react-webpack-rails@0.6.0","_shasum":"1c56789b0eb7409826b26304d329a870af1af143","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"netguru","email":"react@netguru.co"},"dist":{"shasum":"1c56789b0eb7409826b26304d329a870af1af143","tarball":"https://registry.npmjs.org/react-webpack-rails/-/react-webpack-rails-0.6.0.tgz","integrity":"sha512-XIvJ7+/6/h3nEw2yTqwugJk90ol2sm6TsJSQOnFpDFCh2kADcxPL5MQpaMy4OR2DbSYW9qwB+62QJOhqN2E1Kg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCUOrv18z5Y8CNkEzSoiJFMfRlnSKn5BPr1Do3iACF1yQIhAKdCZwZgI683JgfancXAPcOBac5cGZrcTgWu92+a+/J1"}]},"maintainers":[{"name":"netguru","email":"react@netguru.co"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-webpack-rails-0.6.0.tgz_1471625703012_0.18554675509221852"}},"0.7.0":{"name":"react-webpack-rails","version":"0.7.0","description":"Js part of react_webpack_rails - webpack based React & Rails integration.","main":"js/lib/index.js","files":["js/lib"],"scripts":{"compile":"babel --presets es2015 -d js/lib/ js/src/","prepublish":"npm run compile","test":"mocha js/test --ui bdd --recursive --require babel-core/register"},"repository":{"type":"git","url":"git+https://github.com/netguru/react_webpack_rails.git"},"keywords":["react","rails","webpack","react_webpack_rails"],"author":{"name":"Rafał Gawlik"},"license":"MIT","bugs":{"url":"https://github.com/netguru/react_webpack_rails/issues"},"homepage":"https://github.com/netguru/react_webpack_rails#readme","dependencies":{"babel-polyfill":"^6.23.0","react":"^15.4.2","react-dom":"^15.4.2","react-hot-loader":"^3.0.0-beta.6"},"devDependencies":{"babel-cli":"^6.24.0","babel-core":"^6.24.0","babel-preset-es2015":"^6.24.0","babel-preset-react":"^6.23.0","eslint":"^3.17.1","eslint-config-airbnb":"^14.1.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^4.0.0","eslint-plugin-react":"^6.10.0","expect":"^1.20.2","history":"^4.6.0","mocha":"^3.2.0"},"gitHead":"ee86d208090426993b1c07c5b587a78b8305e296","_id":"react-webpack-rails@0.7.0","_shasum":"8f0bb059ca277a9c0d40d4796aa325739f01375e","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.4.0","_npmUser":{"name":"netguru","email":"react@netguru.co"},"dist":{"shasum":"8f0bb059ca277a9c0d40d4796aa325739f01375e","tarball":"https://registry.npmjs.org/react-webpack-rails/-/react-webpack-rails-0.7.0.tgz","integrity":"sha512-IttYqdZY/ggxqPsMOI2WknLC3uaO3Wmwudf0K9H82mAhdxpFonyfYBI0f6E4J6Mx1KPDWFhh/GFHx5Ny9IJseQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHLOohs3BbxBl9PWdVI+e40SFBaXVNXYsIA6spIdDGcFAiAXc/HcmbPlUlRKq6PJ3kqGiUQuZxmapjN0HLxR6P8rvg=="}]},"maintainers":[{"name":"netguru","email":"react@netguru.co"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-webpack-rails-0.7.0.tgz_1490874571458_0.06834180653095245"}}},"homepage":"https://github.com/netguru/react_webpack_rails#readme","keywords":["react","rails","webpack","react_webpack_rails"],"repository":{"type":"git","url":"git+https://github.com/netguru/react_webpack_rails.git"},"author":{"name":"Rafał Gawlik"},"bugs":{"url":"https://github.com/netguru/react_webpack_rails/issues"},"license":"MIT","readmeFilename":"README.md"}