{"_id":"uploadcare-widget-tab-effects","_rev":"31-af82bcd9895d92c69f51b6f20ada2173","name":"uploadcare-widget-tab-effects","time":{"modified":"2024-02-01T12:48:59.286Z","created":"2017-08-21T16:47:31.827Z","1.0.0":"2017-08-21T16:47:31.827Z","1.0.1":"2017-08-21T17:04:40.538Z","1.0.2":"2017-08-21T17:18:21.069Z","1.0.3":"2017-08-23T11:35:10.934Z","1.1.0":"2018-04-20T14:27:18.553Z","1.2.0":"2018-05-23T21:20:22.335Z","1.2.1":"2018-06-28T12:13:15.963Z","1.3.0":"2018-09-21T11:08:33.682Z","1.4.0":"2019-03-01T15:32:10.128Z","1.4.1":"2019-03-19T08:43:31.381Z","1.4.2":"2019-03-19T08:48:11.722Z","1.4.3":"2019-03-27T14:47:42.396Z","1.4.4":"2019-03-29T15:12:28.844Z","1.4.5":"2019-04-05T10:34:45.267Z","1.4.6":"2019-06-03T09:36:03.697Z","1.4.7":"2020-06-05T06:29:59.418Z","1.5.0":"2021-03-31T11:20:27.281Z","1.6.0-rc":"2022-11-08T11:52:34.879Z","1.6.0-rc.0":"2022-11-08T11:55:41.712Z","1.6.0-rc.1":"2022-11-08T11:59:25.912Z","1.6.0":"2022-11-16T16:21:30.123Z","1.7.0":"2023-06-02T12:48:04.954Z","1.7.1":"2023-06-02T13:09:35.903Z","1.7.2":"2023-06-02T13:29:26.207Z"},"maintainers":[{"email":"egor.didenko@uploadcare.com","name":"eadidenko"},{"email":"rsedykh@uploadcare.com","name":"rsedykh"},{"email":"apps@uploadcare.com","name":"uploadcare-user"},{"email":"nd0ut.me@gmail.com","name":"nd0ut"}],"dist-tags":{"latest":"1.7.2","rc":"1.6.0-rc.1"},"description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","readme":"# Effects Tab for Uploadcare Widget\n\n<a href=\"https://uploadcare.com/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\">\n    <img align=\"right\" width=\"64\" height=\"64\"\n         src=\"https://ucarecdn.com/2f4864b7-ed0e-4411-965b-8148623aa680/uploadcare-logo-mark.svg\"\n         alt=\"\">\n</a>\n\nEffects Tab is an [Uploadcare Widget][uc-docs-widget] addon\nthat allows for in-browser image editing on desktop and mobile.\nTechnically, it's a [custom widget tab][uc-docs-widget-custom-tabs]\nthat replaces Preview Tab.\n\n[![NPM version][badge-npm-img]][badge-npm-url]&nbsp;\n[![Uploadcare stack on StackShare][badge-stack-img]][badge-stack-url]\n\n<p>\n  <a href=\"https://uploadcare.github.io/uploadcare-widget-tab-effects/\" title=\"See Effects Tab in action with demo\">\n    <img src=\"https://ucarecdn.com/c04e8231-3c79-43ca-a122-285b8573d1f8/uploadcare-widget-effects-tab.gif\"\n        width=\"888\" alt=\"\">\n  </a>\n</p>\n\nEffects Tab provides 9 effects for on-the-fly image editing in desktop or mobile browsers:\ncrop, rotate, mirror, flip, blur, sharpen, enhance, grayscale and invert.\nYou can customize which effects are allowed and otherwise affect the tab behavior.\n\n<!-- toc -->\n\n* [How it works](#how-it-works)\n* [Demo](#demo)\n* [Requirements](#requirements)\n* [Install](#install)\n* [Usage](#usage)\n* [Configuration](#configuration)\n* [Options](#options)\n* [Localization](#localization)\n* [Security issues](#security-issues)\n* [Feedback](#feedback)\n\n<!-- tocstop -->\n\n## How it works\n\nImage operations provided by Effects Tab are based on the capabilities\nof Uploadcare [Image Processing][uc-feature-image-processing].\nThe tab outputs a CDN link holding your image [UUID][uc-docs-uuid] and\n[image operations][uc-docs-cdn-image-operations] applied by a user while editing.\nTechnically, every original image is firstly uploaded to our CDN and then shown\nto a user in Effects Tab.\nIn case of uploading [multiple files][uc-docs-widget-multi-upload], this happens asynchronously.\n\nFor example, if a user chose to apply `grayscale` and clicked `rotate` once,\nthis is how the output value looks like:\n\n```\nhttps://ucarecdn.com/:UUID/-/preview/-/grayscale/-/rotate/270/\n```\n\nYou will always have the `preview` operation in Effects Tab output URL due to\nCDN API [limitations][uc-docs-cdn-limits].\n\n## Demo\n\nCheck out the basic demo [here][demo].\n\n## Requirements\n\nSince Effects Tab is a [custom tab][uc-docs-widget-custom-tabs] for Uploadcare Widget,\nmake sure to start with [installing the widget][uc-docs-widget-install].\n\n## Install\n\nYou’re free to choose from the install methods listed below.\n\n### NPM\n\nGet Effects Tab:\n\n```bash\nnpm i uploadcare-widget-tab-effects --save\n```\n\nAnd then import it in your module:\n\n```javascript\nimport uploadcareTabEffects from 'uploadcare-widget-tab-effects'\n```\n\n### CDN\n\nDirectly include the Effects Tab script one a page using\n\n```html\n<script src=\"https://ucarecdn.com/libs/widget-tab-effects/1.x/uploadcare.tab-effects.js\" charset=\"utf-8\"></script>\n```\n\nTo reduce loading time, you can also choose one of the following:\n\n* The minified all-locales bundle `uploadcare.tab-effects.min.js`\n* The english-only bundle `uploadcare.tab-effects.lang.en.js`\n* The minified english-only bundle `uploadcare.tab-effects.lang.en.min.js`\n\n> Note: When using a bundle above, you should also use the [matching version]([widget-bundle-types]) of `uploadcare-widget` (minified or english-only).\n\n## Usage\n\nThat’s how you add Effects Tab to the widget:\n\n```javascript\nuploadcare.registerTab('preview', uploadcareTabEffects)\n```\n\n## Configuration\n\nThis section describes different ways to set which effects are allowed\nin the Effects Tab.\n\n### Global variables\n\n```html\n<script>\n  UPLOADCARE_EFFECTS = 'blur,sharp,grayscale'\n</script>\n```\n\nor\n\n```html\n<script>\n  UPLOADCARE_EFFECTS = ['blur', 'sharp', 'grayscale']\n</script>\n```\n\n### Local attributes\n\n```html\n<input type=\"hidden\" role=\"uploadcare-uploader\" name=\"content\"\n  data-effects=\"blur,sharp,grayscale\"\n/>\n```\n\n### Settings object\n\n```javascript\nuploadcare.start({\n  effects: 'blur,sharp,grayscale',\n})\n```\n\nor\n\n```javascript\nuploadcare.start({\n  effects: ['blur', 'sharp', 'grayscale'],\n})\n```\n\n## Options\n\n### Effects `string|array`\n\nGlobal: `UPLOADCARE_EFFECTS` <br>\nLocal: `data-effects` <br>\nObject key: `effects` <br>\n\nDefault value: `crop,rotate,enhance,sharp,grayscale`.\n\nThis allows you to configure the set of enabled effects.\nIt also controls **the order of effects** in the tab:\nhowever, `crop` is always the first in the set.\n\n`effects` can either be a string holding one or more\ncomma-separated effects or an array of strings (JS only).\nYou can also enable all effects by setting the option to `all`.\n\nAvailable effects:\n\n* `crop` — crops images freely or using set aspect ratios\n* `rotate` — rotates images\n* `mirror` — provides image-mirroring capabilities\n* `flip` — allows flipping images\n* `blur` — filters images via Gaussian Blur\n* `sharp` — allows adjusting image sharpness\n* `enhance` — makes images look better via auto\n  levels, auto contrast, and saturation sharpening\n* `grayscale` — desaturates images\n* `invert` — inverts image colors\n\n## Localization\n\nIt’s possible your locale is not available in the tab yet.\nIf that’s the case, contributing your locale might be a good idea.\nThis can be done by forking the [main repository][github-home]\nfollowed by adding a new localization file [here][github-files-locales] and add `import` and `export` your locale [here][github-files-locales-index].\n\n## Security issues\n\nIf you think you ran into something in Uploadcare libraries which might have\nsecurity implications, please hit us up at [bugbounty@uploadcare.com][uc-email-bounty]\nor Hackerone.\n\nWe'll contact you personally in a short time to fix an issue through co-op and\nprior to any public disclosure.\n\n## Feedback\n\nIssues and PRs are welcome. You can provide your feedback or drop us a support\nrequest at [hello@uploadcare.com][uc-email-hello].\n\n[demo]: https://uploadcare.github.io/uploadcare-widget-tab-effects/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[github-home]: https://github.com/uploadcare/uploadcare-widget-tab-effects\n[github-files-locales]: https://github.com/uploadcare/uploadcare-widget-tab-effects/tree/master/src/locale\n[github-files-locales-index]: https://github.com/uploadcare/uploadcare-widget-tab-effects/tree/master/src/locale/index.js\n[uc-email-bounty]: mailto:bugbounty@uploadcare.com\n[uc-email-hello]: mailto:hello@uploadcare.com\n[uc-feature-image-processing]: https://uploadcare.com/features/image_processing/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-widget]: https://uploadcare.com/docs/uploads/widget/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-widget-install]: https://uploadcare.com/docs/uploads/widget/install/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-widget-custom-tabs]: https://uploadcare.com/docs/uploads/widget/custom_tabs/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-cdn]: https://uploadcare.com/docs/delivery/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-cdn-image-operations]: https://uploadcare.com/docs/processing/image/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-cdn-limits]: https://uploadcare.com/docs/processing/image/limits/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-uuid]: https://uploadcare.com/docs/concepts/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects#cdn\n[uc-docs-widget-multi-upload]: https://uploadcare.com/docs/uploads/widget/multi_upload/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[badge-npm-img]: http://img.shields.io/npm/v/uploadcare-widget-tab-effects.svg\n[badge-npm-url]: https://www.npmjs.org/package/uploadcare-widget-tab-effects\n[badge-stack-img]: https://img.shields.io/badge/tech-stack-0690fa.svg?style=flat\n[badge-stack-url]: https://stackshare.io/uploadcare/stacks/\n[widget-bundle-types]: https://github.com/uploadcare/uploadcare-widget#types-of-bundles","versions":{"1.0.1":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.0.1","description":"Effects Tab for Uploadcare Widget","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","files":["dist","src"],"scripts":{"clean":"rimraf dist","lint":"eslint .","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment BUILD:minification","build:es":"rollup -c ./scripts/rollup.config.js --environment BUILD:module","build":"npm run clean && npm run build:umd && npm run build:umd:min && npm run build:es","start:static":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start -s demo --ss dist --files demo dist --port 3127","publish:cdn":"node ./scripts/publish-to-cdn.js","prepublishOnly":"npm run lint && npm run build","postpublish":"npm run publish:cdn"},"dependencies":{},"devDependencies":{"autoprefixer":"^7.1.2","aws-sdk":"^2.82.0","babel-eslint":"^7.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.18.12","cssnano":"^3.10.0","eslint":"^4.2.0","eslint-config-uploadcare":"^1.1.0","postcss-calc":"^6.0.0","postcss-color-function":"^4.0.0","postcss-css-variables":"^0.7.0","postcss-flexbugs-fixes":"^3.0.0","postcss-modules":"^0.8.0","postcss-nested":"^2.0.2","postcss-reporter":"^4.0.0","rimraf":"^2.5.4","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","stylelint":"^7.12.0","stylelint-config-uploadcare":"^2.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"ef6662dc3b00942b26cb1c8d9101ac486ba9b268","_id":"uploadcare-widget-tab-effects@1.0.1","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"uploadcare","email":"apps@uploadcare.com"},"dist":{"integrity":"sha512-cg3aFkLuIAzqxzQ/iReecIBSPg7lQ+hDraaLMFD8tH6WaAnT/Lcykd4v3KE5ko6UGogd+S2ZKPidokpP45Isaw==","shasum":"500c9e87743f9122475ee580c9bdd76837e1bbae","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.0.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCKaqdFmdjuzt1pUAbbzqdRn+C+57aZoYzFTRcRNRkK9gIhAIWaKJu0xI5d6K1c1nXY+bqBPcgtAFxt8tKuThnE2INd"}]},"maintainers":[{"name":"uploadcare","email":"apps@uploadcare.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects-1.0.1.tgz_1503335079367_0.8304910836741328"},"directories":{}},"1.0.2":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.0.2","description":"Effects Tab for Uploadcare Widget","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","files":["dist","src"],"scripts":{"clean":"rimraf dist","lint":"eslint .","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment BUILD:minification","build:es":"rollup -c ./scripts/rollup.config.js --environment BUILD:module","build":"npm run clean && npm run build:umd && npm run build:umd:min && npm run build:es","start:static":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start -s demo --ss dist --files demo dist --port 3127","publish:cdn":"node ./scripts/publish-to-cdn.js","prepublishOnly":"npm run lint && npm run build","postpublish":"npm run publish:cdn"},"dependencies":{},"devDependencies":{"autoprefixer":"^7.1.2","aws-sdk":"^2.82.0","babel-eslint":"^7.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.18.12","cssnano":"^3.10.0","eslint":"^4.2.0","eslint-config-uploadcare":"^1.1.0","postcss-calc":"^6.0.0","postcss-color-function":"^4.0.0","postcss-css-variables":"^0.7.0","postcss-flexbugs-fixes":"^3.0.0","postcss-modules":"^0.8.0","postcss-nested":"^2.0.2","postcss-reporter":"^4.0.0","rimraf":"^2.5.4","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","stylelint":"^7.12.0","stylelint-config-uploadcare":"^2.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"4806c182f3deaba3a4f92910ef85e62f862321ce","_id":"uploadcare-widget-tab-effects@1.0.2","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"uploadcare","email":"apps@uploadcare.com"},"dist":{"integrity":"sha512-znO1P3JfSKxUJrfzClOVE98FSJ4WxwVz8MDIL9uhjt/mqY0hunCqovN31U1okV1FXwtw9Mvyk7sY0mORyeXlvQ==","shasum":"ba183e46df274102e1069c62647d58ba44a1552e","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.0.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICfpP66qF4e0A0zM4pw6V9I82+REkX+QgBguN790RqF2AiEA163ZjPZqmmijAnrc84NQkIcmwLJoHDy+rzl03unbIOo="}]},"maintainers":[{"name":"uploadcare","email":"apps@uploadcare.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects-1.0.2.tgz_1503335899850_0.29554070020094514"},"directories":{}},"1.0.3":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.0.3","description":"Effects Tab for Uploadcare Widget","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","files":["dist","src"],"scripts":{"clean":"rimraf dist","lint":"eslint .","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment BUILD:minification","build:es":"rollup -c ./scripts/rollup.config.js --environment BUILD:module","build":"npm run clean && npm run build:umd && npm run build:umd:min && npm run build:es","start:static":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","publish:cdn":"node ./scripts/publish-to-cdn.js","prepublishOnly":"npm run lint && npm run build","postpublish":"npm run publish:cdn"},"dependencies":{},"devDependencies":{"autoprefixer":"^7.1.2","aws-sdk":"^2.82.0","babel-eslint":"^7.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.18.12","cssnano":"^3.10.0","eslint":"^4.2.0","eslint-config-uploadcare":"^1.1.0","postcss-calc":"^6.0.0","postcss-color-function":"^4.0.0","postcss-css-variables":"^0.7.0","postcss-flexbugs-fixes":"^3.0.0","postcss-modules":"^0.8.0","postcss-nested":"^2.0.2","postcss-reporter":"^4.0.0","rimraf":"^2.5.4","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","stylelint":"^7.12.0","stylelint-config-uploadcare":"^2.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"9b8e890e8a647086e157d3c5f8b6442c1dd6c5e5","_id":"uploadcare-widget-tab-effects@1.0.3","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"uploadcare","email":"apps@uploadcare.com"},"dist":{"integrity":"sha512-A6ejBpoZAqWomDY/Ob4SbCCjoaWC82utpBCDb538BmuGRGnUlkQGiTRlAdDGX1xmrSefG0ZkOqhaah5v4cC/og==","shasum":"e1d48f51d553ad8a6c7181106426573ffd804a62","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.0.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBWIuLYHc8HDf4qtQfTuCcBoxkA0oXepKlJfbF0ABYEBAiAWHD3a/dk0fE98ngPN4ku0DPfrb/cD/NCUIouC08d5xw=="}]},"maintainers":[{"name":"uploadcare","email":"apps@uploadcare.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects-1.0.3.tgz_1503488109883_0.10320653556846082"},"directories":{}},"1.1.0":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.1.0","description":"Effects Tab for Uploadcare Widget","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","files":["dist","src"],"scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"npm run lint:js","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment BUILD:minification","build:es":"rollup -c ./scripts/rollup.config.js --environment BUILD:module","build":"npm run clean && npm run build:umd && npm run build:umd:min && npm run build:es","dev:build":"npm run build:umd -- --watch","start:static":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","publish:cdn":"node ./scripts/publish-to-cdn.js","prepublishOnly":"npm run lint && npm run build","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.23.6","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.2","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^9.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"8908b538a03e1acffaeddc2a2ff73ebd7c36cec9","_id":"uploadcare-widget-tab-effects@1.1.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"uploadcare","email":"apps@uploadcare.com"},"dist":{"integrity":"sha512-jpWF/LtR9nNz95NcKiVY+DfyWh5dRrII0TNS7I2VwL3EPym3R38cJpR0IIWG3Qb7DjdOvtQXFJDU4yjMlTAY6Q==","shasum":"f58a8bae8fadcd61f75e73f5f9b9d7fe53a13fe3","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.1.0.tgz","fileCount":74,"unpackedSize":334186,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa2fjICRA9TVsSAnZWagAAjTIQAIt1jlSc+vC3bVRerlm9\nwv+vJxU18HcfmiGoG9jml50P+ws1Ux04UbbKIkAKQA42Vaof9LNgcV/NaJOF\nmbm47xqYzPGi2cnzL4yPH/OLZqtG6kYif2PeFtWkxouAk6d7VazNnosLdvib\njioZtZOIER7cTWIFKlndy75J2QFPAzU74pjEXBsjWBdXTgxJrdPFnDbdpDF6\ngojhz8Y9p5iiRqVzwF1sWX7t07ezBMrqOiySj/DlScts1hHYUIiSBNoAGasi\nSOAePe+jLf1AB1B/vXggqdHxUZ7M6CXipQ44mGLC8D3u8ymGCvsrUoQ8RZgX\nKv6FzxeVaJrm/RJpa46OaWaFS09YIW21HS439qdyeM+U946ItwqjUwvZlZV3\nvBnXTSPbwTluA/cNi9kqri6ASde5FYDqmLJQMijXjikA2jfYfR6gGhWXJPFQ\nlexyePf/wUXuApt+gok85cJVRFbQiwv8Txle4UtwqwpEjJmfjtNZVOE/qV5e\nqoKtAEZXoMVlLY9STv1lusAvxcZVWgdq8VVq5Iypunnno9eBaZDdiTf32HYl\nQh1pB4V54VZr3qg63Vihza9j1dtwTxCOkOnH29/ygoJBRT4wHZY2njgYOEYE\niqg3wcY1kB+th9OgThAHoZSPy7TX+pie6fPEaZ8QgsHyJwIcWx83qxqqJ3Uc\nNNNF\r\n=EROW\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBnqZNw34Lt1mEX7wLoJhycBqttXCsiQT1ANiiS/f/3sAiEAypyDvs1OjS82yFNGp1356e3xjGQAb7Tq8SwJUe+x794="}]},"maintainers":[{"name":"uploadcare","email":"apps@uploadcare.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.1.0_1524234438364_0.38259837644924954"},"_hasShrinkwrap":false},"1.2.0":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.2.0","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","files":["dist","src"],"scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"npm run lint:js","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment BUILD:minification","build:es":"rollup -c ./scripts/rollup.config.js --environment BUILD:module","build":"npm run clean && npm run build:umd && npm run build:umd:min && npm run build:es","dev:build":"npm run build:umd -- --watch","start:static":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","publish:cdn":"node ./scripts/publish-to-cdn.js","prepublishOnly":"npm run lint && npm run build","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.23.6","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.2","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^9.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"d08e8bcb43d2a56fd94b4b81952f0a4bd37c19a4","_id":"uploadcare-widget-tab-effects@1.2.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"uploadcare","email":"apps@uploadcare.com"},"dist":{"integrity":"sha512-3Cth9+VAYsDE9K4fKa1Y5pr21B6jAr3eWSbpkJAZHpfTVSLMSfud1WmLFh9bpHpTnjrv1t4Hq2BsT1BmrmIaKw==","shasum":"1a41ab44a3d304d7b67e248f3955e9df8537b44a","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.2.0.tgz","fileCount":75,"unpackedSize":340726,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBdsXCRA9TVsSAnZWagAAEPkP+QEaIAt1Tbb9jM4Pe84A\ns8IRIU7wed1p7TfZdatrb4dzFr0xgW6Wfftr8+0pmijzw1YN4vKdP3D8OyZf\nDsRyY6WIScIGp4MMFZbW5q7Bq1REONzYknomxyEmVlr2noaP8y+W75mv5zMx\nGU0amxo1CZ2mzCQkfGoH/g9K6Amo2Budj0MDPxswAA3C6fN3uXW7u+xpuhwx\nJJsejRTpCBW06/I5ublRwX5PK+4gmDbeWd4xG04oGIXdxwC/gTeNX6IkZzhv\nXQtkgamUqh7MLuPf8pV2QCxYCDCT7rBs6cNPwP3M77QAyQpH/lHNHRolZk4J\nK4IkHQosuavbZbEtXbFqonR5OQglsdmtE0zzYS55PTHwR75JVlTE3E9ACtM9\n+eIh39L9Vo09rGIrZ+8caO3S1Db/1FWTg2j6cmlaFg81MMVdqR0tYDpHFfLc\n5vJ1Q/QEUmQWSSgTbZS4wMODK3CIur5nZ796Lp4Oe3/llanpsDxAw7X/RIYl\nDHvPBxjRaZnZXnvZRqPlsN4hlag8c3ujBJ+OGrgG6kgTYZz/GD0rigcwFim2\n8fson5bI1mrSvEIK9IrnEgJvTwKDyCX/0h+B9vckcaAjGmIhNwp+TuQmt5gI\nO2pjIPjayo5Z61/YD7G0Ere8N8yISFnXfU0ejR5KbGfVVi4ja0Izs5bcQDjV\ntiOY\r\n=MBAf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDI33vJVytLS8Bui+yAaqaQNSbJbpfoHIAP+W5tuiNoygIgNXKazTW+UJCxUigMgT2h4DP7IvI+jFdOnpTj7f9+qXk="}]},"maintainers":[{"name":"uploadcare","email":"apps@uploadcare.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.2.0_1527110422148_0.23248665617186526"},"_hasShrinkwrap":false},"1.2.1":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.2.1","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","files":["dist","src"],"scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"npm run lint:js","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment BUILD:minification","build:es":"rollup -c ./scripts/rollup.config.js --environment BUILD:module","build":"npm run clean && npm run build:umd && npm run build:umd:min && npm run build:es","dev:build":"npm run build:umd -- --watch","start:static":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","publish:cdn":"node ./scripts/publish-to-cdn.js","prepublishOnly":"npm run lint && npm run build","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.23.6","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.2","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^9.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"8cda4cf69a010bbae3c24d2d3a1766213e934ecd","_id":"uploadcare-widget-tab-effects@1.2.1","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"uploadcare","email":"apps@uploadcare.com"},"dist":{"integrity":"sha512-KKZT3wBX6UU6OICw3e9u7ZTY4smpCxZkV3lOqcXv5WfGvXPfJWgzHFUa4uztm8mZeTpX5GSwzEREXvUjVsi+hQ==","shasum":"1245c0b78b19abf5f477f3a1a15d619ce5939525","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.2.1.tgz","fileCount":75,"unpackedSize":333847,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbNNDbCRA9TVsSAnZWagAAO+oP/2QkI56CUs+xLzzqunZ/\n2jifDymPqWuBh3gXCqPKqrjWvHJMdztywP0QIRMohLO+RAX3cCSjj4JzY8cL\nJzTqvpfJBQ8/i89UowPHpQfsCyD6L1OCzZv1EQI5gGsfPOtAW5N74LooXY6x\nc7WsIuTwJvg9/Y6+DfSF3i3KRxGhBKzZMiaLLwDcZi4gYI1psw8vFjpoDRzU\nw2QsHklDsRHch37jBCTTBYzpzLPzcKEcvqbQQT9NM+VYn7NDDXYVzVOeM+MF\n1RiXyJnRZW30tp1NbaBzE/XCE9pAX/nCMMFpwgiU8UgOE2n697v/j2XRAOi4\nUxQiEEFafrhwHSknDJNimY/rFwL59NKjsmYvNFJ9X9kjaFKJxG4cTVIQl7n7\nvWhSoCKjUC0bMNoTW4ojypnBi/vHa8LrSuheXLtNEHjDGWS2RKf7qrIHLD6g\ng0laquu96chY7g9uc4Qnf6y7KohEV96Vv8Nl4UBo2bnmXOGZVn7QEsuqrwsI\nP1v1V+kXJ6g13dol6fCENBBkzaSXd7fKGFkArobgxW9mjM2PGve0lsOjnBCf\nePBLMz2OxSIWgdnVoctljzHtnJDucHgQh9qqWyk64tMyRje15pUtTs0Jbtiy\nvYyWikjHYXkhawOan5lHOHs6NWfRLpSy45p+O+Xzgx4FZ7y5B3hB6rvOlZkj\nVcJJ\r\n=vU3h\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDDksLFbAYtmAHawb59wyEv1CrwgA84UrHCBb9O7yk8zAIhAPselFz7dsml6InRSf1xwXCQzLMv877ARy2CBDNFfeLu"}]},"maintainers":[{"name":"uploadcare","email":"apps@uploadcare.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.2.1_1530187995662_0.9292533081912835"},"_hasShrinkwrap":false},"1.3.0":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.3.0","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"npm run lint:js","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment BUILD:minification","build:es":"rollup -c ./scripts/rollup.config.js --environment BUILD:module","build":"npm run clean && npm run build:umd && npm run build:umd:min && npm run build:es","dev:build":"npm run build:umd -- --watch","start:static":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","publish:cdn":"node ./scripts/publish-to-cdn.js","prepublishOnly":"npm run lint && npm run build","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.23.6","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.2","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^9.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"94d18bf248947c5405d52c149a1cce280b4ffc6f","_id":"uploadcare-widget-tab-effects@1.3.0","_npmVersion":"6.4.0","_nodeVersion":"10.4.0","_npmUser":{"name":"uploadcare","email":"apps@uploadcare.com"},"dist":{"integrity":"sha512-6ZJm96K8/fKySU7NU8YNG0ZxyEeSToeTu4+2Iz7YFf6qZgLw3sECn/XudGxN8jJIsHpilhy040pqDzu6A78Mig==","shasum":"13a7d58af0a38dca34dac03f90670d5103d17be7","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.3.0.tgz","fileCount":77,"unpackedSize":334668,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpNEyCRA9TVsSAnZWagAAs6wP/jk6ByJ+dbvJbvNR8Ptq\n+MY73nHxr22rQtCyL8s8Cq9iZoX+mfAoPsiXMsZkbTidVfq02N82p6SgDW1V\nMWk5AS6gY8JH04qIUmDkgqFpvCSvoApzQpv0beKTZqudErUVa5S3tN8tG+BQ\nbi4wmz3IjRTGfffgIP5K1J/t8DzA9H92JfOcFtNoXherFL/sx7djxGsolTgw\nx2dehgVFj6HgF0LyRiPIRd3Veu+Bo0QegEVOnAJfyZ0nC3sdgLwXEBoOt0YJ\nhfMO5KB73xMsIhGxzAUhcZ4HosqDSy6BdHP4sEGNioY0dxKEmx/yrWU6rGV7\n1RgX0diRaDuwDBSgzV6c0fSVvlL96fnG6398ktqeVUApH62a225fv4BY8R0i\n+t51nik4jbF32Nac998X3byWmVlDeUE54vuOPjw6wOBs96kKj/tMQ5ZnqHEo\n6Caqd8cnW8vKf1k4h/yBLXzS9cEInaAj6kVXLM9w53bChyRTbn1Qh6fJcNbL\nV8HxdwTgwhh+1kOwDf2QyRVlzlpPeIrKIOQgZwkHnekSk/gm7LRjVOqtv3du\n7O1Z83HWpqYJA/1OsbUOiFNXiuN8iOgqjhPASgbFKh3MZtSGswhAwB28VP1Q\nKf/1YNkPzewUCM1RvkKoWWPcDy5pj2WOkY/FwLfODG6IUbkJCw7sUU2/z+i0\niWxs\r\n=Cl2r\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBFS8qj07g4W99Jj6q39mo+i6h8zMDo2O9z2lO+x9Z9zAiA35YiEnDbk8yTpZotysazqV0vYjYdee69vBp+jZTPcwg=="}]},"maintainers":[{"name":"uploadcare","email":"apps@uploadcare.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.3.0_1537528113489_0.19133629809331"},"_hasShrinkwrap":false},"1.4.0":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.4.0","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"run-s lint:*","prebuild":"run-s lint clean","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment BUILD:minification","build:es":"rollup -c ./scripts/rollup.config.js --environment BUILD:module","build":"run-s build:**","watch":"npm run build:umd -- --watch","serve":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","dev":"run-p watch start","preversion":"kacl lint","version":"kacl release && git add CHANGELOG.md && npm run build","publish:cdn":"node ./scripts/publish-to-cdn.js","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"@brightcove/kacl":"^0.1.6","autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.26.3","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","npm-run-all":"^4.1.5","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.3","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^8.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"36c9f4ec906845ebf3e80300594e1b7c483ab24d","_id":"uploadcare-widget-tab-effects@1.4.0","_npmVersion":"6.5.0","_nodeVersion":"8.11.2","_npmUser":{"name":"uploadcare","email":"apps@uploadcare.com"},"dist":{"integrity":"sha512-QMbXfT8pVwEjrMtaURNJhry9uIzMtCL7+/aVX5McZTa5oHehSJCaqHF2Qt5NsDOYyk87bSPPvRtok2MktRgTXg==","shasum":"e3ecbb74ca32cc8f4832671cc54f50dea5ac23df","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.4.0.tgz","fileCount":80,"unpackedSize":356436,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJceVB6CRA9TVsSAnZWagAArJoP/i8hyBV0sMH6mfkbOeZS\nsHCQZKqXhEaJml7J83ZAPG/JoeZqGRx/G1j9Fj5ccDsvo8CbeKCYu2sachEi\nxYXkRsu2go+ure9bRfi5sR6pGqk+BcbEA17fdUmkRMJGY6Ei35y5JsSLRssq\nOhbbds9s9uIpO4pTFC79lGqLQWXHzgXwSQ0NgLYdSDx+yREL7tX+MPXeQkR8\ntpXaYTSb8Z7669cZ4XC01INgLsSQiXw2Wgjh672+PupCFAagBfSoavXM0VGE\n/eD8KCI3ZRuoi5I0RGooMj7HxHo3s4h4R0/3B2AsOTKXeXK8Lgpkbl07Xkze\ndfUn72Na/a5vTWkFHyMwB6w7/I7w7Ok0w2CDbYgUsvWymzk8yh9Fgeqwgcxw\nhDmMaQUpFiqAzVf9s4TsR8p0Oeyeqc6DqGNzyDwGdwt75Q0YuPWi7009TCuk\nS9JCF773ESp7+RQOI9PI14LjktQuRAaeI3J3tCmWu8weoU9kY4GGdYYTdjXY\nC6L9RTUfqZBXDln7wF5diolK9lr2PCSkvkUBLqLpvm+RfbU6EEZAMwtXzfRw\novkYuzp+Mdt6anwb3/X1NLSyiu0Rl1mWStBzVneRRsYIbcKkuCOHVU49yyMh\nnzuxep5aSl1Xm7mVzK56nN/91387+UBmGviZmG/xyPUgrh+GHt96il9jFcgY\n0C6l\r\n=FA39\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDuUGijdCaPS3nPIXN2kVmaXg9ggLjYoykUOW+KoUFIcAiAgQYSip54lFRKze+Jv+fk/52K1A1UkC+NZymkb8vYLng=="}]},"maintainers":[{"name":"uploadcare","email":"apps@uploadcare.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.4.0_1551454330019_0.7624581561178909"},"_hasShrinkwrap":false},"1.4.1":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.4.1","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"run-s lint:*","prebuild":"run-s lint clean","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment BUILD:minification","build:es":"rollup -c ./scripts/rollup.config.js --environment BUILD:module","build":"run-s build:**","watch":"npm run build:umd -- --watch","serve":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","dev":"run-p watch start","preversion":"kacl lint","version":"kacl release && git add CHANGELOG.md && npm run build","publish:cdn":"node ./scripts/publish-to-cdn.js","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"@brightcove/kacl":"^0.1.6","autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.26.3","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","npm-run-all":"^4.1.5","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.3","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^8.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"36c9f4ec906845ebf3e80300594e1b7c483ab24d","_id":"uploadcare-widget-tab-effects@1.4.1","_npmVersion":"6.5.0","_nodeVersion":"8.11.4","_npmUser":{"name":"uploadcare","email":"apps@uploadcare.com"},"dist":{"integrity":"sha512-mnRxG11+pRkU+UfkG1zKyd2PD2GoLoBqJFGGxHo19yY22919k4+ab15Y5v1Rsr4uG6SKmRojbu3j69QTpylRyQ==","shasum":"cbde0edcd1b5cb90ebee0d649d48b892331dd803","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.4.1.tgz","fileCount":80,"unpackedSize":356550,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJckKuzCRA9TVsSAnZWagAA3KoP/jQJ+xTcrNsjmlGnA9Xg\nd1yzLrHX32l1iqiYk2T+HS3DAbJ+bzUaFTLO9H1wiOMeFehI0i4gAGFD0SWs\n7azNIcBJGIW0XKIITxw+padhZLib4TzhrqRScyBoAuTpXfpRAD8nDGXhv4JA\nuZTCOlfhwybFihpWQHT40xa8UV8QAwXzfX+bBfSUaXT/KBLluVwTse344twa\nWsFbjSNUx6/t69hDi93x5PDAjvWFnsKHPZxlrUEEVu+j4NUOuZ2by/1SM4pF\nTS+gjD99UD1v6Sn6FW2CkTwS5Z8rw+GfNb9OFFzQSIu2vJ0a8t/QLj8VDuOC\nW4cVRqxCaGTyXk2ZXiLRNsCZkoUeB+0MIiZmo2AcM45ZZdhdUKRXye1aevDY\nh9XnJr/rEguXnMxzpUhvL/SHnrLkYiwsPshwMUvMInWK5zFBSKTmdtKOVC8S\n1vOoXJdyfdtWjfN/MV54c+xaiiDRQP3kCpluDlKiShn9w+bfEitAbgz9cUg2\nYs8+2EB7SAEvdZjMuhNNwax1ID/xl+CKQZBlFtN6LoMjYeTks+tphcqxeOpA\ntNFykzua5apwOolJ6/jFBvPxCJsNVo0SMYhWAmFKj2TU5KpwSOepgRqITw0H\nq7oOyxHbDLhPFj5K8xdPfdjaMP1bLkBlR6VFOJOXh37NQepGpIY7O/ZbKayX\nL2av\r\n=OY28\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA7u7pTBzoUgHTz0bnJ+izBwhLb25JHNkwm3tlT75ab7AiEAqBg7HaskibWVyChuvoeRMUHdSdswqPURBLqrcAxZnKQ="}]},"maintainers":[{"name":"uploadcare","email":"apps@uploadcare.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.4.1_1552985011249_0.8619431253515006"},"_hasShrinkwrap":false},"1.4.2":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.4.2","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"run-s lint:*","prebuild":"run-s lint clean","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment BUILD:minification","build:es":"rollup -c ./scripts/rollup.config.js --environment BUILD:module","build":"run-s build:**","watch":"npm run build:umd -- --watch","serve":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","dev":"run-p watch start","preversion":"kacl lint","version":"kacl release && git add CHANGELOG.md && npm run build","publish:cdn":"node ./scripts/publish-to-cdn.js","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"@brightcove/kacl":"^0.1.6","autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.26.3","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","npm-run-all":"^4.1.5","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.3","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^8.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"b33bde4c9ad628cb72ff01bde0ba9e85d6b32cca","_id":"uploadcare-widget-tab-effects@1.4.2","_npmVersion":"6.5.0","_nodeVersion":"8.11.4","_npmUser":{"name":"uploadcare","email":"apps@uploadcare.com"},"dist":{"integrity":"sha512-AhpxOQ4B4mipeCRE3DyaU4Zklcx+eewK+HvJ89soXxG9udVgBFCzjMkvf6rsdFJZ+OIK9K7MPMCC/xb3BxOB7A==","shasum":"8367a520f9c41629979ca4d8219a0e2e5c94c4f2","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.4.2.tgz","fileCount":80,"unpackedSize":357214,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJckKzMCRA9TVsSAnZWagAA8N8QAJVxbs+Lr5L55A60RfJE\nF07JRSXdA5tvS+BSRZWp8Sj3/vZFZ3HpBMc6zYaDJihlNM4J3VE3dWTDu7Uw\nDN+bjhDIdWKtZHgyrw6KSI0LhYUNbaNTnPSdpcdup4xp1jt+INB8qaat/Gqe\n8s7Olt2WxXf/TClcCJ+VgGPZmcyqoMgiCUXxU2O7lAUsypixXDD4G4opWirS\nvhicgp62Gbgz6yMVQJztWCVvcvVM47/u7EGZCd4ZdOoU/CPsjVFiEYFn7Av3\nUOH4YmZ6HfDtiA3DJaZ94KRkEYbb9jc36tVqaA8EPVKPo76i33Q9oNQuCBPk\nZzTz7gggV8Q9wwLXc2lShfiu9KZu6BvLtLgeMCZCbTGHXHmO06SQ1cWmu9g7\nlfq4MBQmz5PNBnSs6CJsNDD6jhkssVc3FSRfteQX0M9s1+xFIh07Lvib4ZWF\nScRx6AXj8SVvbqjuZIYUxo/ZWbjy/J0tqm5zsbKTyL7BhWfcHMDg2OloMDnr\nmfTGajaTN6YoYjdaHUN0ufrVsRiP21FO5GswhoR6Fxj1apOiV7Af5FMSrxlf\nHl9QUtFlev579dYwHmrfLkK9QTxqSghdcp69WrbrAwEXH49pzYpFVln+RdfJ\ngr23J1kqYOvdq1vmQ5uF5R8q8H10tLMxAFr67M2GvDsZ82h0W6AiQVqjnvup\nGYiF\r\n=T5Zd\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCgS+os7Mdsk4bv0J/SEZ4wbqcYRzwGqJs+nXUMh8iYHAIhALxZLeI4Ib4AKLhRmAnYLveSI4IVKVVj2hc/ST0jyqEK"}]},"maintainers":[{"name":"uploadcare","email":"apps@uploadcare.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.4.2_1552985291579_0.8454528640227035"},"_hasShrinkwrap":false},"1.4.3":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.4.3","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"run-s lint:*","prebuild":"run-s lint clean","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment BUILD:minification","build:es":"rollup -c ./scripts/rollup.config.js --environment BUILD:module","build":"run-s build:**","watch":"npm run build:umd -- --watch","serve":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","dev":"run-p watch start","preversion":"kacl lint","version":"kacl release && git add CHANGELOG.md && npm run build","publish:cdn":"node ./scripts/publish-to-cdn.js","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"@brightcove/kacl":"^0.1.6","autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.26.3","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","npm-run-all":"^4.1.5","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.3","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^8.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"bd0f71e0d074e1960937d13506099a0715ec7b68","_id":"uploadcare-widget-tab-effects@1.4.3","_npmVersion":"6.5.0","_nodeVersion":"8.11.4","_npmUser":{"name":"uploadcare","email":"apps@uploadcare.com"},"dist":{"integrity":"sha512-AqsJEws//l9iFBJV2gML7Cp0JUTWOhCg84BxeDYEBVtpTC4YWlDO9AjE9/2Zm3LFRIlwnFpLvS6zUELCQkFIAA==","shasum":"4deb0170999023e428cdc18454ad3d409ee5943f","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.4.3.tgz","fileCount":80,"unpackedSize":357146,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcm40OCRA9TVsSAnZWagAAfG4QAKKcC5unYa4u8NjH7HAV\nHM6gcqYxl0krGUMiuK/eRYJz9Eo+aG2bvR8C1vwDwWIH+y1E9xp5Pi+DK7a6\nLfknOq4KPyNaOjBTHemWfMFsLAAo68o34vwJAP7u+WcTGEkk1aftwP7SDlya\njc9o6KcEz6TmMXBNn/alpic6MvqjJMffZSxV3uMPletV2NK7XG6o2M1icXWx\nVsD8C23RoChY3kuInc+SMKOX884nFYy/nsBaUjisGH4TTpPYhXXT/UJhONtn\nNg4B3cmXXB4dwdULUnNmJpOOwJ9dIakSATv44jW639fvSiuCJNfvY3NIjmBC\nI/qDB87hPsmTqnf/1wGSyD5/BFV0tmMAwx3xsiC4VZR4jxqECyX/h5SIP0oo\n5Toj9MUuS2ueOFRhlL58F4fX1uvBo9UqOVTVzi2NDUObgNQAWWBfaAFLuBj+\nnPCTUGGRWE/pOiDlOdaYWyL4PPQOjazOYtsXDx1UHbMcLogfyTXrAWZme+lM\nvbba60/MjTNZZzv5dRU7U/zvajCrTBvbUHw+wKxid2wzIJnOHIfQqTgySycr\nJPvvOYKLCMbOp8hK+BMTKW/PxYMyEo4nEqsOujlN3LEmQ3eI9XiEiJ/J1ase\nESejGbi8pvCqLPT4RjHb4kkGikU0efk/C0kKM8qyDWd3CwCqG3BDSRPRrizx\nzW1s\r\n=Hajs\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCMdtZqeBxQDlxujnVHXwMM7HHbGd9S6k17lkL9z0ZYtwIhANG4DbMswKyuMQ55Wgf+CX5/F9j5J3s6kje/HxY3lVRA"}]},"maintainers":[{"name":"uploadcare","email":"apps@uploadcare.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.4.3_1553698062221_0.43481595283088326"},"_hasShrinkwrap":false},"1.4.4":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.4.4","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"run-s lint:*","prebuild":"run-s lint clean","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment BUILD:minification","build:es":"rollup -c ./scripts/rollup.config.js --environment BUILD:module","build":"run-s build:**","watch":"npm run build:umd -- --watch","serve":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","dev":"run-p watch start","preversion":"kacl lint","version":"kacl release && git add CHANGELOG.md && npm run build","publish:cdn":"node ./scripts/publish-to-cdn.js","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"@brightcove/kacl":"^0.1.6","autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.26.3","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","npm-run-all":"^4.1.5","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.3","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^8.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"a9d67f7f6775b60bef840a06f6b49846c5d8dccf","_id":"uploadcare-widget-tab-effects@1.4.4","_npmVersion":"6.5.0","_nodeVersion":"8.11.4","_npmUser":{"name":"uploadcare","email":"apps@uploadcare.com"},"dist":{"integrity":"sha512-yGwe7yJ5ByUiZ7psua9oMYiY2n7CJvN+Hq69bYpyrQ2JuF5Rb1bqzPsqnhEQPzFKNgl3gJjWktpz2/yNCCT+Sw==","shasum":"1add3b763821a267961942820938991c626e3171","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.4.4.tgz","fileCount":82,"unpackedSize":371844,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcnjXdCRA9TVsSAnZWagAA2r0P/1mCwmN8pUftd247mECs\niobG7cu1J4zUf1gR6/1eeSAoQPlecu7N3cCQWxupvxdX/SDwvY/e1mNZ6lqZ\nif5Z97XqEwfj1uhEvfI4+vyX4bKdsRsoP0EnXElj9x4ojdkMrcvTAgttFi6p\nGaQVH7OfNCuxM3fVpG+YmDt/Cmu2ZhTsjHqHqlLWOID3p3vrmSAGIk42TC59\nPAOcQvdFhZD7/FeuypaKF3vy5OY95x08HVvYFXeu31Ue0wvQ3SOzAL6RjbX7\n/wtogFHcBWs/ezBvZOHwli81+kxkmXYMew7NoImaU2nnu+u7gyh0ywtimeDA\nakRO8EMYJgx5+KWYberVzPWjBXEIoBgHLRL4EFnbwhoH9azxw3zNsSVJ7c9N\nY0NedbZc3OReBaAi9YS6spN8EV5t1IuMCIiwingD2FXz65Mw9KS9zdzWT3Sm\nHP+V8SSDhuYY7fSREFksQ/Ye7X/18wis0TDqZdA6fyezA6QT5WmHWMV9wIlZ\nd0vvIQNqFRAWF8frM4DcPCbj2KSFTinTakiGZ3STdIYHygs+97UwbgmNPi4n\nhAWVHB7tmU2ezk0O9npGzMEiQLoXX1cIo8IbJaFNPIjlI3p6vvpjh/T9HEwq\nFGBKGptsHHUmGYQIiCx/VotTeF2Lsl8h10SawTrhrRtA0cR4T6iwlfPwHwUQ\nHq7d\r\n=6q3R\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDqH+3ZEr3cVS6l4PMP+AhPsUK0b5Iv0IZiwzRUjgft9QIgZm3XVFe5W8T96rIyZe+nKBHmedTZSaEgF4VvKFOUPjQ="}]},"maintainers":[{"name":"uploadcare","email":"apps@uploadcare.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.4.4_1553872348727_0.20617523223923895"},"_hasShrinkwrap":false},"1.4.5":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.4.5","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"run-s lint:*","prebuild":"run-s lint clean","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment BUILD:minification","build:es":"rollup -c ./scripts/rollup.config.js --environment BUILD:module","build":"run-s build:**","watch":"npm run build:umd -- --watch","serve":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","dev":"run-p watch start","preversion":"kacl lint","version":"kacl release && git add CHANGELOG.md && npm run build","publish:cdn":"node ./scripts/publish-to-cdn.js","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"@brightcove/kacl":"^0.1.6","autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.26.3","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","npm-run-all":"^4.1.5","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.3","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^8.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"e22b268ea28c3cbb4bb6360e185165126dee6a0a","_id":"uploadcare-widget-tab-effects@1.4.5","_npmVersion":"6.5.0","_nodeVersion":"8.11.2","_npmUser":{"name":"uploadcare","email":"apps@uploadcare.com"},"dist":{"integrity":"sha512-IFyoXv7w0ppvynTehn1Ko/26dZPs9+hZNvgAAIqHw24UpPCvFdPDC1il9afs9C396gvxBLItReVjbYuDJ4CkXw==","shasum":"18647671b77c914e8b9bc058a2f41b39fa749afd","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.4.5.tgz","fileCount":82,"unpackedSize":373690,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpy9FCRA9TVsSAnZWagAAf44P/1Io/hij2n6OO3uWW44N\nPQB6lRre045RatFMACPJ7BeXmqYnMz+aGGWVgoYCtWObobnGLaZBbnoCPKIQ\n+y+pEVaKMaatIAflfcWFbGMLwvbYHzUzxvIus1Kce92O8vQKYBGvrlqpvquD\npWM53f1dO3kVoU4lLFdc/zm5dsTYFORYTrbqAWL7zODvxHTnbHif3Mx+MLu3\n65HwDuC7Y5abj3/OvAgslTgVEW1cbpk4HSXeOa2E7RRWA0L+N0NvInAn9z+1\nwcUqXGYpMm9YB78WjaGo+syOd7XcKAqS6UkNaTSD+xMGyxREB6biAU2eGjuF\nGhktxmhU2hLiVva8fWnbxUfs7JPt0yRyl8isLjpjZJ7Z60LE62CdSDgt7TpE\nhyRiAHMW6kh/ZsrK+LIVqtrFgEa6B2EZT0Mv4Al6yog+433GHHCeb91GzO2r\nssSpdfP+yvBlXHi85cUVG7gchJq6yf4f5k4ilzJG9Qj02/eIXdPD0eWRGa5M\n1yYnWYnX7vAOLfF8YXNtr11Ghb6uhr0AyPw2ofmfBVvTznavtsmiyolWUw6I\nKxbRMBgRZLz0z1Ea6edyESka6XZBXCVA1NauCcrOIUip9P2uX0nOAAfnIxBo\nMNOf8f271dpxjfgKAOUa7Y35C551kBy9o/H0Dfcikcou5I1coYjKuSqm/T8M\ncIFb\r\n=XR2W\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDXU+JfZQWQVUNyP8D+QzG5S6EPQYFaGdGmGIRR52hPsQIhAK9F/69NHGmwmA11fVsuKlFt3CvEkKYBYTyYL/EM+nCv"}]},"maintainers":[{"name":"uploadcare","email":"apps@uploadcare.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.4.5_1554460485063_0.9455067804670971"},"_hasShrinkwrap":false},"1.4.6":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.4.6","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"run-s lint:*","prebuild":"run-s lint clean","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment BUILD:minification","build:es":"rollup -c ./scripts/rollup.config.js --environment BUILD:module","build":"run-s build:**","watch":"npm run build:umd -- --watch","serve":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","dev":"run-p watch start","preversion":"kacl lint","version":"kacl release && git add CHANGELOG.md && npm run build","publish:cdn":"node ./scripts/publish-to-cdn.js","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"@brightcove/kacl":"^0.1.6","autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.26.3","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","npm-run-all":"^4.1.5","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.3","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^8.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"85f1649a2a54033adc0bd7b549dbb82b425412ba","_id":"uploadcare-widget-tab-effects@1.4.6","_nodeVersion":"8.11.4","_npmVersion":"6.9.0","dist":{"integrity":"sha512-83Nu4w1rmWnQWpD14cM5HczmpZX326MwQbhVhfBhDt9mQtd2PxOCZbgaxq03YP6Cbrs87U6V1IokP7UkJRjcfw==","shasum":"ca806e693f37c5a8af017af3e5ca55f678fab265","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.4.6.tgz","fileCount":82,"unpackedSize":373960,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc9OoECRA9TVsSAnZWagAABqcQAJIWYSspU3X68xCz0pHM\ngp58unioYd0HE30q8BWrx4Ubnz4lnMlHusdJOqOvcL0v+4Q60JQteyKhF7Nf\nk9UMnd6s+JmUM7f+h/holUOQEOdjMBY9vKD/XYAmUH9U7Xx48POY3uT8qdqc\noDGuLfX5wV/aGKq7vogcnUmyDB2tFA3yCnYprTIcTP3JOWGs4NEP87WnCu/r\n6aUZnV0RHtQ9cUAAVfrRmdQf1Rcnc/UWUq/IkRpT2JnSLp+SNdQAqk8mqV/w\nB6/CWLFGl1CWAbcYuWzImOXc6SV7Xho81RWgSnI0uvlEEj0gT3Ocf7xWJRfo\nxXqnzZZLMKvDlsmWzsNYhbsssFuPpfD79fg3BwV6lmO1Ptr+u+HuWLaIvs2V\nkep42Ddf0aC420xR0intC4tVgzUA11YrsC959vCXFmjhpgADzMoPBNr7b5up\nlSALrBDSmi+ZzpdEpvG/Sa/i2yp0qVjnlZAQKUrFjLf9kNGkfsmTUm5U7/Nu\nQaPnqK0tONBi1yJI0Vlby4xSBXJ8kCNIsBxWzf78ryuHEz/+fRgb97R2SHRb\nrVLqsxPYZYQCqvyA01IGiS8X5oa0ZOA3Pak7d6nckQ/uitFBz1iBrRrOlW4m\nzMNZmSevrhXerV8beOp8UadwnS6rj4sm1lkzDcuv3AmuVUtQ2CVJC9Ouzk5o\nGnTt\r\n=+rs+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBk1QnrTgvQ2ZYMF3BK0B7XpLCPQrDTbhwQa7pvU6JrHAiAMw7u8gAPdWDRTWTNKEyrtMYH1GWa4on7Ddq5Fcb+UPw=="}]},"maintainers":[{"name":"uploadcare","email":"apps@uploadcare.com"}],"_npmUser":{"name":"uploadcare","email":"apps@uploadcare.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.4.6_1559554563561_0.5570883849505133"},"_hasShrinkwrap":false},"1.4.7":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.4.7","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"run-s lint:*","prebuild":"run-s lint clean","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment BUILD:minification","build:es":"rollup -c ./scripts/rollup.config.js --environment BUILD:module","build":"run-s build:**","watch":"npm run build:umd -- --watch","serve":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","dev":"run-p watch start","preversion":"kacl lint","version":"kacl release && git add CHANGELOG.md && npm run build","publish:cdn":"node ./scripts/publish-to-cdn.js","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"@brightcove/kacl":"^0.1.6","autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.26.3","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","npm-run-all":"^4.1.5","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.3","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^8.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"1f53b8cc1ac0bf785ba72533e2ac466bb0e4e3bb","_id":"uploadcare-widget-tab-effects@1.4.7","_nodeVersion":"13.13.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-FgHMdVIP8vzgGC772wZTkkh0yN94X+hkZ5uBEdZQlRucOXobyryvPEp2hRJ4wNMt7RLubXVS8WafzEnH6iQX7A==","shasum":"1d87896447716872f4dcb727b009b54fba54f106","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.4.7.tgz","fileCount":82,"unpackedSize":375040,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe2eZnCRA9TVsSAnZWagAADCwP/3GK6YND5pu0WZf3iWQP\nFoGxe79a43eowW7WgWuE9EVj8kZq9fYx5vdwC84vs4tyabWk2HEv4tvXIkdP\np3FCu9PrgAoE1L0Tuac5ejbZcUVcY8dVkbVGfjlOL0iHZ0GS4tLbAjn6ciGZ\nJhaCIZSjjKF4OO/57gukotXpJ2pALb7LA6OtXU0mSE/NlmXaQMgobGysCS3N\n6Z8shGtNenwK2sw0yauj2nPz2zwYiVOtysD1+l84+/o2vLf64tZdNnf7joXX\n8ThB5W0bvBXHU638TceLsHnsqPIJC6GndJQgD/MChOzebQjdDla3AxS6Rh7N\nLK2hiVsOsQvHFK1kqSt7KkybVxgQbLA78NL6TjI6bKVArfbIu+cAFKizmeQ2\n6nxPH4T0E5JRv8nmpbMkZw21SYBfBN0FqWGN65GS9LviwBHTuO2Fz29LedRp\nbITXqg19p458+qdwfsQlyENmOf+RChZUzdyD33gDp9ttKrtQx+p/5+QU3AQe\nxhqgsGZiX4r5duSs6TPrTyEgkn2pXCcXP07LwffzhzpX7SliWo98eBoDX19E\nJduKIS7ng2cWzm+kkINDcF35mmhC8mxqpr9ayzYxGs1ABWLuAtn+tyVu9t6q\nFCeVLBj3xDVoKDmwycnQ7r8tepOjRNbrOkjCKK/zUQls/qm/1HNxUjzUEGWT\noDrq\r\n=5P43\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDVzFmLJq+jpy6LPlFVsYOiktQH+1yevVDCqGXpAULgUgIgPb8OTZepdpigimJDa2dY0XqjipHuhcRYVpvCmvO1/ZQ="}]},"maintainers":[{"email":"za5rubley@gmail.com","name":"jeetiss"},{"email":"apps@uploadcare.com","name":"uploadcare-user"}],"_npmUser":{"name":"jeetiss","email":"jeetiss@ya.ru"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.4.7_1591338599285_0.3452150454661118"},"_hasShrinkwrap":false},"1.5.0":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.5.0","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"run-s lint:*","prebuild":"run-s lint clean","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment MINIFIED","build:umd:en":"rollup -c ./scripts/rollup.config.js --environment ENGLISH","build:umd:en:min":"rollup -c ./scripts/rollup.config.js --environment ENGLISH,MINIFIED","build:es":"rollup -c ./scripts/rollup.config.js --environment ESM","build:es:en":"rollup -c ./scripts/rollup.config.js --environment ESM,ENGLISH","build":"run-s build:**","watch":"npm run build:umd -- --watch","serve":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","dev":"run-p watch start","preversion":"kacl lint","version":"kacl release && git add CHANGELOG.md && npm run build","publish:cdn":"node ./scripts/publish-to-cdn.js","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"@brightcove/kacl":"^0.1.6","autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.26.3","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","npm-run-all":"^4.1.5","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.3","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-module-replacement":"^1.2.1","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^8.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"cfbfe808fbf9de6186e1b34231b56b121986b9cb","_id":"uploadcare-widget-tab-effects@1.5.0","_nodeVersion":"14.16.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-HSqtidqATXC/LjkvBmIFp1Nn69r0rmJ1fGmKYHZN5WX3jqaTi2XgofrXPX7GMY6PX7z3sk8y4Edv2UoA5uuJJw==","shasum":"b320fbf22c583bb3566da65549dcb6ace7caf6ac","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.5.0.tgz","fileCount":88,"unpackedSize":666691,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgZFr7CRA9TVsSAnZWagAAh8cQAJZj8GkXC2E+kPKK4N8C\nv80aeFerKUq9cCR1BiJi8S6h+o1HQse4Xj/fHUSPo2NYz8tcOVT+3mMzzXlk\n0rYR9/lre1ruHu1q/tKBZsvy0/RAcwZ8OZAYJOQ0uMxP9jUxqhnADC/YSu0G\npdkeG3+e2PUNfqX92kHC9xoiZe6DK0RJ/iwQa/56Jc6ZNaP9ZyvykVAG8edR\nBd68+z+TmpeOHnDXTG025odgPnt5Yfo/QRTk0WvnEMZeIyZCbdWGS0YxGoQG\nkAVZ10hsbSMx29fyxcwT+Kst5BsiouWfcLt/DNdcfQyeZ5Yv+xrCNNAyemtZ\nopY+HraqpP9k2piNyv7nRMRDv9T3h64uU5zo/OVYit8OI9V8DCDPHIdvKEFW\ncU+DQR3d5JNxtV2fSEnBZq1hQ6We+gbhqAx6ry2xtuiEmtyElR/oKblrsFJb\niHKFe/qnqmLtzoFLPZ1ULrriyazfEE1dA688RZmnfeiw8ywk7M1THLKGr7Ud\noZwJIRXKyprTj+Z+zExTGeF3RCoZ1zeDNEZ3iit5Spt5d0uwuRF3atVpgF3e\nEv28VWw8sc6Vlsiny3AAL8WcplMPf1Ob015E11H4mdBK9Y21OxBCoRn/QjFv\nKENT+3NLJvHXrwIs2ESPrraQixpxHMJ+8mOqWworijOzcVKpC/XFYb+3tzK1\nWVHx\r\n=XT3H\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDrgEoyDl/4zA1LGjx2G34bWZin145IOTWNqme6jd6cVAiEAmoXA7654TGyW2G9bsKKYSv+XKmIbmooApj+e8qVKY/0="}]},"_npmUser":{"name":"nd0ut","email":"nd0ut.me@gmail.com"},"directories":{},"maintainers":[{"name":"nd0ut","email":"nd0ut.me@gmail.com"},{"name":"uploadcare-user","email":"apps@uploadcare.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.5.0_1617189627053_0.6711828056772877"},"_hasShrinkwrap":false},"1.6.0-rc":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.6.0-rc","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"run-s lint:*","prebuild":"run-s lint clean","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment MINIFIED","build:umd:en":"rollup -c ./scripts/rollup.config.js --environment ENGLISH","build:umd:en:min":"rollup -c ./scripts/rollup.config.js --environment ENGLISH,MINIFIED","build:es":"rollup -c ./scripts/rollup.config.js --environment ESM","build:es:en":"rollup -c ./scripts/rollup.config.js --environment ESM,ENGLISH","build:react:es":"rollup -c ./scripts/rollup.config.js --environment REACT,ESM","build:react:es:en":"rollup -c ./scripts/rollup.config.js --environment REACT,ESM,ENGLISH","build":"run-s build:**","watch":"npm run build:umd -- --watch","serve":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","dev":"run-p watch start","preversion":"kacl lint","version":"kacl release && git add CHANGELOG.md && npm run build","publish:cdn":"node ./scripts/publish-to-cdn.js","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"@brightcove/kacl":"^0.1.6","autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.26.3","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","npm-run-all":"^4.1.5","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.3","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-module-replacement":"^1.2.1","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^8.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","readme":"# Effects Tab for Uploadcare Widget\n\n<a href=\"https://uploadcare.com/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\">\n    <img align=\"right\" width=\"64\" height=\"64\"\n         src=\"https://ucarecdn.com/2f4864b7-ed0e-4411-965b-8148623aa680/uploadcare-logo-mark.svg\"\n         alt=\"\">\n</a>\n\nEffects Tab is an [Uploadcare Widget][uc-docs-widget] addon\nthat allows for in-browser image editing on desktop and mobile.\nTechnically, it's a [custom widget tab][uc-docs-widget-custom-tabs]\nthat replaces Preview Tab.\n\n[![NPM version][badge-npm-img]][badge-npm-url]&nbsp;\n[![Uploadcare stack on StackShare][badge-stack-img]][badge-stack-url]\n\n<p>\n  <a href=\"https://uploadcare.github.io/uploadcare-widget-tab-effects/\" title=\"See Effects Tab in action with demo\">\n    <img src=\"https://ucarecdn.com/c04e8231-3c79-43ca-a122-285b8573d1f8/uploadcare-widget-effects-tab.gif\"\n        width=\"888\" alt=\"\">\n  </a>\n</p>\n\nEffects Tab provides 9 effects for on-the-fly image editing in desktop or mobile browsers:\ncrop, rotate, mirror, flip, blur, sharpen, enhance, grayscale and invert.\nYou can customize which effects are allowed and otherwise affect the tab behavior.\n\n<!-- toc -->\n\n* [How it works](#how-it-works)\n* [Demo](#demo)\n* [Requirements](#requirements)\n* [Install](#install)\n* [Usage](#usage)\n* [Configuration](#configuration)\n* [Options](#options)\n* [Localization](#localization)\n* [Security issues](#security-issues)\n* [Feedback](#feedback)\n\n<!-- tocstop -->\n\n## How it works\n\nImage operations provided by Effects Tab are based on the capabilities\nof Uploadcare [Image Processing][uc-feature-image-processing].\nThe tab outputs a CDN link holding your image [UUID][uc-docs-uuid] and\n[image operations][uc-docs-cdn-image-operations] applied by a user while editing.\nTechnically, every original image is firstly uploaded to our CDN and then shown\nto a user in Effects Tab.\nIn case of uploading [multiple files][uc-docs-widget-multi-upload], this happens asynchronously.\n\nFor example, if a user chose to apply `grayscale` and clicked `rotate` once,\nthis is how the output value looks like:\n\n```\nhttps://ucarecdn.com/:UUID/-/preview/-/grayscale/-/rotate/270/\n```\n\nYou will always have the `preview` operation in Effects Tab output URL due to\nCDN API [limitations][uc-docs-cdn-limits].\n\n## Demo\n\nCheck out the basic demo [here][demo].\n\n## Requirements\n\nSince Effects Tab is a [custom tab][uc-docs-widget-custom-tabs] for Uploadcare Widget,\nmake sure to start with [installing the widget][uc-docs-widget-install].\n\n## Install\n\nYou’re free to choose from the install methods listed below.\n\n### NPM\n\nGet Effects Tab:\n\n```bash\nnpm i uploadcare-widget-tab-effects --save\n```\n\nAnd then import it in your module:\n\n```javascript\nimport uploadcareTabEffects from 'uploadcare-widget-tab-effects'\n```\n\n### CDN\n\nDirectly include the Effects Tab script one a page using\n\n```html\n<script src=\"https://ucarecdn.com/libs/widget-tab-effects/1.x/uploadcare.tab-effects.js\" charset=\"utf-8\"></script>\n```\n\nTo reduce loading time, you can also choose one of the following:\n\n* The minified all-locales bundle `uploadcare.tab-effects.min.js`\n* The english-only bundle `uploadcare.tab-effects.lang.en.js`\n* The minified english-only bundle `uploadcare.tab-effects.lang.en.min.js`\n\n> Note: When using a bundle above, you should also use the [matching version]([widget-bundle-types]) of `uploadcare-widget` (minified or english-only).\n\n## Usage\n\nThat’s how you add Effects Tab to the widget:\n\n```javascript\nuploadcare.registerTab('preview', uploadcareTabEffects)\n```\n\n## Configuration\n\nThis section describes different ways to set which effects are allowed\nin the Effects Tab.\n\n### Global variables\n\n```html\n<script>\n  UPLOADCARE_EFFECTS = 'blur,sharp,grayscale'\n</script>\n```\n\nor\n\n```html\n<script>\n  UPLOADCARE_EFFECTS = ['blur', 'sharp', 'grayscale']\n</script>\n```\n\n### Local attributes\n\n```html\n<input type=\"hidden\" role=\"uploadcare-uploader\" name=\"content\"\n  data-effects=\"blur,sharp,grayscale\"\n/>\n```\n\n### Settings object\n\n```javascript\nuploadcare.start({\n  effects: 'blur,sharp,grayscale',\n})\n```\n\nor\n\n```javascript\nuploadcare.start({\n  effects: ['blur', 'sharp', 'grayscale'],\n})\n```\n\n## Options\n\n### Effects `string|array`\n\nGlobal: `UPLOADCARE_EFFECTS` <br>\nLocal: `data-effects` <br>\nObject key: `effects` <br>\n\nDefault value: `crop,rotate,enhance,sharp,grayscale`.\n\nThis allows you to configure the set of enabled effects.\nIt also controls **the order of effects** in the tab:\nhowever, `crop` is always the first in the set.\n\n`effects` can either be a string holding one or more\ncomma-separated effects or an array of strings (JS only).\nYou can also enable all effects by setting the option to `all`.\n\nAvailable effects:\n\n* `crop` — crops images freely or using set aspect ratios\n* `rotate` — rotates images\n* `mirror` — provides image-mirroring capabilities\n* `flip` — allows flipping images\n* `blur` — filters images via Gaussian Blur\n* `sharp` — allows adjusting image sharpness\n* `enhance` — makes images look better via auto\n  levels, auto contrast, and saturation sharpening\n* `grayscale` — desaturates images\n* `invert` — inverts image colors\n\n## Localization\n\nIt’s possible your locale is not available in the tab yet.\nIf that’s the case, contributing your locale might be a good idea.\nThis can be done by forking the [main repository][github-home]\nfollowed by adding a new localization file [here][github-files-locales] and add `import` and `export` your locale [here][github-files-locales-index].\n\n## Security issues\n\nIf you think you ran into something in Uploadcare libraries which might have\nsecurity implications, please hit us up at [bugbounty@uploadcare.com][uc-email-bounty]\nor Hackerone.\n\nWe'll contact you personally in a short time to fix an issue through co-op and\nprior to any public disclosure.\n\n## Feedback\n\nIssues and PRs are welcome. You can provide your feedback or drop us a support\nrequest at [hello@uploadcare.com][uc-email-hello].\n\n[demo]: https://uploadcare.github.io/uploadcare-widget-tab-effects/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[github-home]: https://github.com/uploadcare/uploadcare-widget-tab-effects\n[github-files-locales]: https://github.com/uploadcare/uploadcare-widget-tab-effects/tree/master/src/locale\n[github-files-locales-index]: https://github.com/uploadcare/uploadcare-widget-tab-effects/tree/master/src/locale/index.js\n[uc-email-bounty]: mailto:bugbounty@uploadcare.com\n[uc-email-hello]: mailto:hello@uploadcare.com\n[uc-feature-image-processing]: https://uploadcare.com/features/image_processing/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-widget]: https://uploadcare.com/docs/uploads/widget/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-widget-install]: https://uploadcare.com/docs/uploads/widget/install/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-widget-custom-tabs]: https://uploadcare.com/docs/uploads/widget/custom_tabs/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-cdn]: https://uploadcare.com/docs/delivery/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-cdn-image-operations]: https://uploadcare.com/docs/processing/image/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-cdn-limits]: https://uploadcare.com/docs/processing/image/limits/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-uuid]: https://uploadcare.com/docs/concepts/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects#cdn\n[uc-docs-widget-multi-upload]: https://uploadcare.com/docs/uploads/widget/multi_upload/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[badge-npm-img]: http://img.shields.io/npm/v/uploadcare-widget-tab-effects.svg\n[badge-npm-url]: https://www.npmjs.org/package/uploadcare-widget-tab-effects\n[badge-stack-img]: https://img.shields.io/badge/tech-stack-0690fa.svg?style=flat\n[badge-stack-url]: https://stackshare.io/uploadcare/stacks/\n[widget-bundle-types]: https://github.com/uploadcare/uploadcare-widget#types-of-bundles","readmeFilename":"README.md","gitHead":"5394da178605d48d572e8c52f5903c0eb2f7b944","_id":"uploadcare-widget-tab-effects@1.6.0-rc","_nodeVersion":"16.15.1","_npmVersion":"8.12.1","dist":{"integrity":"sha512-xyoGRAygJupqKoz+c18NVOVB/Ul/icRuSIQA6rL6RKsT9UHFt7mocyDNt6vW6rOqjkVIqmjeE7ZmQZmVVCVV9Q==","shasum":"9ad186a337d4cf67ac0e01a1759e78a4ab512b6f","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.6.0-rc.tgz","fileCount":94,"unpackedSize":927787,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCMtL5nPHW8oMRKliq1gLO/DRDIDcCzkXn+EmHUWkp0xwIhAOtEH9FvKxHgMHiG2Qb9SGhlgMw43RwUFPpIB+O9+UCd"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjakMCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoWDA/8DlJvy7U9VmviaOnipM6mVkv3oaJSryqy3lV/ydmR6vXB8z7V\r\nbpuVKDyCB+RS1Q/ON1BfdZf6DLcj/sKy8NgU70vgRMxf4pUALhZJL0sD4KEr\r\n9YMk86rY6ic4ZTrQgfn2xQu7vfrMXHJQVAqj5msSrRKiwR0EzbO/6f0ZS90y\r\nfmgW08lPJjEQS5N40SdXnoSQSEqvFOUY6GHXMeCFPxj0QHHh2B07J2/eQF0L\r\njm1yEy5Z2rAexpsOaGcsEE/8nO9xcBTUl5yOykqsB+1uh1QlvOCrfZUe8V/Q\r\n4oFVvmL7nc/56Tpqa68+dMe67sjmqnLnbk7/14weW1oyVcLdDUkU6NA7Oy00\r\n4Cb2fT2FIxak2FEZzkzqVY+6iXx949yw0IqBp51jwRfsNMVMzo3hGW94JQlX\r\n7mnX4VfoqsE+6Es6+6mjwE3aX4QJcosYoCr6dxWbBJVLlrBzkINa/K6kjP/p\r\nG534Tq2KXfYUgngilC6x05i7olPcIfrJpbUzRq7Mnj7hqDB1iWYqDyadYnw7\r\nYbtz65YHmqaJwOYzS9iS/BptNNYg3Zpe8sAY2Kl3vezDasRDCY/+AyYO1d/d\r\nqUSUdHaVsa2lH5mVvLs4E0fkhXJZpIrwIT8Nz3sTmTQ118dy4Yj/7JfF/7jh\r\nuv2FhDt3JhoDGFFlTKfjuobX1fTY7ddqjJc=\r\n=7wIj\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"nd0ut","email":"nd0ut.me@gmail.com"},"directories":{},"maintainers":[{"name":"rsedykh","email":"rsedykh@uploadcare.com"},{"name":"uploadcare-user","email":"apps@uploadcare.com"},{"name":"nd0ut","email":"nd0ut.me@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.6.0-rc_1667908354644_0.5874517681396656"},"_hasShrinkwrap":false},"1.6.0-rc.0":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.6.0-rc.0","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"run-s lint:*","prebuild":"run-s lint clean","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment MINIFIED","build:umd:en":"rollup -c ./scripts/rollup.config.js --environment ENGLISH","build:umd:en:min":"rollup -c ./scripts/rollup.config.js --environment ENGLISH,MINIFIED","build:es":"rollup -c ./scripts/rollup.config.js --environment ESM","build:es:en":"rollup -c ./scripts/rollup.config.js --environment ESM,ENGLISH","build:react:umd":"rollup -c ./scripts/rollup.config.js --environment REACT","build:react:umd:en":"rollup -c ./scripts/rollup.config.js --environment REACT,ENGLISH","build":"run-s build:**","watch":"npm run build:umd -- --watch","serve":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","dev":"run-p watch start","preversion":"kacl lint","version":"kacl release && git add CHANGELOG.md && npm run build","publish:cdn":"node ./scripts/publish-to-cdn.js","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"@brightcove/kacl":"^0.1.6","autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.26.3","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","npm-run-all":"^4.1.5","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.3","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-module-replacement":"^1.2.1","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^8.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","readme":"# Effects Tab for Uploadcare Widget\n\n<a href=\"https://uploadcare.com/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\">\n    <img align=\"right\" width=\"64\" height=\"64\"\n         src=\"https://ucarecdn.com/2f4864b7-ed0e-4411-965b-8148623aa680/uploadcare-logo-mark.svg\"\n         alt=\"\">\n</a>\n\nEffects Tab is an [Uploadcare Widget][uc-docs-widget] addon\nthat allows for in-browser image editing on desktop and mobile.\nTechnically, it's a [custom widget tab][uc-docs-widget-custom-tabs]\nthat replaces Preview Tab.\n\n[![NPM version][badge-npm-img]][badge-npm-url]&nbsp;\n[![Uploadcare stack on StackShare][badge-stack-img]][badge-stack-url]\n\n<p>\n  <a href=\"https://uploadcare.github.io/uploadcare-widget-tab-effects/\" title=\"See Effects Tab in action with demo\">\n    <img src=\"https://ucarecdn.com/c04e8231-3c79-43ca-a122-285b8573d1f8/uploadcare-widget-effects-tab.gif\"\n        width=\"888\" alt=\"\">\n  </a>\n</p>\n\nEffects Tab provides 9 effects for on-the-fly image editing in desktop or mobile browsers:\ncrop, rotate, mirror, flip, blur, sharpen, enhance, grayscale and invert.\nYou can customize which effects are allowed and otherwise affect the tab behavior.\n\n<!-- toc -->\n\n* [How it works](#how-it-works)\n* [Demo](#demo)\n* [Requirements](#requirements)\n* [Install](#install)\n* [Usage](#usage)\n* [Configuration](#configuration)\n* [Options](#options)\n* [Localization](#localization)\n* [Security issues](#security-issues)\n* [Feedback](#feedback)\n\n<!-- tocstop -->\n\n## How it works\n\nImage operations provided by Effects Tab are based on the capabilities\nof Uploadcare [Image Processing][uc-feature-image-processing].\nThe tab outputs a CDN link holding your image [UUID][uc-docs-uuid] and\n[image operations][uc-docs-cdn-image-operations] applied by a user while editing.\nTechnically, every original image is firstly uploaded to our CDN and then shown\nto a user in Effects Tab.\nIn case of uploading [multiple files][uc-docs-widget-multi-upload], this happens asynchronously.\n\nFor example, if a user chose to apply `grayscale` and clicked `rotate` once,\nthis is how the output value looks like:\n\n```\nhttps://ucarecdn.com/:UUID/-/preview/-/grayscale/-/rotate/270/\n```\n\nYou will always have the `preview` operation in Effects Tab output URL due to\nCDN API [limitations][uc-docs-cdn-limits].\n\n## Demo\n\nCheck out the basic demo [here][demo].\n\n## Requirements\n\nSince Effects Tab is a [custom tab][uc-docs-widget-custom-tabs] for Uploadcare Widget,\nmake sure to start with [installing the widget][uc-docs-widget-install].\n\n## Install\n\nYou’re free to choose from the install methods listed below.\n\n### NPM\n\nGet Effects Tab:\n\n```bash\nnpm i uploadcare-widget-tab-effects --save\n```\n\nAnd then import it in your module:\n\n```javascript\nimport uploadcareTabEffects from 'uploadcare-widget-tab-effects'\n```\n\n### CDN\n\nDirectly include the Effects Tab script one a page using\n\n```html\n<script src=\"https://ucarecdn.com/libs/widget-tab-effects/1.x/uploadcare.tab-effects.js\" charset=\"utf-8\"></script>\n```\n\nTo reduce loading time, you can also choose one of the following:\n\n* The minified all-locales bundle `uploadcare.tab-effects.min.js`\n* The english-only bundle `uploadcare.tab-effects.lang.en.js`\n* The minified english-only bundle `uploadcare.tab-effects.lang.en.min.js`\n\n> Note: When using a bundle above, you should also use the [matching version]([widget-bundle-types]) of `uploadcare-widget` (minified or english-only).\n\n## Usage\n\nThat’s how you add Effects Tab to the widget:\n\n```javascript\nuploadcare.registerTab('preview', uploadcareTabEffects)\n```\n\n## Configuration\n\nThis section describes different ways to set which effects are allowed\nin the Effects Tab.\n\n### Global variables\n\n```html\n<script>\n  UPLOADCARE_EFFECTS = 'blur,sharp,grayscale'\n</script>\n```\n\nor\n\n```html\n<script>\n  UPLOADCARE_EFFECTS = ['blur', 'sharp', 'grayscale']\n</script>\n```\n\n### Local attributes\n\n```html\n<input type=\"hidden\" role=\"uploadcare-uploader\" name=\"content\"\n  data-effects=\"blur,sharp,grayscale\"\n/>\n```\n\n### Settings object\n\n```javascript\nuploadcare.start({\n  effects: 'blur,sharp,grayscale',\n})\n```\n\nor\n\n```javascript\nuploadcare.start({\n  effects: ['blur', 'sharp', 'grayscale'],\n})\n```\n\n## Options\n\n### Effects `string|array`\n\nGlobal: `UPLOADCARE_EFFECTS` <br>\nLocal: `data-effects` <br>\nObject key: `effects` <br>\n\nDefault value: `crop,rotate,enhance,sharp,grayscale`.\n\nThis allows you to configure the set of enabled effects.\nIt also controls **the order of effects** in the tab:\nhowever, `crop` is always the first in the set.\n\n`effects` can either be a string holding one or more\ncomma-separated effects or an array of strings (JS only).\nYou can also enable all effects by setting the option to `all`.\n\nAvailable effects:\n\n* `crop` — crops images freely or using set aspect ratios\n* `rotate` — rotates images\n* `mirror` — provides image-mirroring capabilities\n* `flip` — allows flipping images\n* `blur` — filters images via Gaussian Blur\n* `sharp` — allows adjusting image sharpness\n* `enhance` — makes images look better via auto\n  levels, auto contrast, and saturation sharpening\n* `grayscale` — desaturates images\n* `invert` — inverts image colors\n\n## Localization\n\nIt’s possible your locale is not available in the tab yet.\nIf that’s the case, contributing your locale might be a good idea.\nThis can be done by forking the [main repository][github-home]\nfollowed by adding a new localization file [here][github-files-locales] and add `import` and `export` your locale [here][github-files-locales-index].\n\n## Security issues\n\nIf you think you ran into something in Uploadcare libraries which might have\nsecurity implications, please hit us up at [bugbounty@uploadcare.com][uc-email-bounty]\nor Hackerone.\n\nWe'll contact you personally in a short time to fix an issue through co-op and\nprior to any public disclosure.\n\n## Feedback\n\nIssues and PRs are welcome. You can provide your feedback or drop us a support\nrequest at [hello@uploadcare.com][uc-email-hello].\n\n[demo]: https://uploadcare.github.io/uploadcare-widget-tab-effects/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[github-home]: https://github.com/uploadcare/uploadcare-widget-tab-effects\n[github-files-locales]: https://github.com/uploadcare/uploadcare-widget-tab-effects/tree/master/src/locale\n[github-files-locales-index]: https://github.com/uploadcare/uploadcare-widget-tab-effects/tree/master/src/locale/index.js\n[uc-email-bounty]: mailto:bugbounty@uploadcare.com\n[uc-email-hello]: mailto:hello@uploadcare.com\n[uc-feature-image-processing]: https://uploadcare.com/features/image_processing/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-widget]: https://uploadcare.com/docs/uploads/widget/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-widget-install]: https://uploadcare.com/docs/uploads/widget/install/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-widget-custom-tabs]: https://uploadcare.com/docs/uploads/widget/custom_tabs/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-cdn]: https://uploadcare.com/docs/delivery/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-cdn-image-operations]: https://uploadcare.com/docs/processing/image/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-cdn-limits]: https://uploadcare.com/docs/processing/image/limits/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-uuid]: https://uploadcare.com/docs/concepts/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects#cdn\n[uc-docs-widget-multi-upload]: https://uploadcare.com/docs/uploads/widget/multi_upload/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[badge-npm-img]: http://img.shields.io/npm/v/uploadcare-widget-tab-effects.svg\n[badge-npm-url]: https://www.npmjs.org/package/uploadcare-widget-tab-effects\n[badge-stack-img]: https://img.shields.io/badge/tech-stack-0690fa.svg?style=flat\n[badge-stack-url]: https://stackshare.io/uploadcare/stacks/\n[widget-bundle-types]: https://github.com/uploadcare/uploadcare-widget#types-of-bundles","readmeFilename":"README.md","gitHead":"5394da178605d48d572e8c52f5903c0eb2f7b944","_id":"uploadcare-widget-tab-effects@1.6.0-rc.0","_nodeVersion":"16.15.1","_npmVersion":"8.12.1","dist":{"integrity":"sha512-92exWkVJACql6I23vEagnFc6XrJPJR5hrxhVpIFV4lgdhyxIyA6Ius2xxdkN+scJz5FCuALWYjZBla+OZ59zsQ==","shasum":"a372690849dd90af54f9afddc38d00df556214b3","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.6.0-rc.0.tgz","fileCount":94,"unpackedSize":928333,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDkj2jKc7Hvjla3MgcCg8U8XkbESbC16AIs+lZgUlmxhQIhAKzJYk7wWZEyrPc/n1/kerMXO11lMFrLtP2zRYj/fTEs"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjakO9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmonLQ/9HNe5q5vEizJjF/7yaOBJUBWgGA0ld+Ye2e8CYCPz23hs7WWR\r\n0boQAsgRQAip6AmV4Jz35M5FA9JolDzSfPVT9WJSwnADis9H319v+DcokiaW\r\nt/hFMnNLidYXPxzPiVNrPzhXjUtc5lvHy+ouN1lf09Ikl/c2dYfCO/NjGvhy\r\nwshJxIVXg4KIFcG3CmnSI6PoK7/GM4ezgNFQKEQy4Nzeai4Q5LIaKmoMh3ic\r\njo40VF1cHevgdLwVzjHE2cZB1edq1jtVGWoUVMryIKC0kbYeP7OYGICIoURj\r\n6GMb1NUuJHfojaj0grxYHpArVls0JpzthgBrPfJX8e/dFFMpbMTj0FqvXppg\r\nGfLyBo4pdI4RH7PRP9d0UCvM602Q8gOaebAN5+cizBfpQ2aUTKQeDRqMJzGg\r\n7zItq8sefgOcw4Yo/Jx/w8fSbL+2Uy/OQ4h45es2bLJvOLk5iGufMhoExUBY\r\n4WcBQe+ds0RNhA3g/V0Zzhiu6v2e8xc65zgSobtXL4h6qg9MIcmQ6hCT9/GC\r\n0UgSmX5ZhTRvLjBktMBf8xcy2QN0vLm1z59lH6raUIT3578heVzH/YqKt2ny\r\nhWXk8sw97iRcOAc0dRYo8nIbOs5WpRwxlcVfESQXgL0Q2JLC85Cb9pNEy4E7\r\nDp2Rwrx39bOjmD3ico18Y/32uDta8//gg4c=\r\n=sU/T\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"nd0ut","email":"nd0ut.me@gmail.com"},"directories":{},"maintainers":[{"name":"rsedykh","email":"rsedykh@uploadcare.com"},{"name":"uploadcare-user","email":"apps@uploadcare.com"},{"name":"nd0ut","email":"nd0ut.me@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.6.0-rc.0_1667908541493_0.26047803370127975"},"_hasShrinkwrap":false},"1.6.0-rc.1":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.6.0-rc.1","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"run-s lint:*","prebuild":"run-s lint clean","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment MINIFIED","build:umd:en":"rollup -c ./scripts/rollup.config.js --environment ENGLISH","build:umd:en:min":"rollup -c ./scripts/rollup.config.js --environment ENGLISH,MINIFIED","build:es":"rollup -c ./scripts/rollup.config.js --environment ESM","build:es:en":"rollup -c ./scripts/rollup.config.js --environment ESM,ENGLISH","build:react:umd":"rollup -c ./scripts/rollup.config.js --environment REACT","build:react:umd:en":"rollup -c ./scripts/rollup.config.js --environment REACT,ENGLISH","build":"run-s build:**","watch":"npm run build:umd -- --watch","serve":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","dev":"run-p watch start","preversion":"kacl lint","version":"kacl release && git add CHANGELOG.md && npm run build","publish:cdn":"node ./scripts/publish-to-cdn.js","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"@brightcove/kacl":"^0.1.6","autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.26.3","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","npm-run-all":"^4.1.5","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.3","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-module-replacement":"^1.2.1","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^8.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","readme":"# Effects Tab for Uploadcare Widget\n\n<a href=\"https://uploadcare.com/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\">\n    <img align=\"right\" width=\"64\" height=\"64\"\n         src=\"https://ucarecdn.com/2f4864b7-ed0e-4411-965b-8148623aa680/uploadcare-logo-mark.svg\"\n         alt=\"\">\n</a>\n\nEffects Tab is an [Uploadcare Widget][uc-docs-widget] addon\nthat allows for in-browser image editing on desktop and mobile.\nTechnically, it's a [custom widget tab][uc-docs-widget-custom-tabs]\nthat replaces Preview Tab.\n\n[![NPM version][badge-npm-img]][badge-npm-url]&nbsp;\n[![Uploadcare stack on StackShare][badge-stack-img]][badge-stack-url]\n\n<p>\n  <a href=\"https://uploadcare.github.io/uploadcare-widget-tab-effects/\" title=\"See Effects Tab in action with demo\">\n    <img src=\"https://ucarecdn.com/c04e8231-3c79-43ca-a122-285b8573d1f8/uploadcare-widget-effects-tab.gif\"\n        width=\"888\" alt=\"\">\n  </a>\n</p>\n\nEffects Tab provides 9 effects for on-the-fly image editing in desktop or mobile browsers:\ncrop, rotate, mirror, flip, blur, sharpen, enhance, grayscale and invert.\nYou can customize which effects are allowed and otherwise affect the tab behavior.\n\n<!-- toc -->\n\n* [How it works](#how-it-works)\n* [Demo](#demo)\n* [Requirements](#requirements)\n* [Install](#install)\n* [Usage](#usage)\n* [Configuration](#configuration)\n* [Options](#options)\n* [Localization](#localization)\n* [Security issues](#security-issues)\n* [Feedback](#feedback)\n\n<!-- tocstop -->\n\n## How it works\n\nImage operations provided by Effects Tab are based on the capabilities\nof Uploadcare [Image Processing][uc-feature-image-processing].\nThe tab outputs a CDN link holding your image [UUID][uc-docs-uuid] and\n[image operations][uc-docs-cdn-image-operations] applied by a user while editing.\nTechnically, every original image is firstly uploaded to our CDN and then shown\nto a user in Effects Tab.\nIn case of uploading [multiple files][uc-docs-widget-multi-upload], this happens asynchronously.\n\nFor example, if a user chose to apply `grayscale` and clicked `rotate` once,\nthis is how the output value looks like:\n\n```\nhttps://ucarecdn.com/:UUID/-/preview/-/grayscale/-/rotate/270/\n```\n\nYou will always have the `preview` operation in Effects Tab output URL due to\nCDN API [limitations][uc-docs-cdn-limits].\n\n## Demo\n\nCheck out the basic demo [here][demo].\n\n## Requirements\n\nSince Effects Tab is a [custom tab][uc-docs-widget-custom-tabs] for Uploadcare Widget,\nmake sure to start with [installing the widget][uc-docs-widget-install].\n\n## Install\n\nYou’re free to choose from the install methods listed below.\n\n### NPM\n\nGet Effects Tab:\n\n```bash\nnpm i uploadcare-widget-tab-effects --save\n```\n\nAnd then import it in your module:\n\n```javascript\nimport uploadcareTabEffects from 'uploadcare-widget-tab-effects'\n```\n\n### CDN\n\nDirectly include the Effects Tab script one a page using\n\n```html\n<script src=\"https://ucarecdn.com/libs/widget-tab-effects/1.x/uploadcare.tab-effects.js\" charset=\"utf-8\"></script>\n```\n\nTo reduce loading time, you can also choose one of the following:\n\n* The minified all-locales bundle `uploadcare.tab-effects.min.js`\n* The english-only bundle `uploadcare.tab-effects.lang.en.js`\n* The minified english-only bundle `uploadcare.tab-effects.lang.en.min.js`\n\n> Note: When using a bundle above, you should also use the [matching version]([widget-bundle-types]) of `uploadcare-widget` (minified or english-only).\n\n## Usage\n\nThat’s how you add Effects Tab to the widget:\n\n```javascript\nuploadcare.registerTab('preview', uploadcareTabEffects)\n```\n\n## Configuration\n\nThis section describes different ways to set which effects are allowed\nin the Effects Tab.\n\n### Global variables\n\n```html\n<script>\n  UPLOADCARE_EFFECTS = 'blur,sharp,grayscale'\n</script>\n```\n\nor\n\n```html\n<script>\n  UPLOADCARE_EFFECTS = ['blur', 'sharp', 'grayscale']\n</script>\n```\n\n### Local attributes\n\n```html\n<input type=\"hidden\" role=\"uploadcare-uploader\" name=\"content\"\n  data-effects=\"blur,sharp,grayscale\"\n/>\n```\n\n### Settings object\n\n```javascript\nuploadcare.start({\n  effects: 'blur,sharp,grayscale',\n})\n```\n\nor\n\n```javascript\nuploadcare.start({\n  effects: ['blur', 'sharp', 'grayscale'],\n})\n```\n\n## Options\n\n### Effects `string|array`\n\nGlobal: `UPLOADCARE_EFFECTS` <br>\nLocal: `data-effects` <br>\nObject key: `effects` <br>\n\nDefault value: `crop,rotate,enhance,sharp,grayscale`.\n\nThis allows you to configure the set of enabled effects.\nIt also controls **the order of effects** in the tab:\nhowever, `crop` is always the first in the set.\n\n`effects` can either be a string holding one or more\ncomma-separated effects or an array of strings (JS only).\nYou can also enable all effects by setting the option to `all`.\n\nAvailable effects:\n\n* `crop` — crops images freely or using set aspect ratios\n* `rotate` — rotates images\n* `mirror` — provides image-mirroring capabilities\n* `flip` — allows flipping images\n* `blur` — filters images via Gaussian Blur\n* `sharp` — allows adjusting image sharpness\n* `enhance` — makes images look better via auto\n  levels, auto contrast, and saturation sharpening\n* `grayscale` — desaturates images\n* `invert` — inverts image colors\n\n## Localization\n\nIt’s possible your locale is not available in the tab yet.\nIf that’s the case, contributing your locale might be a good idea.\nThis can be done by forking the [main repository][github-home]\nfollowed by adding a new localization file [here][github-files-locales] and add `import` and `export` your locale [here][github-files-locales-index].\n\n## Security issues\n\nIf you think you ran into something in Uploadcare libraries which might have\nsecurity implications, please hit us up at [bugbounty@uploadcare.com][uc-email-bounty]\nor Hackerone.\n\nWe'll contact you personally in a short time to fix an issue through co-op and\nprior to any public disclosure.\n\n## Feedback\n\nIssues and PRs are welcome. You can provide your feedback or drop us a support\nrequest at [hello@uploadcare.com][uc-email-hello].\n\n[demo]: https://uploadcare.github.io/uploadcare-widget-tab-effects/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[github-home]: https://github.com/uploadcare/uploadcare-widget-tab-effects\n[github-files-locales]: https://github.com/uploadcare/uploadcare-widget-tab-effects/tree/master/src/locale\n[github-files-locales-index]: https://github.com/uploadcare/uploadcare-widget-tab-effects/tree/master/src/locale/index.js\n[uc-email-bounty]: mailto:bugbounty@uploadcare.com\n[uc-email-hello]: mailto:hello@uploadcare.com\n[uc-feature-image-processing]: https://uploadcare.com/features/image_processing/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-widget]: https://uploadcare.com/docs/uploads/widget/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-widget-install]: https://uploadcare.com/docs/uploads/widget/install/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-widget-custom-tabs]: https://uploadcare.com/docs/uploads/widget/custom_tabs/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-cdn]: https://uploadcare.com/docs/delivery/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-cdn-image-operations]: https://uploadcare.com/docs/processing/image/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-cdn-limits]: https://uploadcare.com/docs/processing/image/limits/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[uc-docs-uuid]: https://uploadcare.com/docs/concepts/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects#cdn\n[uc-docs-widget-multi-upload]: https://uploadcare.com/docs/uploads/widget/multi_upload/?utm_source=github&utm_campaign=uploadcare-widget-tab-effects\n[badge-npm-img]: http://img.shields.io/npm/v/uploadcare-widget-tab-effects.svg\n[badge-npm-url]: https://www.npmjs.org/package/uploadcare-widget-tab-effects\n[badge-stack-img]: https://img.shields.io/badge/tech-stack-0690fa.svg?style=flat\n[badge-stack-url]: https://stackshare.io/uploadcare/stacks/\n[widget-bundle-types]: https://github.com/uploadcare/uploadcare-widget#types-of-bundles","readmeFilename":"README.md","gitHead":"5394da178605d48d572e8c52f5903c0eb2f7b944","_id":"uploadcare-widget-tab-effects@1.6.0-rc.1","_nodeVersion":"16.15.1","_npmVersion":"8.12.1","dist":{"integrity":"sha512-w3GwcU2yshTc5tCANL4idpKeRIbsJqu80dL5kFrDDF6XmcmWbE8/N8hWdIbUrGhSqP5eCLnYC1uY2DwU+bDz2A==","shasum":"a49fb8d9a7484581730525f224e27e84ef449a61","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.6.0-rc.1.tgz","fileCount":94,"unpackedSize":928319,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHNUxmnuk4JZ+r2mlJAWxiLotY+9tfEwoA+WzWO/Bw+bAiBTDd0ArjoCVedbaFpkhd03sCDL6XnFdOopEi8FZ1Sr5g=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjakSdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmogYA/7BxJBRXyoiwLU/m8ssjRpl0nH9NjU46bwgAUMy++PwLjWFEs2\r\nJ3189hAIjbt60FoPeGVNn/+9rKo5lCRFbTK19d4t3XCI2zhv0tlYWFcnkAnK\r\nXh9R7bkgoIhuM6Ha+ycLrNWHdHm1831AKABSGPv1Nn7qQR5Y+GPFHiRbXU8/\r\ndIrldsSg7sPzFPPu3eSrNm6eHJ/iDtUFWM5eF2dnN1SnYX4owpB4FzSTnocs\r\nk+bG0tcYRx1utyqhnBxb4AADvUizNTrhN+ITVoHyQIyfhb/H1xs/ScYufWtn\r\nnqmVjUw4ZHs+4TOa6U7vXmRtO2dWwkyVLwNI1lPd6TtvbqyfZlxAyXqaH64Z\r\nsdp9aPDB66X8WmEhW1wKTH8RsToxgmo7LpKCJUTjPYXCjoQD1IFD/aUxpyZh\r\nR2OmD54b9ryYZYjo2kr8v2E4nYDrvApGMBjpGwtbKMA4xVZZkmd1nRpmfN4e\r\npnVH2+bp/XC5Ype0vCBnqW6NFJs0i14pCYaZxCIAv5HYpylpgrA336GC4Isn\r\n2U6200w6oHglc9P8ZdKEUU0Do+LyIiiDCyrOXVaOpdPxgTF5RHyOwMBE1pMn\r\n7981ntDcm37b+PsztY+AB4vzurvRwgCW4bMA1jwLZM8rhqWwhZfVG4lN9r2V\r\nt7WBuSw1PD64gb1f/6NDVe9+7nzghbTpxgM=\r\n=QdhV\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"nd0ut","email":"nd0ut.me@gmail.com"},"directories":{},"maintainers":[{"name":"rsedykh","email":"rsedykh@uploadcare.com"},{"name":"uploadcare-user","email":"apps@uploadcare.com"},{"name":"nd0ut","email":"nd0ut.me@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.6.0-rc.1_1667908765695_0.22170328073586676"},"_hasShrinkwrap":false},"1.6.0":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.6.0","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"run-s lint:*","prebuild":"run-s lint clean","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment MINIFIED","build:umd:en":"rollup -c ./scripts/rollup.config.js --environment ENGLISH","build:umd:en:min":"rollup -c ./scripts/rollup.config.js --environment ENGLISH,MINIFIED","build:es":"rollup -c ./scripts/rollup.config.js --environment ESM","build:es:en":"rollup -c ./scripts/rollup.config.js --environment ESM,ENGLISH","build:react:umd":"rollup -c ./scripts/rollup.config.js --environment REACT","build:react:umd:en":"rollup -c ./scripts/rollup.config.js --environment REACT,ENGLISH","build":"run-s build:**","watch":"npm run build:umd -- --watch","serve":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","dev":"run-p watch start","preversion":"kacl lint","version":"kacl release && git add CHANGELOG.md && npm run build","publish:cdn":"node ./scripts/publish-to-cdn.js","postpublish":"npm run publish:cdn"},"peerDependencies":{"uploadcare-widget":"3.x"},"dependencies":{},"devDependencies":{"@brightcove/kacl":"^0.1.6","autoprefixer":"^8.3.0","aws-sdk":"^2.82.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.26.3","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","npm-run-all":"^4.1.5","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.3","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-module-replacement":"^1.2.1","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","stylelint":"^8.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"d84e79397a35104dbd0462766cd8fbb351176f2d","_id":"uploadcare-widget-tab-effects@1.6.0","_nodeVersion":"16.15.1","_npmVersion":"8.12.1","dist":{"integrity":"sha512-RoWxeZnk41qm8Mo19R8Zvshsuqetc4y+gFtxA89x+noLCSFItuviGZJBf7rcX3ocwn+aFNKbXp44dlaVDoYRIA==","shasum":"6de4664b0b2fa47100b5a3e0afc1d41b35b8f429","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.6.0.tgz","fileCount":95,"unpackedSize":931236,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDTq2L7qeBk1y9PbYGBCMr/glqfwXPo8gc34Ol+knEoJgIhAJtCkB2zpiHCgjTME73GDcRAOPKv2cxleNMNVYIbx8tP"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdQ4KACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr5gw//VK/P5INlwGvgP5u/HeTPRP4gWtnKH44RJdUd6nyotTt2g+yg\r\nyuH++6brQwtlvsscaDBex+tybiC6D/jsKWMGHOvSgDvTHCCVdPyqq0tn6xNV\r\nUAazYNhSF4mlxjWAiFDHwvlFxsh+2fEmpsG8KizMzBncBpFijaGHuMEvy3F0\r\n7dwDBa5JhdVP34A9Ch47Yv3ct3ps/QR0FQJDJrYO6iGIUMVPP0rru7TofbYu\r\nf4Qq4rUSOTh8cO+VPxhYGu3fUtPnpslvP8lqoZ7VWtlZJO7yhstHyRH/8fR9\r\nbvJIHsBmitNHCyQT5ygAb6vJ3Xkk0HSU21x9Ie5TZIn4EuikZ02KfNKonOkW\r\nRThS+QbjUDBjiP5D1O4j7lyG7WFEJewhqGcuAynTsW+Ns3lsnoM9hNdyoAew\r\nD36cP1NNDX/Fwi3wp55vyO/PHsrQo5mWDiRrCrd3p5O6Vl1jx7rTaAsbRiFM\r\n9TdaQ6sSFwN1C4kM0rvtvQTLdyo8KDNQbFugopvIqTsnqH3WuGf2rBZIHEYW\r\nsvuV7Cd+TzSsOJrnYOS+oDOyCQ0Zdt009ndvO1svWgBtsU+5RbgnE3VSJNTB\r\nGwbJaP885TcA5vK79urViK8t9l33OX9Be7/BsOSmcaup6J2zTalmeXnxM5U2\r\nIP0CJM7nVemX16BhUcHjcMFqqzFQIcKzvUc=\r\n=gOav\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"nd0ut","email":"nd0ut.me@gmail.com"},"directories":{},"maintainers":[{"name":"rsedykh","email":"rsedykh@uploadcare.com"},{"name":"uploadcare-user","email":"apps@uploadcare.com"},{"name":"nd0ut","email":"nd0ut.me@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.6.0_1668615689922_0.07442206112771932"},"_hasShrinkwrap":false},"1.7.0":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.7.0","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"run-s lint:*","prebuild":"run-s lint clean","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment MINIFIED","build:umd:en":"rollup -c ./scripts/rollup.config.js --environment ENGLISH","build:umd:en:min":"rollup -c ./scripts/rollup.config.js --environment ENGLISH,MINIFIED","build:es":"rollup -c ./scripts/rollup.config.js --environment ESM","build:es:en":"rollup -c ./scripts/rollup.config.js --environment ESM,ENGLISH","build:react:umd":"rollup -c ./scripts/rollup.config.js --environment REACT","build:react:umd:en":"rollup -c ./scripts/rollup.config.js --environment REACT,ENGLISH","build":"run-s build:**","watch":"npm run build:umd -- --watch","serve":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","dev":"run-p watch start","publish:cdn":"node ./scripts/publish-to-s3.js","release:prepare":"shipjs prepare","release:trigger":"shipjs trigger"},"peerDependencies":{"uploadcare-widget":"3.x"},"devDependencies":{"autoprefixer":"^8.3.0","aws-sdk":"^2.1389.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.26.3","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","npm-run-all":"^4.1.5","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.3","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-module-replacement":"^1.2.1","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","shipjs":"0.26.3","stylelint":"^8.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"b863f182ca7aca01dbb974adcbb436a33dfeee8c","_id":"uploadcare-widget-tab-effects@1.7.0","_nodeVersion":"18.12.1","_npmVersion":"8.19.2","dist":{"integrity":"sha512-+uwEoSRS4n+D9Rsa7FjU3KShSb9T6MoHGBurLqUr97gh42F35/UvZ87KmTvCLTfZzsNMZ+ST2OHoAMtNe6i59w==","shasum":"21eb49a90c6a99bca81b859ac52df518530fee7b","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.7.0.tgz","fileCount":96,"unpackedSize":930946,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGI/qGcLIfyjTlRhzp4HbHWoOikS9+SvQbS+wqRqYL5yAiEA+A7sQ4kLKZCND5zRbO0j12zFmB70XeLkENG/liMOUCk="}]},"_npmUser":{"name":"uploadcare-user","email":"apps@uploadcare.com"},"directories":{},"maintainers":[{"name":"rsedykh","email":"rsedykh@uploadcare.com"},{"name":"uploadcare-user","email":"apps@uploadcare.com"},{"name":"nd0ut","email":"nd0ut.me@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.7.0_1685710084651_0.3723931316973699"},"_hasShrinkwrap":false},"1.7.1":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.7.1","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"run-s lint:*","prebuild":"run-s lint clean","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment MINIFIED","build:umd:en":"rollup -c ./scripts/rollup.config.js --environment ENGLISH","build:umd:en:min":"rollup -c ./scripts/rollup.config.js --environment ENGLISH,MINIFIED","build:es":"rollup -c ./scripts/rollup.config.js --environment ESM","build:es:en":"rollup -c ./scripts/rollup.config.js --environment ESM,ENGLISH","build:react:umd":"rollup -c ./scripts/rollup.config.js --environment REACT","build:react:umd:en":"rollup -c ./scripts/rollup.config.js --environment REACT,ENGLISH","build":"run-s build:**","watch":"npm run build:umd -- --watch","serve":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","dev":"run-p watch start","publish:cdn":"node ./scripts/publish-to-s3.js","release:prepare":"shipjs prepare","release:trigger":"shipjs trigger"},"peerDependencies":{"uploadcare-widget":"3.x"},"devDependencies":{"autoprefixer":"^8.3.0","aws-sdk":"^2.1389.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.26.3","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","npm-run-all":"^4.1.5","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.3","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-module-replacement":"^1.2.1","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","shipjs":"0.26.3","stylelint":"^8.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"0193f1937d5c0af549638ec574b389b4ff7bf47f","_id":"uploadcare-widget-tab-effects@1.7.1","_nodeVersion":"18.12.1","_npmVersion":"8.19.2","dist":{"integrity":"sha512-Z9Vyl2/lbTZ/x8CUXYuSt3908lAaGvhAz7Y7NosDB52/8cja+pTqTEsbmEFiLh+bdltk2gJODf/jZmaPJurS8g==","shasum":"c0bef976ed3c584f345b515d8b8361651310df3e","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.7.1.tgz","fileCount":96,"unpackedSize":930946,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDKmeUrjcx/WwVcGGYvpXCRRHS15EruKg5ITXO/T4LlBAIhAMYZ1Lt/9+LGjgGA5OilMQ3R2NXJnf9m5DIHD5PwFAsU"}]},"_npmUser":{"name":"uploadcare-user","email":"apps@uploadcare.com"},"directories":{},"maintainers":[{"name":"rsedykh","email":"rsedykh@uploadcare.com"},{"name":"uploadcare-user","email":"apps@uploadcare.com"},{"name":"nd0ut","email":"nd0ut.me@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.7.1_1685711375675_0.15239197112898606"},"_hasShrinkwrap":false},"1.7.2":{"name":"uploadcare-widget-tab-effects","config":{"name":"uploadcare.tab-effects","library":"uploadcareTabEffects","classPrefix":"uploadcare-tab-effects--"},"version":"1.7.2","description":"Effects Tab for Uploadcare Widget. Edit images in desktop and mobile browsers.","main":"dist/uploadcare.tab-effects.js","module":"dist/uploadcare.tab-effects.es.js","scripts":{"clean":"rimraf dist","lint:js":"eslint .","lint:css":"stylelint \"src/**/*.pcss\"","lint":"run-s lint:*","prebuild":"run-s lint clean","build:umd":"rollup -c ./scripts/rollup.config.js","build:umd:min":"rollup -c ./scripts/rollup.config.js --environment MINIFIED","build:umd:en":"rollup -c ./scripts/rollup.config.js --environment ENGLISH","build:umd:en:min":"rollup -c ./scripts/rollup.config.js --environment ENGLISH,MINIFIED","build:es":"rollup -c ./scripts/rollup.config.js --environment ESM","build:es:en":"rollup -c ./scripts/rollup.config.js --environment ESM,ENGLISH","build:react:umd":"rollup -c ./scripts/rollup.config.js --environment REACT","build:react:umd:en":"rollup -c ./scripts/rollup.config.js --environment REACT,ENGLISH","build":"run-s build:**","watch":"npm run build:umd -- --watch","serve":"browser-sync start --ss dist --files dist --port 3126","start":"browser-sync start --config ./scripts/start.config.js","dev":"run-p watch start","publish:cdn":"node ./scripts/publish-to-s3.js","release:prepare":"shipjs prepare","release:trigger":"shipjs trigger"},"peerDependencies":{"uploadcare-widget":"3.x"},"devDependencies":{"autoprefixer":"^8.3.0","aws-sdk":"^2.1389.0","babel-eslint":"^8.2.3","babel-preset-es2015-rollup":"^3.0.0","babel-preset-stage-3":"^6.24.1","browser-sync":"^2.26.3","cssnano":"^3.10.0","eslint":"^4.19.1","eslint-config-uploadcare":"^1.1.0","fs-extra":"^4.0.1","npm-run-all":"^4.1.5","postcss-calc":"^6.0.1","postcss-color-function":"^4.0.1","postcss-css-variables":"^0.8.1","postcss-flexbugs-fixes":"^3.3.0","postcss-modules":"^1.1.0","postcss-nested":"^3.0.0","postcss-reporter":"^5.0.0","rimraf":"^2.6.3","rollup":"^0.45.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-filesize":"^1.4.2","rollup-plugin-includepaths":"^0.2.2","rollup-plugin-license":"^0.4.0","rollup-plugin-module-replacement":"^1.2.1","rollup-plugin-postcss":"^0.5.3","rollup-plugin-posthtml-template":"^1.1.0","rollup-plugin-uglify":"^2.0.1","rollup-watch":"^4.3.1","shipjs":"0.26.3","stylelint":"^8.2.0","stylelint-config-uploadcare":"^3.0.0"},"browserslist":["> .4%","ie >= 10"],"keywords":["uploadcare","widget","image","images","editor"],"author":"","license":"MIT","repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","gitHead":"48f922944157303bcc0d1274dfaa0697e5b7720f","_id":"uploadcare-widget-tab-effects@1.7.2","_nodeVersion":"18.12.1","_npmVersion":"8.19.2","dist":{"integrity":"sha512-56IxhR5TueGRv9ZUReAZTycV4iWBZ421L1KlMGpK7kCJs/vyQMDY+iQTr3WLtEUmq2Jl9v6H6EA471s3jjpGYQ==","shasum":"a4a766143a586087345b28aa971edac87f98e3f4","tarball":"https://registry.npmjs.org/uploadcare-widget-tab-effects/-/uploadcare-widget-tab-effects-1.7.2.tgz","fileCount":96,"unpackedSize":930946,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDIqTlTALyYOLgNQt96N0f0hiHYkq2NgDnZnnpYC29/BwIhAMj04CjEES0kBfr1cYsXp94fwmQMqW4cfUon9+VIduOu"}]},"_npmUser":{"name":"uploadcare-user","email":"apps@uploadcare.com"},"directories":{},"maintainers":[{"name":"rsedykh","email":"rsedykh@uploadcare.com"},{"name":"uploadcare-user","email":"apps@uploadcare.com"},{"name":"nd0ut","email":"nd0ut.me@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/uploadcare-widget-tab-effects_1.7.2_1685712565955_0.1705845178896095"},"_hasShrinkwrap":false}},"homepage":"https://github.com/uploadcare/uploadcare-widget-tab-effects#readme","keywords":["uploadcare","widget","image","images","editor"],"repository":{"type":"git","url":"git+https://github.com/uploadcare/uploadcare-widget-tab-effects.git"},"bugs":{"url":"https://github.com/uploadcare/uploadcare-widget-tab-effects/issues"},"license":"MIT","readmeFilename":"README.md"}