├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmignore ├── .nvmrc ├── LICENSE.md ├── README.md ├── docs ├── docs.js ├── docs.scss └── index.html ├── filter.jpg ├── package.json ├── publish-docs.sh ├── source ├── ImageFilter.jsx └── index.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanko/react-image-filter/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanko/react-image-filter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanko/react-image-filter/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanko/react-image-filter/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanko/react-image-filter/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v8.17.0 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanko/react-image-filter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanko/react-image-filter/HEAD/README.md -------------------------------------------------------------------------------- /docs/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanko/react-image-filter/HEAD/docs/docs.js -------------------------------------------------------------------------------- /docs/docs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanko/react-image-filter/HEAD/docs/docs.scss -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanko/react-image-filter/HEAD/docs/index.html -------------------------------------------------------------------------------- /filter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanko/react-image-filter/HEAD/filter.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanko/react-image-filter/HEAD/package.json -------------------------------------------------------------------------------- /publish-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanko/react-image-filter/HEAD/publish-docs.sh -------------------------------------------------------------------------------- /source/ImageFilter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanko/react-image-filter/HEAD/source/ImageFilter.jsx -------------------------------------------------------------------------------- /source/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanko/react-image-filter/HEAD/source/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stanko/react-image-filter/HEAD/webpack.config.js --------------------------------------------------------------------------------