{"maintainers":[{"name":"anonymous","email":"minimac@minimamente.com"}],"keywords":["css","css3","animation","animations","magic"],"dist-tags":{"latest":"1.4.8"},"author":{"name":"Christian Pucci","email":"minimac@minimamente.com","url":"https://www.minimamente.com/"},"description":"Magic CSS3 animations","readme":":tophat: magic\n---------------\n\nCSS3 Animations with special effects. **(→ 3.1 kB gzip)**\n\n## Demo\n\nCheckout the demo for the animations [here](https://www.minimamente.com/project/magic/)\n\n## **Table of Contents**\n\n- [Installation](#installation)\n- [Getting Started](#getting-started)\n- [Usage with JavaScript](#usage-with-javascript)\n- [Usage with jQuery](#usage-with-jquery)\n- [HTML & CSS tips](#html--css-tips)\n- [:tada: Gulp and SCSS (SASS) compiling](#tada-gulp-and-scss-sass-compiling)\n- [:white_check_mark: Browser Support](#white_check_mark-browser-support)\n\n\n## Installation\n\n**GitHub Package Registry** - [Package url](https://github.com/miniMAC/magic/packages/24129)\n```bash\nnpm install @minimac/magic.css\n```\n\n**NPM** - [Package url](https://www.npmjs.com/package/magic.css)\n```bash\nnpm i magic.css\n```\n\n**YARN** - [Package url](https://yarnpkg.com/en/package/magic.css)\n```bash\nyarn add magic.css\n```\n\n## Getting Started\n\nInclude the file **magic.css** or include the minified version **magic.min.css**\n\n```html\n<link rel=\"stylesheet\" href=\"yourpath/magic.css\">\n```\n\nor\n\n```html\n<link rel=\"stylesheet\" href=\"yourpath/magic.min.css\">\n```\n\n## Usage with JavaScript\n\nThis is a sample code for on hover effect with **JavaScript**.\nFirst, Include the class `magictime` and then a desired animation class.\n```js\nconst selector = document.querySelector('.yourdiv')\nselector.classList.add('magictime', 'puffIn')\n```\n\nIf you want to load the animation after certain time, you can use this example:\n```js\n//set timer to 5 seconds, after that, load the magic animation\nfunction myFunction() {\n    const selector = document.querySelector('.yourdiv')\n    selector.classList.add('magictime', 'puffIn')\n}\nsetTimeout(myFunction, 5000);\n```\n\nIf you want to load the animation after certain time but with an infinite loop, you can use this example:\n```js\n//set timer to 3 seconds, after that, load the magic animation and repeat forever\nfunction myFunction() {\n    const selector = document.querySelector('.yourdiv')\n    selector.classList.add('magictime', 'puffIn')\n}\nsetInterval(myFunction, 3000);\n```\n\n## Usage with jQuery\n\nThis is a sample code for on hover effect with jQuery.\nFirst, Include the class `magictime` and then the desired animation class.\n```js\n$('.yourdiv').hover(function () {\n    $(this).addClass('magictime puffIn');\n});\n```\n\nIf you want to load the animation after certain time, you can use this example:\n```js\n//set timer to 5 seconds, after that, load the magic animation\nsetTimeout(function(){\n    $('.yourdiv').addClass('magictime puffIn');\n}, 5000);\n```\n\nIf you want to load the animation after certain time but with infinite loop, you can use this example:\n```js\n//set timer to 3 seconds, after that, load the magic animation and repeat forever\nsetInterval(function(){\n    $('.yourdiv').toggleClass('magictime puffIn');\n}, 3000 );\n```\n## HTML & CSS tips\n\nYou can **change the time** of the animation by setting the class `magictime` for example:\n```css\n.magictime {\n    -webkit-animation-duration: 3s;\n    animation-duration: 3s;\n}\n```\n\n**Default** CSS timing is:\n```css\n.magictime {\n    -webkit-animation-duration: 1s;\n    animation-duration: 1s;\n}\n```\n\nIf you want to assign the **timing to a specific animation**, you can use the following code *(use 2 class)*:\n```css\n.magictime.magic {\n    -webkit-animation-duration: 10s;\n    animation-duration: 10s;\n}\n```\n\n## Animation Classes\n\n| MAGIC EFFECTS | BLING     | STATIC EFFECTS      | STATIC EFFECTS OUT | PERSPECTIVE            | ROTATE      |\n|---------------|-----------|---------------------|--------------------|------------------------|-------------|\n| magic         | puffIn    | openDownLeft        | openDownLeftOut    | perspectiveDown        | rotateDown  |\n| twisterInDown | puffOut   | openDownRight       | openDownRightOut   | perspectiveUp          | rotateUp    |\n| twisterInUp   | vanishIn  | openUpLeft          | openUpLeftOut      | perspectiveLeft        | rotateLeft  |\n| swap          | vanishOut | openUpRight         | openUpRightOut     | perspectiveRight       | rotateRight |\n|               |           | openDownLeftReturn  |                    | perspectiveDownReturn  |             |\n|               |           | openDownRightReturn |                    | perspectiveUpReturn    |             |\n|               |           | openUpLeftReturn    |                    | perspectiveLeftReturn  |             |\n|               |           | openUpRightReturn   |                    | perspectiveRightReturn |             |\n\n\n| SLIDE            | MATH      | TIN         | BOMB         | BOING        | ON THE SPACE  |\n|------------------|-----------|-------------|--------------|--------------|---------------|\n| slideDown        | swashOut  | tinRightOut | bombRightOut | boingInUp    | spaceOutUp    |\n| slideUp          | swashIn   | tinLeftOut  | bombLeftOut  | boingOutDown | spaceOutRight |\n| slideLeft        | foolishIn | tinUpOut    |              |              | spaceOutDown  |\n| slideRight       | holeOut   | tinDownOut  |              |              | spaceOutLeft  |\n| slideDownReturn  |           | tinRightIn  |              |              | spaceInUp     |\n| slideUpReturn    |           | tinLeftIn   |              |              | spaceInRight  |\n| slideLeftReturn  |           | tinUpIn     |              |              | spaceInDown   |\n| slideRightReturn |           | tinDownIn   |              |              | spaceInLeft   |\n\n:tada: Gulp and SCSS (SASS) compiling\n---------------\n\nIf you want to customize the CSS files, now you will have the chance. For example, if you want to include only certain animations, you will have to go to this file:\n\n```html\nassets/scss/magic.scss\n```\n\nComment or uncomment your desired file and run from terminal the following commands:\n\n```bash\nnpm install\n```\n\nand last command:\n\n```bash\ngulp\n```\n\n**Automatically** this generate the new files!\n\n\n:white_check_mark: Browser Support\n---------------\n\n**Browser** | Chrome | Firefox | Safari | iOS Safari | Opera | Android | Android Chrome | IE | Opera Mini\n--- | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---:\n**Version** | 31+ | 31+ | 7+ | 7.1+ | 27+ | 4.1+ | 42+ | 10+ | :x:\n","repository":{"type":"git","url":"git+https://github.com/miniMAC/magic.git"},"bugs":{"url":"https://github.com/miniMAC/magic/issues"},"license":"MIT","versions":{"1.1.0":{"name":"magic.css","version":"1.1.0","description":"CSS3 Animations with special effects","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/miniMAC/magic"},"keywords":["magic","animations","animation","css3","css"],"maintainers":[{"name":"anonymous","email":"minimac@minimamente.com"}],"author":{"name":"Christian Pucci","email":"minimac@minimamente.com","url":"http://minimamente.com/"},"license":"MIT","bugs":{"url":"https://github.com/miniMAC/magic/issues"},"autoupdate":{"source":"git","target":"git://github.com/miniMAC/magic.css.git","basePath":"","files":["*.css"]},"homepage":"https://github.com/miniMAC/magic","_id":"magic.css@1.1.0","_shasum":"215f5daf936b2d760175da5c25ecfdff79a2cc59","_from":"./","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"minimac@minimamente.com"},"dist":{"shasum":"215f5daf936b2d760175da5c25ecfdff79a2cc59","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/magic.css/-/magic.css-1.1.0.tgz","integrity":"sha512-tIaLiupWpL6+OPMrRWRHVKKdVjdMAkRfyAjrDbhfLlHvGb/Qvtp9Zc1pMZrhuUmkAhV0SI8cRPjBG26O/W3wPw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCYMNJM/T0HY0GeGXmDmJr0VXXMst9zNRgIRV2S8S3TqAIgZOb9Ne8HqSo/FNLlXBfXfnVgwZ/nN8RcnEuj65XHWwQ="}]},"directories":{}},"1.3.0":{"name":"magic.css","version":"1.3.0","description":"Magic CSS3 animations","main":"gulpfile.js","devDependencies":{"gulp-clean-css":"^3.9.4","gulp-concat":"^2.6.1","gulp-notify":"^2.2.0"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/miniMAC/magic.git"},"keywords":["css","css3","animation","animations","magic"],"author":{"name":"Christian Pucci","email":"minimac@minimamente.com","url":"https://minimamente.com/"},"license":"MIT","bugs":{"url":"https://github.com/miniMAC/magic/issues"},"homepage":"https://github.com/miniMAC/magic#readme","dependencies":{"gulp":"^3.9.1"},"gitHead":"22b613fc4f65814919da099bed5c053f4b7ed4d4","_id":"magic.css@1.3.0","_npmVersion":"6.0.1","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"minimac@minimamente.com"},"dist":{"integrity":"sha512-5kR/A4OeC5Otzh0y2syIq5nOqgFbocr+F9ubHFNYUKy0X4o6E97fVR4JEJYSsg9uPmwPTupdh5NV+JQkE1Y6Uw==","shasum":"41cd3dee109a8b2d239675e9a0d3a7807434d4b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/magic.css/-/magic.css-1.3.0.tgz","fileCount":71,"unpackedSize":213367,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/CbeCRA9TVsSAnZWagAAXEcP/jA20BXbhD221Lj+0NIU\nmOwazYWBWMVjT/3pYhibfWoPPgKP6UVVMyes2jv0+95bEQNl/STV3aoue1s7\n0kTtsvgXfTSYLHUvUfaynbDlH0OhBts1SEdHWKXqm7tvzcvTRf6hDefB5DEZ\nq9Bd/wKnabtbPu4T4pPu8OYji44XxGe+YfkaY9/MK2b4dwef+N7QKB6YTi8q\nU0jo/9n4Jf1stUi2I3Tlv8cf+d8nnCEzrMJOChhSB/rNn2BW2xOOOYWm6k/J\neuFDwDhale9EHvVDtUhhOiYgqlbzk8RcKraAo8FPfkuou8+2InqIEG9LM5gi\n5kbpDVGZvM1u+b1qmaQImuuexHETyVqPsq4D9j22kia7lFmxij4B3J7SUweN\nhZJA2FIPboyXf7y1NmYb++VwoLlAQzzP4SmKP0SszER1eR1vvVYysbuOQe59\nMv78ZBoXZSLREWrDT4ZYFIO2zn3UkW2y+Ocuxm0Xrb0rXh+ke0+WoLi5nDXj\npndCyL+HBfXQwNBizszPHZIKYC8Z8tg7un2tBfD+v0qFJKiNn5cJDUg8DhoJ\nYwEcuxHn74uped6fIounukdegMsYx1CABJtVOHaOWMz9FkzvuL9oNS3gHB6W\nl/zYZvi7IomMb4B6ugBv+owVHfH8OVgafOok8qfuH2oLVif5qOYIKJnRR96T\nkwr/\r\n=tBQy\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB18hvZpMuv8pezABC0ULfZP1zz8L00+AiWJIvH3bwCbAiEAmZgdn/+ZqQAe+aJbmDfSkzhkHlbxfcvjvSBAKrDkxmg="}]},"maintainers":[{"name":"anonymous","email":"minimac@minimamente.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/magic.css_1.3.0_1526474460995_0.3155841203762808"},"_hasShrinkwrap":false},"1.3.1":{"name":"magic.css","version":"1.3.1","description":"Magic CSS3 animations","main":"gulpfile.js","devDependencies":{"gulp-clean-css":"^3.9.4","gulp-concat":"^2.6.1","gulp-notify":"^2.2.0"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/miniMAC/magic.git"},"keywords":["css","css3","animation","animations","magic"],"author":{"name":"Christian Pucci","email":"minimac@minimamente.com","url":"https://minimamente.com/"},"license":"MIT","bugs":{"url":"https://github.com/miniMAC/magic/issues"},"homepage":"https://github.com/miniMAC/magic#readme","dependencies":{"gulp":"^3.9.1"},"gitHead":"58bad694844294adcc68c3df2eb546a4ab2eb40a","_id":"magic.css@1.3.1","_npmVersion":"6.0.1","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"minimac@minimamente.com"},"dist":{"integrity":"sha512-X/3q89MyICH2ODDyFfDfHFIJREFoE1JawkcmSVE1+9msVcpZ5mNeaxwudnLPV0K1XOGKP5zN7SyhFQ388IWrag==","shasum":"1fe754a0a5bc9066fc4f2cbdab385593455df229","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/magic.css/-/magic.css-1.3.1.tgz","fileCount":71,"unpackedSize":213367,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/CgICRA9TVsSAnZWagAAfRsP/1dOZV/SyMB9UEDJ4HNm\nHz9FK5Zf9uKWOSTHI2EnKPJ93Th0POt/lMvXO+vsZms3yImqnCaJ5JfcwTkO\nSnLmvqwSQqsrCr2iaXHvjSK/de/CBxct/kaiI3QXsV3TP3Cz5j9Ygzkk7dsu\nFYPgDgN0vmymzpOS2UJkFaIA3AGIxQ/o/YiMLFBnP4OO8RvWbvKf4SdYWIE/\nMVR4xmcQtzNGIDw45P4wsaXjLN7KkwR7K5EUubepJFVdY/8hS6izuL+AT7o9\nAaPml7NNm4DeFAXfDPaspXuWXxPbo/P3Z+SgtL3oNolUhvg94Fcbkgzvulh1\nQ4SQ1zUqz82RqZ7BiTvFi6EGfm6YGZlbBiDw2cMFXXTE9J9dZkdlUMJbjISn\nitCGDxIoOA4sJ9XF4AY4VryrvT0s14U20Nbz0Z6Eada6Eu97kPSr0QrMBPTv\nmIwsvSlUK3D1oeLwjPKDBIIS0ReU17hxqOIfc0pTyPLHC8KKx+ycXMlw29bp\nIHTxTaFoi7SF7Z715RuDLIXLtcHBSQ6DKR4QuhLP7GFahpgHPaxT7NxM8Kw1\nDvmseG5HF6JRAo1FlrT9A9hZpBcZDIMPrBcC7xflWpITPhmNiXJmSmBd7qdC\neKJLabxG6vaCLzUIEjpPGA5SBUEkR+KuTuYeVcghYSN65l3RBUnnFM1RWhHu\nWqPw\r\n=IHXW\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDu3sby05XgPQ6SHlcV7h1/nOQg6OYDiiywqgBgv80klAIgJ/mmymUfWlT+D1XjfizR0H45GHuUNOoc2aoVo+fS1vI="}]},"maintainers":[{"name":"anonymous","email":"minimac@minimamente.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/magic.css_1.3.1_1526474759565_0.39269716322356607"},"_hasShrinkwrap":false},"1.3.2":{"name":"magic.css","version":"1.3.2","description":"Magic CSS3 animations","main":"gulpfile.js","devDependencies":{"gulp-clean-css":"^3.9.4","gulp-concat":"^2.6.1","gulp-notify":"^2.2.0"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/miniMAC/magic.git"},"keywords":["css","css3","animation","animations","magic"],"author":{"name":"Christian Pucci","email":"minimac@minimamente.com","url":"https://minimamente.com/"},"license":"MIT","bugs":{"url":"https://github.com/miniMAC/magic/issues"},"homepage":"https://github.com/miniMAC/magic#readme","dependencies":{"gulp":"^3.9.1"},"gitHead":"f3dac6a863e3d7e8a02fd6ab8db418bbb178ab57","_id":"magic.css@1.3.2","_npmVersion":"6.0.1","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"minimac@minimamente.com"},"dist":{"integrity":"sha512-QeMtaNyMGEvpFDYa8RbWPFBKoOal/uMUkeN0m5pj+alaBE0j7NiO1NeL6gqUoLvkh6QZkuQ+74j2pVSyJTQCZg==","shasum":"79d040a9f7ad43f27be025a426c225f5803cd516","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/magic.css/-/magic.css-1.3.2.tgz","fileCount":71,"unpackedSize":213496,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/Co8CRA9TVsSAnZWagAAd8AP/iK6dZ8KJNIrb6HKhBEL\nPiYn8G5HqpVcDOhHjMP9ebLcG4yHQkuYLWb7QyBBQjqdJhalk+ZRQ/P5ryrI\nLzGemAJtuPwaO0OLQdc4K4hJXMrcW3kQTxH4f2t0FgNWQ3jTGgvOpiTBo/bt\ngufQRBSG5IzsZ7wsr2oTAeuE5XnjQPAaI2CqyojZmV9Bhu8EwdDZe6xJhi43\nVibl9VDzmYOh1vY8ow3+QVcDZTdk9B7noNTlaT9WX/HaS10zjL0uJT7iSV2k\n+EfNQfoCBn9sL/mdGo0tEXVdlucO45HtoTDsfJ9aqbFin4JhyL3Y1pO2NgTO\nWyPsC35JhNzH+9v0RhSzxCjsi0QzuUo7neeSqPTQbHTrjRLWSr7ldSbBM7jr\nBifr5YtnuIiaF5UWCKKSgHJXnzNK2lUfp3IzqyZzyYjnHnu9Nq3xtO1z05BQ\nQXjrSNyE9wVcdv7C3PT5BvwThV6nOT/fvxuqLWYvMV437ZPxKY61CdhHCQRp\nPcYgHGgm0fzoE1L1VReoh9LhuktkynqGkTI9Ua3G27bhpRM7g2s2s5B5kmyR\nrNJyHBs7/YU7IwTHyFavj8qsl2+wzicXBTNoB70Ks/qVDwXEHzgFUHqZgmMv\nXlKY5ASAaFC0Px0BI4LEYGEiBrAj1gpxr97kc2KB5009ODerwnnmR9UT+tl2\ntcCF\r\n=QdP2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC5bTOtwTP3kfEo5p+2DzxtXkEap6mrPcQdmFRyJbz3wgIgAdRTSHI4ossysLUPgHbkAPNzZfQTacsWUXzY2Igten4="}]},"maintainers":[{"name":"anonymous","email":"minimac@minimamente.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/magic.css_1.3.2_1526475322894_0.5619838197278633"},"_hasShrinkwrap":false},"1.4.0":{"name":"magic.css","version":"1.4.0","description":"Magic CSS3 animations","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/miniMAC/magic.git"},"author":{"name":"Christian Pucci","email":"minimac@minimamente.com","url":"https://www.minimamente.com/"},"license":"MIT","bugs":{"url":"https://github.com/miniMAC/magic/issues"},"homepage":"https://github.com/miniMAC/magic#readme","devDependencies":{"autoprefixer":"^9.5.1","cssnano":"^4.1.10","gulp":"^4.0.0","gulp-postcss":"^8.0.0","gulp-rename":"^1.4.0","gulp-sass":"^4.0.2","gulp-sourcemaps":"^2.6.5"},"keywords":["css","css3","animation","animations","magic"],"gitHead":"b1f8bc1967b7e1a5e3eb76b0e572bb7f690de85c","_id":"magic.css@1.4.0","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"anonymous","email":"minimac@minimamente.com"},"dist":{"integrity":"sha512-3Ac3MEkuVopaeiHdjyRcov0oWs9f8wEiExgyjtQFTJp9cwUjHX0Sj08NUbOFlSGvm84aMwc2/wtOZjCWp/HAsA==","shasum":"e7445fffaeff7b4deb35e20346466708ca4c4d0e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/magic.css/-/magic.css-1.4.0.tgz","fileCount":73,"unpackedSize":434391,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcuHFICRA9TVsSAnZWagAANFsP/iKPB2ZhajIImIzg3vKs\nm7dVHU/zvenVKdeqvtqOvE86ex22C3WAf/nIlqL0yo6sgIaZih/89ZpmFKIL\n5SOQ7ca1oVJ2e9dWHtnmomisfGoulCTCat92pcjaXwUpdmWJI26fbnNMmRMv\nTSwhTCET8wA7VrGOiHUvY/ZMVVfv3RSoS0cA2fVB4HWXU2hJ7jcHDoeCDflU\npKhCEwBmiHXXSdQ4GY46w/ly6PmM3lxwnjx8rAiZmftwgJJpBqZ4/kTG8BrV\nqTspTAhd8bGNW4VTRu00Seey+Vd7F83h1z2n+au39vE/vuyjpiUb6CzJiwtG\nQYF4vnMr31b5dEN42YgwRGim2hSC9bspt5oFTUeK2Jg/nwYHg8rSZG3D+O/n\n+UN7i4TC4yJ/77Sq1EE2w2GWAngdHT4ozCkqSKlwRyn37u6m+DWBs2jYAKot\nAg9QtHWpSGJIWc0zGLcMG5kEOzssMY8BhSzqsTZ8VEpnFKzYDRhZ99KDLXSg\ni88VwFNIkylsCnr1vVKn0oDLdggMZ8xWjoo2O72UNjNxQAPgWG0JRhPfrFgL\niw7GjPu9sfWljZy9X1CrcexKzC5Y7Mw2wquQj7GIpZmQk6EUBoYl7FRTMyib\nEXlGJLU639zUSxnA1LgGDwLa38/QKDdUuZOwgn784xzwVI63Cg7/+OKmJ7bb\nZMPm\r\n=7SGr\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDtaVhBqtAJDCc6RnlqP6KVrlfAAdxBtUkn61GZ/aDWUQIga4PHeXl41lWZ8yiH1BVFOwp0AlHZGlCLK1Ln2vaGguc="}]},"maintainers":[{"name":"anonymous","email":"minimac@minimamente.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/magic.css_1.4.0_1555591495685_0.5960986734626983"},"_hasShrinkwrap":false},"1.4.1":{"name":"magic.css","version":"1.4.1","description":"Magic CSS3 animations","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/miniMAC/magic.git"},"author":{"name":"Christian Pucci","email":"minimac@minimamente.com","url":"https://www.minimamente.com/"},"license":"MIT","bugs":{"url":"https://github.com/miniMAC/magic/issues"},"homepage":"https://github.com/miniMAC/magic#readme","devDependencies":{"autoprefixer":"^9.5.1","cssnano":"^4.1.10","gulp":"^4.0.1","gulp-postcss":"^8.0.0","gulp-rename":"^1.4.0","gulp-sass":"^4.0.2"},"keywords":["css","css3","animation","animations","magic"],"gitHead":"91f9c754538d04b807228bd9da986659a7f68566","_id":"magic.css@1.4.1","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"anonymous","email":"minimac@minimamente.com"},"dist":{"integrity":"sha512-65bZgDcG/P78/epfnnFFXUj68BUsJMEQziluldHh8g89loadCePynZPUg3Ft7NnWpsz/FiooUPgTJNU59+tofw==","shasum":"2ac865fd752090999b479731b84e60e20e6564e2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/magic.css/-/magic.css-1.4.1.tgz","fileCount":75,"unpackedSize":551506,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvt50CRA9TVsSAnZWagAA3OwQAKMHCDOU0BSbGIJV5DSq\nMSPU2ffglwOP+Fv9mroPWKprTAiCiWj16Ofn/d7UHMQ1aNnuecqYt6q+vy1M\nEJrH1qbr5KXADnY6R0zg38i81siNa2KforuETzfbsemNTc0aHf769IIxlziK\nV7uA4kp/fmv0HLQ7djR8LRPZNsHAJYv4kY1INrI0o+8zoUf9RKVoooWpZnL6\npOsru0FmGqTxr8aLV3WuoDn3Adj87IVJAVbBgRHDtiUQToSI0TTXZcWqUh1m\nECVUnHu4hGLNsdpzNVa4q0pFGDsWbLBbnblNtRa/fak9uW6C8mPMBQ6RPYlR\n34gd7ZYGZVcgQTSgO4YhpwxCxR5Wwy437uQqvX2hFPaoXIZryUy4yFFHQQsW\n5R4yuVW66iz37bqOWqxnVlDNtBwq0GsxRdIqKYfg88/oYx7OzqQBvg4iZtjf\nXjI38oans8lE4/BiS/k6frCMwpELqEfF6YtS8FuS3v+i87vZLvWeC2dJWtk3\nYWHZj9SHbD6I67u0Vb1hhKEdC+Tj4ekk8ht3hdyQPaoiOfyeSJafz3xmYOou\nw2Cgm3KFhAfdYUX0tPnzk08cLZ9saob+PWKBI4+9140sJW2FiXLyAFXADRac\necgJ9t+v26UPjdwpNNcXFJZT943kje8xv+psEwX7vy0ZKbzfdjbtQYl4k1uN\nZC+4\r\n=n8jX\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFG6E90THXl4/pgrOVGc05cEHRo34My0xUIvUED5+6HqAiEAhQ6KKeIvBjuVuIFJlwfCEY+jarcJlR262LEGR26jv98="}]},"maintainers":[{"name":"anonymous","email":"minimac@minimamente.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/magic.css_1.4.1_1556012659983_0.9215999503469667"},"_hasShrinkwrap":false},"1.4.5":{"name":"magic.css","version":"1.4.5","description":"Magic CSS3 animations","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/miniMAC/magic.git"},"author":{"name":"Christian Pucci","email":"minimac@minimamente.com","url":"https://www.minimamente.com/"},"license":"MIT","bugs":{"url":"https://github.com/miniMAC/magic/issues"},"homepage":"https://github.com/miniMAC/magic#readme","devDependencies":{"autoprefixer":"^9.7.0","cssnano":"^4.1.10","gulp":"^4.0.2","gulp-postcss":"^8.0.0","gulp-rename":"^1.4.0","gulp-sass":"^4.0.2"},"keywords":["css","css3","animation","animations","magic"],"dependencies":{"np":"^5.1.2"},"gitHead":"60e8e63859219b8c687eceb8d8b9a65e7e9c5fb9","_id":"magic.css@1.4.5","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"integrity":"sha512-z5isaK0eEbi6JgLNHKYX6djTKSomye96wLyAvVzyaK0rCPQQLlK9kFJDLPXXll3HAuDqC9LOrvykvr+d8ncxhA==","shasum":"0926f3e9b34f5b3683c06a8af54c4f0723be3c55","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/magic.css/-/magic.css-1.4.5.tgz","fileCount":75,"unpackedSize":554204,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduCVYCRA9TVsSAnZWagAABAEP/3fkTHz12QWgjjFkSDcp\nenxrBk78N4kD399ZuXS5JmSsjLB+tXYsJjfESINu5Nub65HTL1bUwHYMgnCF\noobw0YvCcEUVLWb7rh2sVeIoAWUhJFJ+Q9t0yvOCXFpXGpH9Fm54q3H3kpO+\n1dkCJyrKhFtR+3BcuVG/oH5sEby+a/8lJklRN2s1bU8No1KHGO2TqZoRnPLG\nGkxEobJRYp1tAHGcVQAK4dZB0i49hwd3vFlcSD3kmlhDrMZX6HTYD/p9k1JS\nd4R+3yJFzdVIN/AWtAC0PM6hxtMRe3XVFrscHFRXcx2gXKpcBNJ4pMYSoT2I\nW8Og1p+ZdSDCjwtdHNntaFsiZ+klhIyid3nex2BNVzof+ml5lzqUqA/56slX\nD/bgQg2kgaC98zdca8+Scwo8peXzr/M40s0ZOF/7sylgA1MF8s7oV0MzWrkx\ngGzHwAfQqZM1bxfh+9ybmMT4rR+8FhLWxKAt8980i8QI+6z+Eaz8R3oti5Ob\nHkZ5tXUSkspY3OfOmSxCJ6MhW90SAewskZRQOPhsiUce1Gd63uVarPh4td6R\nb3VSVJmhwldbNfCx8iC/Hk6QIebr+GalPcCZWXciJKxj4sBHrzr5JLCT0FXb\nr0qbDS/SNwbgYV9jhzUBeKLrs8E6VG//gAzVZhXoMiug1iSgYP9hj1+XtGGe\n5Fhm\r\n=b3wD\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF9U5UeW+Kk3XySdSwvcM/Zml/im/MjUvVchuX32hEz3AiBU5FXWZ72o3gwmj99Woho/qWa0kdHhXOcrHnbGINIaDA=="}]},"maintainers":[{"name":"anonymous","email":"minimac@minimamente.com"}],"_npmUser":{"name":"anonymous","email":"minimac@minimamente.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/magic.css_1.4.5_1572349272196_0.6212853521807182"},"_hasShrinkwrap":false},"1.4.6":{"name":"magic.css","version":"1.4.6","description":"Magic CSS3 animations","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/miniMAC/magic.git"},"author":{"name":"Christian Pucci","email":"minimac@minimamente.com","url":"https://www.minimamente.com/"},"license":"MIT","bugs":{"url":"https://github.com/miniMAC/magic/issues"},"homepage":"https://github.com/miniMAC/magic#readme","devDependencies":{"autoprefixer":"^9.8.5","cssnano":"^4.1.10","gulp":"^4.0.2","gulp-postcss":"^8.0.0","gulp-rename":"^1.4.0","gulp-sass":"^4.1.0"},"keywords":["css","css3","animation","animations","magic"],"dependencies":{"np":"^6.3.2"},"gitHead":"07413cde229d0e8ef9b60341d6b971616b3c7a05","_id":"magic.css@1.4.6","_nodeVersion":"12.18.1","_npmVersion":"6.14.5","dist":{"integrity":"sha512-ybVPKQmq5FG17OMdgsmLZhZ7SViDuLAmFhAcFW6VfKrPo7Edqd49SIBCaBgtWhR2cdAEoX43JE4YwnMEuN/0Ow==","shasum":"e1306a55ed8baa8df869686d45ea81b7c727105f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/magic.css/-/magic.css-1.4.6.tgz","fileCount":76,"unpackedSize":492462,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDGLQCRA9TVsSAnZWagAA+zMP/jgDrvsqZmHOfBTPq0/D\nFkElK7fOS/WF6+Mfi87l69FGS5QWs0+ZMINXfN142vWxXhfurQT85t72PhxS\nKDS+6uCAd4pu9BpP72yRPdqyWHqPhK3nky7ngJ0/1BPGiAlM9R+KDLSuzAkH\nfn6SMKQbmKfJ0QcMAg2RkRbaBdnQ1lz4k6sxo1zbUBGjLOu+v28ZUdsXOicc\n7TohUJbQm7RO8ksBDgRvVmVZQoqpmiiW7dWM4MvljDynaRRmfLe9TC5nQV3N\nLA9Qvz5ukiTPvfYmMEoV3CmmCuz+HZ7cM0mGXCE0na3jfAW6jFIYwPAZgTLi\ngucbBaJ+5fGtVH7kberd9U1ObjwPfd257ybUDqN1rtBm/Ke08cz1VtW2iD3o\ncw8bcTjbBK02o8/xeuf4jWzK3cbxDDI45WTTMh1KqQJnJgVwOSmYxACnmHel\npdsKVT4AU5GpJbWmNcofnKdNbY5Ze1/BcF4kq15b2ZMpli09+Kjb/VYrOfNA\n5P9dKwAOGndXcqlcUzSedHKZuTXVkeHEWrqSSS0hU65SxzJwHc+10pvxCjyA\nVFztQFP4NNMLEsutby5haWXHhq/nVAZSgSBB1avOmoJ7RQLU6YF/22GhDdAi\nJPdzX7yI5y+qAgFBm2kZdGGnOryg+gvNdkZeOD5NzW7GBsb670ovSYi3N2ar\nJxEG\r\n=LDCT\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICFBuoyLJdxmGiC89StpNVdLzcpRyDtJMwhZk+GgNu10AiEA/ptiUEpoPIKGlnMK5ADIucJu3QGxGbFIV0MGExlxRUg="}]},"maintainers":[{"name":"anonymous","email":"minimac@minimamente.com"}],"_npmUser":{"name":"anonymous","email":"minimac@minimamente.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/magic.css_1.4.6_1594647247509_0.9734504555130215"},"_hasShrinkwrap":false},"1.4.7":{"name":"magic.css","version":"1.4.7","description":"Magic CSS3 animations","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/miniMAC/magic.git"},"author":{"name":"Christian Pucci","email":"minimac@minimamente.com","url":"https://www.minimamente.com/"},"license":"MIT","bugs":{"url":"https://github.com/miniMAC/magic/issues"},"homepage":"https://github.com/miniMAC/magic#readme","devDependencies":{"autoprefixer":"^10.3.7","cssnano":"^5.0.8","gulp":"^4.0.2","gulp-cssnano":"^1.1.0","gulp-postcss":"^9.0.1","gulp-rename":"^2.0.0","gulp-sass":"^5.0.0","postcss":"^8.3.9","sass":"^1.42.1"},"keywords":["css","css3","animation","animations","magic"],"dependencies":{"np":"^7.5.0"},"gitHead":"82d41c4bd0888de95000c4cbcb3fbc46dd5ff2e2","_id":"magic.css@1.4.7","_nodeVersion":"14.18.0","_npmVersion":"8.0.0","dist":{"integrity":"sha512-q18V7WKKq230YxJtiimZIST4xBuRYijRZxp58GQpKYGEnrL3nRwOc0tqNWrKc7E2zOfd5Lb/Gc3psc/JPjkulg==","shasum":"e9f31dcc45be259e5913378edd27592a139debb4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/magic.css/-/magic.css-1.4.7.tgz","fileCount":76,"unpackedSize":492016,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2yjsCRA9TVsSAnZWagAA58wQAJFIRnjKf/0hbpXhu0G8\n7fkLkxOdHPX7aah7NBsqpd+0ucPyIM6Q4X7cwt36fS2zEapwmwTl69Arf/4c\n77yML3Oo52MlIWeOkOhQkh4MhM7XyRD7AaqhotSZ+j9HORX21Eh0qzfsDzbz\nJPXzszj3rj0eSpDOVTC4UEboN2ZWzdfQOrSPbyRCGyESXz7AtrBp77eUTPTM\n8YUWFktdrodIyCeZXS1Z3y9ujDfTMVZp6jn3bd6Vz+jUZbiSe8RMdlFC40y4\nidygqiPR5edZIHKzRnjV/BoE0gldO1D82CderSiuyw6UDedcEDTV5JphBaXt\nWykSdoEaMPlx6tcCSjZJfb8/3y+nUSrKO8Nlb8WummRlkTtY+8WWIqDCZb6U\nIz299fLZ4uWHJbIcL+R5x2xCd401OXHBBI0tm7TQOIrbfe5jloELG/CDdev3\nfuTeocZer/mraah3z8Hp8pYu/39za4ZZJruGzZGlpOdBkn2kaNMjNHbDyD8m\nr68XFVSh96o4afkQyPtHQVdHFZ7hAwvdHslYwwHpDCXg9RZsllNUx7ljMl1b\nHHN5hnG0SGXMSNwZJzZsonNmUvAdN2VzsvgB6W+SkyGfzjEuCSQ4rW6tQnot\nJyaY7tojfQRY2jEcdUzE3E4lwNROgyB5ljm6ZukEpAxWs8NfeF/fsybF+5uY\n5Cv3\r\n=nROY\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDxNACptFfyWQCfLJs4pTsnEboYA13iCVCySL9w6o7SeAIhAM/AFnmv/ixoxpEH4mmEgW/vsDKbR1GuYkNmdV3YosOs"}]},"_npmUser":{"name":"anonymous","email":"minimac@minimamente.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"minimac@minimamente.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/magic.css_1.4.7_1633941395486_0.5991929013162602"},"_hasShrinkwrap":false},"1.4.8":{"name":"magic.css","version":"1.4.8","description":"Magic CSS3 animations","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/miniMAC/magic.git"},"author":{"name":"Christian Pucci","email":"minimac@minimamente.com","url":"https://www.minimamente.com/"},"license":"MIT","bugs":{"url":"https://github.com/miniMAC/magic/issues"},"homepage":"https://github.com/miniMAC/magic#readme","devDependencies":{"autoprefixer":"^10.3.7","cssnano":"^5.0.8","gulp":"^4.0.2","gulp-cssnano":"^1.1.0","gulp-postcss":"^9.0.1","gulp-rename":"^2.0.0","gulp-sass":"^5.1.0","np":"^7.6.2","postcss":"^8.3.9","sass":"^1.49.8"},"keywords":["css","css3","animation","animations","magic"],"gitHead":"82d41c4bd0888de95000c4cbcb3fbc46dd5ff2e2","_id":"magic.css@1.4.8","_nodeVersion":"16.15.0","_npmVersion":"8.5.5","dist":{"integrity":"sha512-qL9mQf80fc61Z6p90FqWSeIEe3QBPyUa+dFqaKkJ9peNwv/1lsz16VSRUoeATgMvogdSIKQcFyRtoWu0pjHePw==","shasum":"3ef331fa925291a0606e924093a5cf42f31402d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/magic.css/-/magic.css-1.4.8.tgz","fileCount":76,"unpackedSize":491992,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDCXurROUzzF9LsDkGMv4rBlwL50OeOcTtZ90LAjRMWJQIgeG9LizMWNEKbuDKn0OHbWo7iwtb4vrOwIqgDWq/SnF4="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi4lZ5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoEghAAo5NTLQx6kIc+iVbtA4icGWfMMsAJS/lZGhxtktgsnSiojsbU\r\njjFSjsQRERVVMKUbf384qKFbMV5kIB3ubYYtsa9Y8aUp0j0hjQ4hHmQYuqlk\r\n9RWB3HikbTs21a8/NVfAwFMsDXJJVqdUeB0OMngZVStIIZ4YlsDOPZtSzURV\r\nAg8l6lyxPLVMB+AU7oQoBIRFyMrZUW6BBgBtW1gJqBDQ78gtC40hSCXJMGkI\r\n1aCr4lt/BeTB0gQRHeWGszcAPbTR5XcBi1dQzS7+EaS2LYF91sL5OmyERGNQ\r\n3u4hcmldRhn6kjJ/SUBJILyhnvbWmIWqQJmYeNYnWNH+Srulw4cWezruo5D4\r\nJtB8efTnAnPhtyZjlNXJ16TAF5GbfhEievsD5LNuSOixstXqid9D0yE8172l\r\nP+9YYBn0BQYEuRxT9hF6kx3VMToJajKIktQ/SMnQQTvcx5s3f7CKArcqyV9D\r\n6JJRS5UviC0Myv2yl8Z7o0C7pUFOrVk+rEwXRjX+QMC3TzS480sYFhP3Jfx/\r\nedXX7TKVRwfKc/b0neqwvRAhNq3nBP1bNdQ76EQZGL2fGEwRMomqUl0JOEJu\r\nIseq0RQ5qIIFV88xZTIWcwVwKuN5BmiJfxmRfA8CyZypnjwtIb76ySXsO5A1\r\n+VaWD8hoD0UTJEUZLgDoB5FQ/ePmznBaPsE=\r\n=kAQU\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"minimac@minimamente.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"minimac@minimamente.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/magic.css_1.4.8_1659000441687_0.7306727925923806"},"_hasShrinkwrap":false}},"name":"magic.css","time":{"modified":"2022-07-28T09:27:21.961Z","created":"2015-01-17T09:45:57.774Z","1.1.0":"2015-01-17T09:45:57.774Z","1.3.0":"2018-05-16T12:41:01.060Z","1.3.1":"2018-05-16T12:45:59.731Z","1.3.2":"2018-05-16T12:55:23.069Z","1.4.0":"2019-04-18T12:44:55.847Z","1.4.1":"2019-04-23T09:44:20.131Z","1.4.5":"2019-10-29T11:41:12.378Z","1.4.6":"2020-07-13T13:34:07.644Z","1.4.7":"2021-10-11T08:36:35.669Z","1.4.8":"2022-07-28T09:27:21.886Z"},"readmeFilename":"README.md","homepage":"https://github.com/miniMAC/magic#readme"}