├── .babelrc ├── .eslintrc ├── .gitignore ├── .nycrc.json ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── gulp ├── build.js ├── lint.js └── test.js ├── gulpfile.js ├── lib ├── configuration.js ├── index.js └── reset.js ├── package.json └── test └── index.test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/.gitignore -------------------------------------------------------------------------------- /.nycrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/.nycrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/README.md -------------------------------------------------------------------------------- /gulp/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/gulp/build.js -------------------------------------------------------------------------------- /gulp/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/gulp/lint.js -------------------------------------------------------------------------------- /gulp/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/gulp/test.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/lib/configuration.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/lib/reset.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/package.json -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morenofa/react-global-configuration/HEAD/test/index.test.js --------------------------------------------------------------------------------