├── .babelrc ├── .gitignore ├── .npmignore ├── README.md ├── dist └── react-stars.js ├── example ├── bundle.js ├── index.html └── index.js ├── package.json ├── src └── react-stars.js ├── webpack.config.js └── webpack.production.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n49/react-stars/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n49/react-stars/HEAD/README.md -------------------------------------------------------------------------------- /dist/react-stars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n49/react-stars/HEAD/dist/react-stars.js -------------------------------------------------------------------------------- /example/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n49/react-stars/HEAD/example/bundle.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n49/react-stars/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n49/react-stars/HEAD/example/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n49/react-stars/HEAD/package.json -------------------------------------------------------------------------------- /src/react-stars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n49/react-stars/HEAD/src/react-stars.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n49/react-stars/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.production.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n49/react-stars/HEAD/webpack.production.config.js --------------------------------------------------------------------------------