{"_id":"ladda","_rev":"38-93cc9e693329758ab5f8274300363c63","name":"ladda","time":{"modified":"2022-06-19T10:20:38.064Z","created":"2014-03-26T21:14:02.207Z","0.9.2":"2014-03-26T21:14:02.207Z","0.9.4":"2014-12-03T15:18:09.333Z","0.9.5":"2015-01-16T11:21:23.336Z","0.9.6":"2015-01-16T11:25:40.689Z","0.9.7":"2015-01-17T10:32:40.864Z","0.9.8":"2015-04-05T06:55:26.265Z","1.0.0":"2016-03-08T08:33:01.919Z","1.0.1":"2017-07-27T13:41:30.034Z","1.0.2":"2017-08-27T17:51:45.815Z","1.0.3":"2017-08-28T02:26:49.642Z","1.0.4":"2017-08-28T03:35:18.673Z","1.0.5":"2017-09-24T21:56:01.481Z","2.0.0-alpha.1":"2018-01-07T19:56:50.830Z","1.0.6":"2018-02-04T19:20:04.077Z","2.0.0":"2018-05-13T19:08:25.976Z","2.0.1":"2018-05-15T04:47:58.662Z","2.0.2":"2021-09-01T22:31:10.196Z","2.0.3":"2021-12-02T21:29:36.974Z"},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"},{"name":"theodorejb","email":"theodorejb@outlook.com"}],"dist-tags":{"latest":"2.0.3","next":"2.0.0-alpha.1"},"description":"Buttons with built-in loading indicators","readme":"# Ladda\r\n\r\nButtons with built-in loading indicators, effectively bridging the gap between action and feedback.\r\n\r\n[Check out the demo page](https://lab.hakim.se/ladda/).\r\n\r\n## Installation\r\n\r\n`npm install ladda`\r\n\r\n### Module bundling\r\n\r\nLadda 2.x is distributed as a standard ES6 module. Since not all browsers/environments support native\r\nES6 modules, it is recommended to use a bundler such as <a href=\"https://rollupjs.org/\">Rollup</a>,\r\n<a href=\"https://parceljs.org/\">Parcel</a>, or <a href=\"https://webpack.js.org/\">Webpack</a> to create\r\na production-ready code bundle.\r\n\r\n## Usage\r\n\r\n### CSS\r\n\r\nYou will need to include ONE of the two style sheets in the **/dist** directory.\r\nIf you want the button styles used on the demo page, use the **ladda.min.css** file.\r\nIf you want to have the functional buttons without the visual style (colors, padding, etc.),\r\nuse the **ladda-themeless.min.css** file.\r\n\r\n### HTML\r\n\r\nBelow is an example of a button using the `expand-right` animation style.\r\n\r\n```html\r\n<button class=\"ladda-button\" data-style=\"expand-right\">Submit</button>\r\n```\r\n\r\nWhen the JS code runs to bind Ladda to the button, the `ladda-button` class\r\nwill be automatically added if it doesn't already exist. Additionally, a span\r\nwith class `ladda-label` will automatically wrap the button text, resulting\r\nin the following DOM structure:\r\n\r\n```html\r\n<button class=\"ladda-button\" data-style=\"expand-right\">\r\n    <span class=\"ladda-label\">Submit</span>\r\n</button>\r\n```\r\n\r\nButtons accept the following attributes:\r\n- **data-style**: one of the button styles *[required]*\r\n  - expand-left, expand-right, expand-up, expand-down\r\n  - contract, contract-overlay\r\n  - zoom-in, zoom-out\r\n  - slide-left, slide-right, slide-up, slide-down\r\n- **data-color**: green/red/blue/purple/mint\r\n- **data-size**: xs/s/l/xl, defaults to medium\r\n- **data-spinner-size**: pixel dimensions of spinner, defaults to dynamic size based on the button height\r\n- **data-spinner-color**: a hex code or any named CSS color, defaults to `#fff`\r\n- **data-spinner-lines**: the number of lines for the spinner, defaults to `12`\r\n\r\n### JavaScript\r\n\r\nStart by importing the Ladda module:\r\n\r\n```javascript\r\nimport * as Ladda from 'ladda';\r\n```\r\n\r\nThe following approach is recommended for JavaScript control over your buttons:\r\n\r\n```javascript\r\n// Create a new instance of ladda for the specified button\r\nvar l = Ladda.create(document.querySelector('.my-button'));\r\n\r\n// Start loading\r\nl.start();\r\n\r\n// Will display a progress bar for 50% of the button width\r\nl.setProgress(0.5);\r\n\r\n// Stop loading\r\nl.stop();\r\n\r\n// Toggle between loading/not loading states\r\nl.toggle();\r\n\r\n// Check the current state\r\nl.isLoading();\r\n\r\n// Delete the button's ladda instance\r\nl.remove();\r\n```\r\n\r\nTo show the loading animation for a form that is submitted to the server\r\n(always resulting in a page reload) the `bind()` method can be used:\r\n\r\n```javascript\r\n// Automatically trigger the loading animation on click\r\nLadda.bind('button[type=submit]');\r\n\r\n// Same as the above but automatically stops after two seconds\r\nLadda.bind('button[type=submit]', {timeout: 2000});\r\n```\r\n\r\nNote: when using the `bind()` method on buttons that are inside a form,\r\nloading indicators will not be shown until the form is valid.\r\n\r\nAll loading animations on the page can be stopped by using:\r\n\r\n```javascript\r\nLadda.stopAll();\r\n```\r\n\r\n## Browser support\r\n\r\nLadda has been tested in Firefox, Microsoft Edge, Chrome, and Internet Explorer 11.\r\nIt also Should Work™ in Safari and Internet Explorer 10.\r\n\r\n## Changelog\r\n\r\n<https://github.com/hakimel/Ladda/blob/master/CHANGELOG.md>\r\n\r\n## License\r\n\r\nMIT\r\n","versions":{"0.9.4":{"name":"ladda","version":"0.9.4","description":"Buttons with built-in loading indicators","homepage":"http://lab.hakim.se/ladda","scripts":{"test":"grunt jshint","start":""},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com","url":"http://hakim.se"},"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt-contrib-jshint":"~0.2.0","grunt-contrib-uglify":"~0.1.1","grunt-contrib-watch":"~0.2.0","grunt-contrib-sass":"~0.2.2","grunt-contrib-connect":"~0.2.0","grunt":"~0.4.0"},"licenses":[{"type":"MIT","url":"https://github.com/hakimel/Ladda/blob/master/LICENSE"}],"dependencies":{"spin.js":"^2.0.0"},"bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@0.9.4","dist":{"shasum":"d459681b72f36a7f647c74de86dc9d2dd72aa6eb","tarball":"https://registry.npmjs.org/ladda/-/ladda-0.9.4.tgz","integrity":"sha512-4sojzwt6rt3CaDbum5QakQn92lh9bz2VBX9ofhEEdwscY9YShA6mvbFpPJUTSOH8ne2wye49X+8TD10+jFlUiA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEmxNaArOEa9p96DxVpxBem5LP6ffV3Ark2IieNGHfpZAiEArRGrPWB9yxhJiKNqZmOWEJ3I4g33kDOuUNtKBn3rA4A="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"hakimel","email":"hakim.elhattab@gmail.com"},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"}],"directories":{}},"0.9.5":{"name":"ladda","version":"0.9.5","description":"Buttons with built-in loading indicators","homepage":"http://lab.hakim.se/ladda","scripts":{"test":"grunt jshint","start":""},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com","url":"http://hakim.se"},"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt-contrib-jshint":"~0.2.0","grunt-contrib-uglify":"~0.1.1","grunt-contrib-watch":"~0.2.0","grunt-contrib-sass":"~0.8.1","grunt-contrib-connect":"~0.2.0","grunt":"~0.4.0"},"browser":{"spin.js":"./js/spin.js"},"licenses":[{"type":"MIT","url":"https://github.com/hakimel/Ladda/blob/master/LICENSE"}],"dependencies":{"spin.js":"^2.0.0"},"bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@0.9.5","dist":{"shasum":"35262ea01626b8dd499705620b81c762cc4788a5","tarball":"https://registry.npmjs.org/ladda/-/ladda-0.9.5.tgz","integrity":"sha512-KfFIVuIC3VVtVqtniyLdgydZo8nrTiHmwPBL/GfC3rcqX4MMtJrgj8iYl4Oqzy2sboDrlzh95dmD0KifQRCrAQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCpoTDETvxmFVaWtTd7Ys29pzdkt9KdJ4CcabURxCblVAIgPdD6Ub/zYWectBDE25B3b16cH0d27AcbdjK9O5dTsNI="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"hakimel","email":"hakim.elhattab@gmail.com"},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"}],"directories":{}},"0.9.6":{"name":"ladda","version":"0.9.6","description":"Buttons with built-in loading indicators","homepage":"http://lab.hakim.se/ladda","scripts":{"test":"grunt jshint","start":""},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com","url":"http://hakim.se"},"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt-contrib-jshint":"~0.2.0","grunt-contrib-uglify":"~0.1.1","grunt-contrib-watch":"~0.2.0","grunt-contrib-sass":"~0.8.1","grunt-contrib-connect":"~0.2.0","grunt":"~0.4.0"},"browser":{"spin.js":"./js/spin.js"},"licenses":[{"type":"MIT","url":"https://github.com/hakimel/Ladda/blob/master/LICENSE"}],"dependencies":{"spin.js":"^2.0.0"},"bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@0.9.6","dist":{"shasum":"52bd5de782f90d30e2df42fb1e81ad3836804dac","tarball":"https://registry.npmjs.org/ladda/-/ladda-0.9.6.tgz","integrity":"sha512-C3O0UrAamjTM71mqAPE6IMxEXGGN7cWyCcnyeFeuowT1rHOuk9PLYhwZUL9r4u+JjjiWyGo8OF3Jctzhm5PA4w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD1S2+nFCm1kPDnJ6TBwNIYsCCDcKNt0N6gY+zuzIKSKwIgddQKMJBrWRpNTpDcbNL/cnmUwxE+GUklaS4fYHcgHdQ="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"hakimel","email":"hakim.elhattab@gmail.com"},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"}],"directories":{}},"0.9.7":{"name":"ladda","version":"0.9.7","description":"Buttons with built-in loading indicators","homepage":"http://lab.hakim.se/ladda","scripts":{"test":"grunt jshint","start":""},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com","url":"http://hakim.se"},"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt-contrib-jshint":"~0.2.0","grunt-contrib-uglify":"~0.1.1","grunt-contrib-watch":"~0.2.0","grunt-contrib-sass":"~0.8.1","grunt-contrib-connect":"~0.2.0","grunt":"~0.4.0"},"browser":{"spin.js":"./js/spin.js"},"licenses":[{"type":"MIT","url":"https://github.com/hakimel/Ladda/blob/master/LICENSE"}],"dependencies":{"spin.js":"^2.0.0"},"bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@0.9.7","dist":{"shasum":"2ba04da523a34757836cc52e59377bdbc9330671","tarball":"https://registry.npmjs.org/ladda/-/ladda-0.9.7.tgz","integrity":"sha512-7cAjw4DADMssuukptOMZ2BES3hPuotxOUX3Ae2dZxqrlwX93ai0PPYXkuiO10cr2rCZW5yrQxeX8UTN4BBsMUg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBrscF3ZqbE63vbgq+wJjcnehHdvC4by3QkmyV/AoOM6AiEA1QTBhRtVOUTeSP+OCJYMHmWs+L7g5a05j4WOVFJKerA="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"hakimel","email":"hakim.elhattab@gmail.com"},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"}],"directories":{}},"0.9.8":{"name":"ladda","version":"0.9.8","description":"Buttons with built-in loading indicators","homepage":"http://lab.hakim.se/ladda","main":"./dist/ladda.min","scripts":{"test":"grunt jshint","start":""},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com","url":"http://hakim.se"},"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt-contrib-jshint":"~0.2.0","grunt-contrib-uglify":"~0.1.1","grunt-contrib-watch":"~0.2.0","grunt-contrib-sass":"~0.8.1","grunt-contrib-connect":"~0.2.0","grunt":"~0.4.0"},"browser":{"spin.js":"./js/spin.js"},"licenses":[{"type":"MIT","url":"https://github.com/hakimel/Ladda/blob/master/LICENSE"}],"dependencies":{"spin.js":"^2.0.0"},"bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@0.9.8","dist":{"shasum":"aa3cbfe7844e9544d5133cf69feccd7aabb20624","tarball":"https://registry.npmjs.org/ladda/-/ladda-0.9.8.tgz","integrity":"sha512-M7iN9B42LuPgeVnSSECN+AUS8uCshaPNl9sxiUZQ5aLfKm6IwymUY5mG1f6B7nrnTM0346gvyeOu/CXuQNJsAw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC9QCeoM8vUU16/HnAuLq4qz05+enXOGDomP07BLy0kGQIhAKf6pJzz5EkQgSjaSzlvNnjC55NczLMk75463phIxbpR"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"hakimel","email":"hakim.elhattab@gmail.com"},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"}],"directories":{}},"1.0.0":{"name":"ladda","version":"1.0.0","description":"Buttons with built-in loading indicators","homepage":"http://lab.hakim.se/ladda","main":"./dist/ladda.min","scripts":{"test":"grunt jshint","start":""},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com","url":"http://hakim.se"},"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt-contrib-jshint":"~0.11.3","grunt-contrib-uglify":"~0.9.2","grunt-contrib-watch":"~0.6.1","grunt-contrib-sass":"~0.8.1","grunt-contrib-connect":"~0.2.0","grunt":"~0.4.5"},"browser":{"spin.js":"./js/spin.js"},"licenses":[{"type":"MIT","url":"https://github.com/hakimel/Ladda/blob/master/LICENSE"}],"dependencies":{"spin.js":"^2.0.0"},"gitHead":"e5fa9e7681334a47419a126bdcb6aaefd05424da","bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@1.0.0","_shasum":"447687ca4aeda438f616cb7710d8063ac96e9f29","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.0","_npmUser":{"name":"hakimel","email":"hakim.elhattab@gmail.com"},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"}],"dist":{"shasum":"447687ca4aeda438f616cb7710d8063ac96e9f29","tarball":"https://registry.npmjs.org/ladda/-/ladda-1.0.0.tgz","integrity":"sha512-QEQGv0ORPaBybR9cCOJbb3O/TWQ1QX1/As1XrgZPMHOaPxG9Kg+DNUAVeGClQBPzOPEX/6aGetTx6kmv19njLw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCiHdHbaerayRKr9GS9NXu8D4Iy5p5ILdMSqP9JZM91LAIgad5+r4uY3lE+WhrN8ohpFY1o/vUhW2/1t3hiVZxiY7Q="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ladda-1.0.0.tgz_1457425978014_0.5676924008876085"},"directories":{}},"1.0.1":{"name":"ladda","version":"1.0.1","description":"Buttons with built-in loading indicators","homepage":"http://lab.hakim.se/ladda","main":"./dist/ladda.min","scripts":{"test":"grunt jshint","prepublish":"grunt","start":"grunt serve"},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com","url":"http://hakim.se"},"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt":"^1.0.1","grunt-contrib-connect":"^1.0.2","grunt-contrib-jshint":"^1.1.0","grunt-contrib-sass":"^1.0.0","grunt-contrib-uglify":"^3.0.1","grunt-contrib-watch":"^1.0.0"},"browser":{"spin.js":"./js/spin.js"},"license":"MIT","dependencies":{"spin.js":"^2.0.0"},"gitHead":"4f92796cc0c6d5a1f86ccbceff5194a48ca20802","bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@1.0.1","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"theodorejb","email":"theodorejb@outlook.com"},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"},{"name":"theodorejb","email":"theodorejb@outlook.com"}],"dist":{"integrity":"sha512-6aKxRQvQJnciEZi28kmfRv5xUCb4r11lwgx7D9V3Ow+JPrBaiRqh0IkUfetwLmoEhqJCV7VkPaBpRTHN5Gay2g==","shasum":"83b7ac1dc88edf5b6a1c8b949eb6442ec7f4ae4d","tarball":"https://registry.npmjs.org/ladda/-/ladda-1.0.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDYxk9WmKCPIWO5lw2VXKBqY5LoOighbUYN+JCFj6mWPQIgFjJh2LZFhxAGdXpALMgJniiziU6hZUnT0YYeWorSMaU="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ladda-1.0.1.tgz_1501162888886_0.6104454258456826"},"directories":{}},"1.0.2":{"name":"ladda","version":"1.0.2","description":"Buttons with built-in loading indicators","homepage":"http://lab.hakim.se/ladda","main":"./dist/ladda.min","scripts":{"test":"grunt jshint","prepublish":"grunt","start":"grunt serve"},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com","url":"http://hakim.se"},"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt":"^1.0.1","grunt-contrib-connect":"^1.0.2","grunt-contrib-jshint":"^1.1.0","grunt-contrib-sass":"^1.0.0","grunt-contrib-uglify":"^3.0.1","grunt-contrib-watch":"^1.0.0"},"browser":{"spin.js":"./js/spin.js"},"license":"MIT","dependencies":{"spin.js":"^2.0.0"},"gitHead":"1a1edb85c8ddf7140ee023e11952c20100a267f5","bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@1.0.2","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"theodorejb","email":"theodorejb@outlook.com"},"dist":{"integrity":"sha512-gh1bDv2ywAbJaMXp5VsTLiTzJWDBx6Vk6f3FMk1r+aZatbh+v2zACW6VE19fMX6U+i42vOS3hkjhSgYuA0xAhw==","shasum":"adec4cbf41c1b624419b9c02fa4712b188971d4b","tarball":"https://registry.npmjs.org/ladda/-/ladda-1.0.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDGNPj1OCOFiOvwwTkMm2wzZ07weDfUvcmrepmzNn4pUgIhAIPQTasb95yponMyGiAO6FKRxXm5lfoAObqT4QUw438G"}]},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"},{"name":"theodorejb","email":"theodorejb@outlook.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ladda-1.0.2.tgz_1503856304659_0.025327320210635662"},"directories":{}},"1.0.3":{"name":"ladda","version":"1.0.3","description":"Buttons with built-in loading indicators","homepage":"http://lab.hakim.se/ladda","main":"./dist/ladda.min","scripts":{"test":"grunt jshint","prepublish":"grunt","start":"grunt serve"},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com","url":"http://hakim.se"},"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt":"^1.0.1","grunt-contrib-connect":"^1.0.2","grunt-contrib-jshint":"^1.1.0","grunt-contrib-sass":"^1.0.0","grunt-contrib-uglify":"^3.0.1","grunt-contrib-watch":"^1.0.0"},"browser":{"spin.js":"./js/spin.js"},"license":"MIT","dependencies":{"spin.js":"^2.0.0"},"gitHead":"cfde2b971cbcec1c7d84ee47133abcfdd3ec9649","bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@1.0.3","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"theodorejb","email":"theodorejb@outlook.com"},"dist":{"integrity":"sha512-BnDeBRyjxVdYjS8FDtHQ31JOgH3yl7Wbv6xw7U0AzflgRl4LlE3zr1d1HrtdQnjiwUaUxKd3SI3zIABkR0DXtA==","shasum":"4abca90e9c5ad4d1d180af78ec1e1f3260ef7d92","tarball":"https://registry.npmjs.org/ladda/-/ladda-1.0.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDtqo3XN5xGmrl1WxFowf64gjZ+IvSaLXTNliaXeXwxqAiEAg6Cu+9KNVE27QTIpF1Apnd+zEVAoFn4kuF+F4ThUuEY="}]},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"},{"name":"theodorejb","email":"theodorejb@outlook.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ladda-1.0.3.tgz_1503887208527_0.8150850655511022"},"directories":{}},"1.0.4":{"name":"ladda","version":"1.0.4","description":"Buttons with built-in loading indicators","homepage":"http://lab.hakim.se/ladda","main":"./dist/ladda.min","scripts":{"test":"grunt jshint","prepublish":"grunt","start":"grunt serve"},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com","url":"http://hakim.se"},"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt":"^1.0.1","grunt-contrib-connect":"^1.0.2","grunt-contrib-jshint":"^1.1.0","grunt-contrib-sass":"^1.0.0","grunt-contrib-uglify":"^3.0.1","grunt-contrib-watch":"^1.0.0"},"browser":{"spin.js":"./js/spin.js"},"license":"MIT","dependencies":{"spin.js":"^2.0.0"},"gitHead":"b5ee08de1dfb246417e4dbb7066c497e695a5cee","bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@1.0.4","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"theodorejb","email":"theodorejb@outlook.com"},"dist":{"integrity":"sha512-wVeMDpGSI8iclffLRRtSJQBMIs50tjuHtryXuq4ZFPuGBuVRrL+kQdv7HF9GCG+BaqATTwsUoqJnVRdlyHzEow==","shasum":"c543e21c3eb3bfbc9594041f7ad75bee97ddc0e6","tarball":"https://registry.npmjs.org/ladda/-/ladda-1.0.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDlHrSERSqNbWsBiFuj2E2c2d3l4nvLtWuwIRz0yOrcwAiEA99xkkdeeq03fvlUh+UYXCcag6rB2f5mOUozKtKzPy8o="}]},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"},{"name":"theodorejb","email":"theodorejb@outlook.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ladda-1.0.4.tgz_1503891317571_0.6628319167066365"},"directories":{}},"1.0.5":{"name":"ladda","version":"1.0.5","description":"Buttons with built-in loading indicators","homepage":"http://lab.hakim.se/ladda","main":"./dist/ladda.min","scripts":{"test":"grunt jshint","prepublish":"grunt","start":"grunt serve"},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com","url":"http://hakim.se"},"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt":"^1.0.1","grunt-contrib-connect":"^1.0.2","grunt-contrib-jshint":"^1.1.0","grunt-contrib-sass":"^1.0.0","grunt-contrib-uglify":"^3.0.1","grunt-contrib-watch":"^1.0.0"},"browser":{"spin.js":"./js/spin.js"},"license":"MIT","dependencies":{"spin.js":"^2.0.0"},"gitHead":"683cd442edd6c94b9a065beeafbefc4aba57d762","bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@1.0.5","_npmVersion":"5.3.0","_nodeVersion":"8.5.0","_npmUser":{"name":"theodorejb","email":"theodorejb@outlook.com"},"dist":{"integrity":"sha512-8WmdA1A8sF79DLSoBfNeknwW0jm2u8v/v4e0sQeV/mlpkHZNfaqrrevRqAwkqdIi2E92jwrYsg3pdYV+/IMH5A==","shasum":"3fc33066516615c0bc73d3740d12e31a554a57da","tarball":"https://registry.npmjs.org/ladda/-/ladda-1.0.5.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHPz39N/5CHoKkuIi+RTIbLR6BS2qp9RtZumwWcytLuTAiBM2Hhc4gLYvvtM1r6+66+fp/HEyJTALEcj9ymrMBjP1w=="}]},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"},{"name":"theodorejb","email":"theodorejb@outlook.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ladda-1.0.5.tgz_1506290160413_0.35081397695466876"},"directories":{}},"2.0.0-alpha.1":{"name":"ladda","version":"2.0.0-alpha.1","description":"Buttons with built-in loading indicators","homepage":"http://lab.hakim.se/ladda","main":"./js/ladda.js","types":"./js/ladda.d.ts","scripts":{"test":"grunt jshint","prepare":"grunt && rollup -c","start":"grunt serve"},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com","url":"http://hakim.se"},"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt":"^1.0.1","grunt-contrib-connect":"^1.0.2","grunt-contrib-jshint":"^1.1.0","grunt-contrib-sass":"^1.0.0","grunt-contrib-watch":"^1.0.0","rollup":"^0.53.3","rollup-plugin-node-resolve":"^3.0.0"},"license":"MIT","dependencies":{"spin.js":"^3.1.0"},"gitHead":"b4c4ef2e5015e6201da0aba616ce06eddcb293f8","bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@2.0.0-alpha.1","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"theodorejb","email":"theodorejb@outlook.com"},"dist":{"integrity":"sha512-JKyhKRXD8KmLHdv0xJcmzgtEA/0Tad2XUqx3amjBjvRcwR5pU5xMqtCuhuKqPj4a3YcCuVylIan612wSrIcTCg==","shasum":"4fc282f09e943559b047956eeecd7e2daa1893ad","tarball":"https://registry.npmjs.org/ladda/-/ladda-2.0.0-alpha.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAb2u+sfxRDEC9ng4SeGa1sD3hRcwvJtBHitoXUCt/wQAiEAhZ8O506rE78HWCXSnJyPFflE9bHhEXK0kAjbQ65/qS4="}]},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"},{"name":"theodorejb","email":"theodorejb@outlook.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ladda-2.0.0-alpha.1.tgz_1515355010761_0.5457219590898603"},"directories":{}},"1.0.6":{"name":"ladda","version":"1.0.6","description":"Buttons with built-in loading indicators","homepage":"http://lab.hakim.se/ladda","main":"./dist/ladda.min","scripts":{"test":"grunt jshint","prepublish":"grunt","start":"grunt serve"},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com","url":"http://hakim.se"},"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt":"^1.0.1","grunt-contrib-connect":"^1.0.2","grunt-contrib-jshint":"^1.1.0","grunt-contrib-sass":"^1.0.0","grunt-contrib-uglify":"^3.0.1","grunt-contrib-watch":"^1.0.0"},"license":"MIT","dependencies":{"spin.js":"^2.0.0"},"gitHead":"411b0eb32b6fa400619bdba86d893eca201c824e","bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@1.0.6","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"theodorejb","email":"theodorejb@outlook.com"},"dist":{"integrity":"sha512-wY2Dj1ulZSQSZcFmpT96DuuuLjdj5qIMcIaH/oSWPyd240I9MI/1JxZ0tQSC81pl1Xa9cJNUUeAGNWcKbKZ70g==","shasum":"c4a3cb7fac326061d8c04bece01587fbc45db321","tarball":"https://registry.npmjs.org/ladda/-/ladda-1.0.6.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCqiyxKCSGsTXQW7YQ3Kd/VQgn7dSZSY6XhabN6Xx8vuAIgJHNE9SATo7PNQvljUmvkSinfevnJ3zIbyVZrhpKch9M="}]},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"},{"name":"theodorejb","email":"theodorejb@outlook.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ladda-1.0.6.tgz_1517772002432_0.6651614047586918"},"directories":{}},"2.0.0":{"name":"ladda","version":"2.0.0","description":"Buttons with built-in loading indicators","homepage":"http://lab.hakim.se/ladda","files":["dist/*.css","js/ladda.d.ts","js/ladda.js"],"main":"./js/ladda.js","types":"./js/ladda.d.ts","scripts":{"test":"grunt jshint","prepare":"grunt && rollup -c","start":"grunt serve"},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com","url":"http://hakim.se"},"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt":"^1.0.2","grunt-contrib-connect":"^1.0.2","grunt-contrib-jshint":"^1.1.0","grunt-contrib-watch":"^1.1.0","grunt-sass":"^2.1.0","rollup":"^0.58.2","rollup-plugin-node-resolve":"^3.3.0"},"license":"MIT","dependencies":{"spin.js":"^4.0.0"},"gitHead":"ab8bce05b35e7ee4f44d195159d6536742b4a035","bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@2.0.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"theodorejb","email":"theodorejb@outlook.com"},"dist":{"integrity":"sha512-HepXKPfFSwFT6TPCCtTzNQ65SJJauUFSY+Ec9qYX8qdrCTjV5BNeKHW1DESMkMASA+GxEtki9NKgnDHfdaLVHw==","shasum":"1308aa2fa2c9bfdede7089e30814d3281c19a168","tarball":"https://registry.npmjs.org/ladda/-/ladda-2.0.0.tgz","fileCount":7,"unpackedSize":29389,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+I0rCRA9TVsSAnZWagAAf5UP/RypuUxkom+whAbfnNFO\nlFsIlVUW85RcLojaWHUGp3qOUvj40y9kDDwB/K0SfBMPIOtj3vzuSfvdw4Vb\nYIlBpi50tpeK619SITO4HU/XBekD5rwW7mMab4Ob6iv80MluS6OhDWQwkPRa\nWgqwGJ8ze/KlWoPELzQJxSZ+3zYOCO1NmC0HYsHDltIP5YIHmN61igcGgc6t\nP8lP5bAOVnsju6+3WqgopBK1jzTQ5XPH9ZZ/U84IRixNO0v6aKxyn4AeA+/m\nylSY84I9Rf9str+CsPcCRCJfo3y1T1vtrxMP5QC+X+eoXDvmI1C+NX5Kcooe\n58SFpXF79SeNOzjcAgCfSHjx5CSATPKl1xV02uUXWrkjM3E8X53tmeT0il5O\nE32CsEgzfmkO0D8D2hiucD08W4gtOxCkn/VIalbPHvchZiib9rABpA1Mg9Uy\nCXombh4Y3E2T3glrTwwF/KCpv/olTiIhTU7Mi3Mw41CNJyddDKGAGB7s21YA\nNm3A6WLv81CHETTAK+qaEF8WAxlLYl3+YIDKhjLLFFRCrQE51CIVJVimjJ3C\nXb+J+zJ/qziO+ZRrYO7JxhJIGhZ0xiBFvmrMmOC8g+htep0Fh9zyvMSHSKc9\nmy6r/Tr5geh8ynwDB5laQ30cn/lHZRa02N8tyhsVRv0cXgifOzFx8Lcmam8k\nJ2oH\r\n=o9Ya\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDh7EvamuR+v1mxa5z9L4y2uI8ExDsP11hDvVKucIDC6AiEAxzsnvhyPULb26SoGEMjxjtL96ehVtrA/j8+PzFU9wNo="}]},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"},{"name":"theodorejb","email":"theodorejb@outlook.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ladda_2.0.0_1526238505870_0.44467754268447846"},"_hasShrinkwrap":false},"2.0.1":{"name":"ladda","version":"2.0.1","description":"Buttons with built-in loading indicators","homepage":"http://lab.hakim.se/ladda","files":["css/*.scss","dist/*.css","js/ladda.d.ts","js/ladda.js"],"main":"./js/ladda.js","types":"./js/ladda.d.ts","scripts":{"test":"grunt jshint","prepare":"grunt && rollup -c","start":"grunt serve"},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com","url":"http://hakim.se"},"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt":"^1.0.2","grunt-contrib-connect":"^1.0.2","grunt-contrib-jshint":"^1.1.0","grunt-contrib-watch":"^1.1.0","grunt-sass":"^2.1.0","rollup":"^0.58.2","rollup-plugin-node-resolve":"^3.3.0"},"license":"MIT","dependencies":{"spin.js":"^4.0.0"},"gitHead":"52ca8d108feed8c6d85dec4f8970c8184d8c7682","bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@2.0.1","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"theodorejb","email":"theodorejb@outlook.com"},"dist":{"integrity":"sha512-ynRaMdW9y9ABRdTUWa60HSQjtTkoEZMiQDzzYsX8yxIEm7mxL/sxpvoLutYox1XluRif3DxLDg+3Dl1wurjnJg==","shasum":"523bb026dfbc804bb37615a08189405406198732","tarball":"https://registry.npmjs.org/ladda/-/ladda-2.0.1.tgz","fileCount":9,"unpackedSize":38707,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+mZ/CRA9TVsSAnZWagAAJp0QAJs7dsPrrNJ8kuo5va1i\nfZ+lDv5bPbIbaYzl2CHq3buDtl2pf9ncg4a9taSryfKfwbSqA4NzzoeUzBsU\nuCEk/Y2sbWGPpzqVLeZCSma/dQTNlHGGzM671pnPIM+RgBT4oKMs9aMAR3t/\n6RQ2aTjAmBACQjwaSf99fGHCu2JALztPKYipBs+WAuxcefvuuOAihY/U0XA2\nRXOY2iyzsdXuybaYQH6Q0a4yQbRJN2TUitB0v9OWV4SrmMu8Mj6pUDcG0cK/\n4GAQqF0sNfv0Q04RJ5w5Q/7UfhMD/SEufgHuLcAuFQ0Ug7isYTxY07R2OozQ\n07kSnI39h+Z80EFgKYeXiNebFv1K5l9R6f3Hr/B7OmLz7MsBAmaQg0GFKyOw\nWIAYR/KZzkePiQUIklh+dGB+AbbkCpDkKr/xK+GiOcUSaakex6X4OXqfLDHd\nHvenFsg70n+ClJ054RtDswPjzVLsMGGsUFq4MAGNbeyIQtuE3gDVVokomL/4\n2L63Sa3xmuCzDczj1b3EG0wBnnFhq6WYYivU7nHdanctIj9HH4v0FO4eFfhb\n62OsdV0h/z5aWvFuqIHDK2QNHtFf3XRfa5w1U/uOX7Ne9SD2uYKyB87GQY5L\nBYo8/YOTLkACaDPJdS+Sl0RjvR+MZkRtun7zw5yiReu/ytSevHDjBvlXBvPA\nhb2L\r\n=kJQ3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQClx2u8oIy7aViS1mvsUFyCXqwI83UVFxw+kVyaQkIFfAIhAJnCmSj4HWP1rPcvQYwne+t438a+YWqZCFSwFc7tfP63"}]},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"},{"name":"theodorejb","email":"theodorejb@outlook.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ladda_2.0.1_1526359678569_0.470126944462649"},"_hasShrinkwrap":false},"2.0.2":{"name":"ladda","version":"2.0.2","description":"Buttons with built-in loading indicators","homepage":"https://lab.hakim.se/ladda/","type":"module","main":"./js/ladda.js","types":"./js/ladda.d.ts","scripts":{"test":"grunt jshint --gruntfile Gruntfile.cjs","prepare":"grunt --gruntfile Gruntfile.cjs && rollup -c","start":"grunt serve --gruntfile Gruntfile.cjs"},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com"},"contributors":[{"name":"Theodore Brown","email":"theodorejb@outlook.com"}],"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt":"^1.4.1","grunt-contrib-connect":"^3.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-jshint":"^3.0.0","grunt-contrib-watch":"^1.1.0","grunt-sass":"^3.0.2","node-sass":"^6.0.1","rollup":"^2.56.3","rollup-plugin-node-resolve":"^5.2.0"},"license":"MIT","dependencies":{"spin.js":"^4.1.1"},"gitHead":"b75722fe976f7e12c507dea961134116d21d748b","bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@2.0.2","_nodeVersion":"14.16.1","_npmVersion":"6.14.12","dist":{"integrity":"sha512-Xtru765Z51AbhJpc8xHQS5rKxeUm3+RuGs1vyDXlNGpAYbLJIcjU7JbsGN0yF6/mcTI5oaQtK4hCwwu2Su3Tpw==","shasum":"623c2e202dd68d5eb23404326ce9540c840514c8","tarball":"https://registry.npmjs.org/ladda/-/ladda-2.0.2.tgz","fileCount":10,"unpackedSize":50202,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhL/8uCRA9TVsSAnZWagAAq6EP/1Q5My4D4gHr1tpArJli\nHU6QOZ1SVQU1Qkf4J1gRVIrt4EmHa4YYeQaAQw63P6VkAqmPMuQwS3wRi/ch\nKZujTgwwGY+UcQBjWU9rLKvfnj08m0pdvc4i48W917jKXvE4FLdWxvTG92vo\nSxk/0R34vs8AeGKCF1tH/iJeXpU84Xmf+0uS7sPkK42RpDvKP6rslmkNbMYa\nIzGnc3fw9eDMmwsxgIV3SqmenkvkZ6NdvevsSdkHACN/dkO+vJx8okDlXRu/\n0hPrnyIyJ26ppS4sjIt8NXnIcToysFPg52EDmfksOL6XQDB4iGjbtn5eqD92\nw0TFLn3tHHa/qHp98hKpaPVithtXVB5gFo7ciDN+fpnSJyR+NtleTPjqYlG2\nBk/f5anyKFiaOzyxor0/+SuBfLLaOeaw6/9KKA/3AXP70R3/dcWrzGWwiW2c\nmdV9alM+7oH7iN794mi7dnsblSTUcVzztRcY3BUTOz3Eozhs0ufVSa4gZJXu\nwhueZyQnA5xVXBuDUaDqroLSFVYPjIKVgi/RrRh3YuI2Qsa0i4zEhfAH3Sje\nXlrRBrtofyuoemJnA87Jb/TkI3lHFAyk8QbPdRiDeCIeAvmq9Os4z7Iz6D8k\nPMtU7NNCELqaQ2b2LiKr2/N6YJpHEgKCW6ZWipntMuKBRdvaALfV/Kridl/c\nvZbP\r\n=jkRc\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFcPYels9Wgodae0KTzEhijigZZ1Be9XeE9YuTbN1SfkAiAkshihY233RK/c1oi6cqRfkKkYTofui2HBGYysr21wdg=="}]},"_npmUser":{"name":"theodorejb","email":"theodorejb@outlook.com"},"directories":{},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"},{"name":"theodorejb","email":"theodorejb@outlook.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ladda_2.0.2_1630535470015_0.8680101099924782"},"_hasShrinkwrap":false},"2.0.3":{"name":"ladda","version":"2.0.3","description":"Buttons with built-in loading indicators","homepage":"https://lab.hakim.se/ladda/","type":"module","main":"./js/ladda.js","types":"./js/ladda.d.ts","scripts":{"test":"grunt jshint --gruntfile Gruntfile.cjs","prepare":"grunt --gruntfile Gruntfile.cjs && rollup -c","start":"grunt serve --gruntfile Gruntfile.cjs"},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com"},"contributors":[{"name":"Theodore Brown","email":"theodorejb@outlook.com"}],"repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"devDependencies":{"grunt":"^1.4.1","grunt-contrib-connect":"^3.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-jshint":"^3.1.1","grunt-contrib-watch":"^1.1.0","grunt-sass":"^3.1.0","rollup":"^2.60.2","rollup-plugin-node-resolve":"^5.2.0","sass":"^1.44.0"},"license":"MIT","dependencies":{"spin.js":"^4.1.1"},"gitHead":"c7a9c44c5e9d6e200bc74771c6570e9bcff46063","bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"_id":"ladda@2.0.3","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-b/m5BP2M2s37GkwEMBJV6mnvLsFUUo1pdn13n6x18bPEFFf+zEl5TmeeqYXmUjgkEEugICe+dTvmciteJ+CGcQ==","shasum":"ec1cefcf6bca813bcebaddeeea6aa654dcfdf696","tarball":"https://registry.npmjs.org/ladda/-/ladda-2.0.3.tgz","fileCount":9,"unpackedSize":40889,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhqTrACRA9TVsSAnZWagAAVtoP/j+5ANjqFkCBMCLfz41V\nbjjRqAVQW8jW7VHMDKD35NPY4oQO83HuZDqqlic9p3dxuU4zwMl+sXdLDEH3\nnWI/I1ctP+3P2nFDKBp74RrtJTZ/Qx8xbCIP1IihgiwAIM7vPB1RS/5nqbQh\nSWbqWWZBxXQOTr2EmmL5j8pf4fIJRAhfrIi/X2cwhmBLRcI+fp9Ds8Jpxb7r\nOeUjQudeuvIztxvPqlNb+nZCEqQIYILaS4znF26ctUMA6tkJBteud91N7fcB\njWYuvX7dg2aWb1p7zhi975vJaDzS4cwC+jiBxmDRI+JaRXg4jNsoJBpiF4Ox\nhQW7UQ4pJZXxOImL/E/9IF16SmrkikK/rnKw1RqVln+E4K1t3pU2LU3DntKS\nPsfoUPd3iY1rRwU2X0Ap8x+6Ae5ne2b/Sv5pqjc+hxLouMaHQyRWzPfspnfD\n33lrZxQUe2J+O0DXvTpd2AyNKbdUNx6CJWAgR3hxF3J1r85qR8e1w1Ud3hnU\nw37JgxC6JGPDiQ+a6eYrn7rvYzSeSw5yYrj0mVplh6JBvRkHcoY0kS1P8TFY\nw/ZDJOeIDsTYfMx/4ODntGhVwTfwQ4lftX52+AbI3BYvhoSBF6n0aLzGlA30\nahOTvuipeFc7B1Rjh8tP7HR0zrLPDkv6DoCex7uAPc8buAGcDeHE/K76oFfy\nL3rO\r\n=7/LF\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDP/0cvyjMC3N3FJgtXMZjg8wkKeANo/oTBbWloNKeYkQIhAJkLeR+6RweQ9maJfJqVDZv1vx4MWoqYhBblkPowOz4+"}]},"_npmUser":{"name":"theodorejb","email":"theodorejb@outlook.com"},"directories":{},"maintainers":[{"name":"hakimel","email":"hakim.elhattab@gmail.com"},{"name":"theodorejb","email":"theodorejb@outlook.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ladda_2.0.3_1638480576804_0.4284014883398488"},"_hasShrinkwrap":false}},"homepage":"https://lab.hakim.se/ladda/","repository":{"type":"git","url":"git://github.com/hakimel/Ladda.git"},"author":{"name":"Hakim El Hattab","email":"hakim.elhattab@gmail.com"},"bugs":{"url":"https://github.com/hakimel/Ladda/issues"},"readmeFilename":"README.md","users":{"ash":true,"bojand":true,"timdp":true,"lmartins":true,"philiiiiiipp":true,"theodorejb":true,"xfloops":true,"marcovossen":true},"license":"MIT","contributors":[{"name":"Theodore Brown","email":"theodorejb@outlook.com"}]}