{"_id":"webpack-spritesmith","_rev":"51-614839c6d16fd40ff6864476684f62c9","name":"webpack-spritesmith","time":{"modified":"2022-06-29T00:09:17.124Z","created":"2015-11-26T16:30:46.561Z","0.0.0":"2015-11-26T16:30:46.561Z","0.0.1":"2015-11-26T16:37:01.766Z","0.0.2":"2015-11-26T16:51:13.082Z","0.0.3":"2015-11-30T13:55:03.038Z","0.0.4":"2016-02-04T08:46:52.590Z","0.0.5":"2016-02-06T22:43:34.674Z","0.0.6":"2016-02-08T10:03:17.624Z","0.1.0":"2016-03-09T08:10:02.856Z","0.1.1":"2016-03-09T20:40:15.379Z","0.1.2":"2016-03-14T21:17:03.071Z","0.2.0":"2016-03-24T20:38:04.835Z","0.2.2":"2016-06-03T21:38:03.278Z","0.2.3":"2016-06-14T20:53:50.601Z","0.2.4":"2016-06-20T22:04:15.297Z","0.2.5":"2016-06-21T21:13:10.881Z","0.2.6":"2016-08-12T05:53:36.055Z","0.3.0":"2016-11-19T10:07:26.739Z","0.3.1":"2016-12-07T20:21:42.249Z","0.3.2":"2017-03-05T21:04:26.203Z","0.3.3":"2017-03-06T21:27:06.587Z","0.3.5":"2017-12-11T22:25:15.936Z","0.3.6":"2017-12-15T07:37:43.840Z","0.4.0":"2018-01-02T17:08:05.606Z","0.4.1":"2018-03-25T14:10:57.622Z","0.5.1":"2018-07-14T17:09:24.525Z","0.5.2":"2018-08-05T20:25:23.267Z","0.5.3":"2018-09-14T17:43:39.644Z","0.5.4":"2018-11-04T16:30:27.874Z","1.0.0":"2019-01-14T19:35:00.374Z","1.0.1":"2019-04-06T18:31:02.137Z","1.0.2":"2019-08-29T10:13:18.957Z","1.1.0":"2019-12-30T21:20:53.235Z"},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"dist-tags":{"latest":"1.1.0"},"description":"Webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins","readme":"[![npm](https://img.shields.io/npm/v/webpack-spritesmith.svg)](https://www.npmjs.com/package/webpack-spritesmith)\r\n\r\nWebpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins, using\r\n[spritesmith](https://github.com/Ensighten/spritesmith) and [spritesheet-templates](https://github.com/twolfson/spritesheet-templates)\r\n\r\nAll ideas are shamelessly taken from [gulp.spritesmith](https://github.com/twolfson/gulp.spritesmith).\r\n\r\n### Example\r\n\r\nLet's say you have following folder structure\r\n\r\n```\r\n/\r\n|-src\r\n| |-ico\r\n| | |-new.png\r\n| | |-open.png\r\n| | |-save.png\r\n| | ...\r\n| |-style.styl\r\n| ...\r\n|-webpack.config.js\r\n\r\n```\r\n\r\nThen you need to instantiate plugin in webpack config like this:\r\n\r\n```javascript\r\n\r\n//webpack.config.js\r\nvar path = require('path');\r\n\r\nvar SpritesmithPlugin = require('webpack-spritesmith');\r\n\r\nmodule.exports = {\r\n    // ...\r\n    module: {\r\n        rules: [\r\n            {test: /\\.styl$/, use: [\r\n                'style-loader',\r\n                'css-loader',\r\n                'stylus-loader'\r\n            ]},\r\n            {test: /\\.png$/, use: [\r\n                'file-loader?name=i/[hash].[ext]'\r\n            ]}\r\n        ]\r\n    },\r\n    resolve: {\r\n        modules: [\"node_modules\", \"spritesmith-generated\"]\r\n    },\r\n    plugins: [\r\n        new SpritesmithPlugin({\r\n            src: {\r\n                cwd: path.resolve(__dirname, 'src/ico'),\r\n                glob: '*.png'\r\n            },\r\n            target: {\r\n                image: path.resolve(__dirname, 'src/spritesmith-generated/sprite.png'),\r\n                css: path.resolve(__dirname, 'src/spritesmith-generated/sprite.styl')\r\n            },\r\n            apiOptions: {\r\n                cssImageRef: \"~sprite.png\"\r\n            }\r\n        })\r\n    ]\r\n    // ...\r\n};\r\n\r\n\r\n```\r\n\r\nAnd then just use it\r\n\r\n\r\n```stylus\r\n\r\n//style.styl\r\n@import '~sprite.styl'\r\n\r\n.close-button\r\n    sprite($close)\r\n.open-button\r\n    sprite($open)\r\n\r\n```\r\n\r\nThere are few things to notice in config\r\n\r\n- file-loader used for generated image\r\n- `resolve` contains location of where generated image is\r\n- cssImageRef is specified as '~sprite.png'\r\n\r\nSo the way generated image is accessed from generated API at the moment has to be specified manually.\r\n\r\n### Config\r\n\r\n- `src` - used to build list of source images\r\n    - `cwd` should be the closest common directory for all source images;\r\n    - `glob` well... it is a glob\r\n    - `options` - optional. These options are passed down through to the packages that handle the globbing of images. (We use [gaze](https://github.com/shama/gaze), which passes them down to [globule](https://github.com/cowboy/node-globule), which also passes them down to [node-glob](https://github.com/isaacs/node-glob#options).)\r\n\r\n    `cwd` and `glob` both will be passed directly to [glob](https://github.com/isaacs/node-glob) (and [gaze](https://github.com/shama/gaze)\r\n    in watch mode), then resulting list of files will be used as list of source images\r\n\r\n- `target` - generated files\r\n    - `image` - target image filename. Can be interpolated with [loader-utils](https://github.com/webpack/loader-utils#interpolatename). Though I would recommend to use file-loader for interpolation.\r\n    - `css` - can be one of the following\r\n        - `\"full/path/to/spritesheet/api\"` - for example `path.resolve(__dirname, 'src/spritesmith-generated/sprite.styl')`\r\n        - `[\"full/path/to/spritesheet/api1\", \"full/path/to/spritesheet/api2\"]`,\r\n        - `[\"full/path/to/spritesheet/api1\", [\"full/path/to/spritesheet/api2\", spritesmithTemplatesOptions]]`\r\n            spritesmithTemplatesOptions - is the second argument [here](https://github.com/twolfson/spritesheet-templates#templaterdata-options)\r\n\r\n            for example\r\n\r\n            ```javascript\r\n                ...\r\n                css: [\r\n                    path.resolve(__dirname, 'src/spritesmith-generated/sprite.styl'),\r\n                    [path.resolve(__dirname, 'src/spritesmith-generated/sprite.json'), {\r\n                        format: 'json_texture'\r\n                    }]\r\n                ]\r\n            ```\r\n- `apiOptions` - optional\r\n    - `generateSpriteName` - function. Takes full path to source image file and expected to return\r\n    name by which it will be referenced in API. Return value will be used as `sprite.name` for\r\n    [spritesheet-templates](https://github.com/twolfson/spritesheet-templates). Default behaviour is to\r\n    use filename (without dirname and extension)\r\n    - `spritesheet_name`, `retina_spritesheet_name` - passed to [spritesheet-templates](https://github.com/twolfson/spritesheet-templates) (`retina_spritesheet_name` only takes effect if `apiOptions.retina` is also specified)\r\n    - `cssImageRef` - path by which generated image will be referenced in API. If target.image is interpolated, cssImageRef should be interpolated the same way too.\r\n    - `handlebarsHelpers` - object. Container for helpers to register to handlebars for our template\r\n        - Each key-value pair is the name of a handlebars helper corresponding to its function\r\n        - For example, `{half: function (num) { return num/2; }` will add a handlebars helper that halves numbers\r\n        - Note that handlebarsHelpers is global. If you have multiple instances of SpritesmithPlugin, helpers defined later will override helpers defined earlier.\r\n- `spritesmithOptions` - optional. Options for [spritesmith](https://github.com/Ensighten/spritesmith)\r\n- `retina` - optional, when specified, uses retina capabilities of [spritesheet-templates](https://github.com/twolfson/spritesheet-templates). Can be either suffix string (like '@2x') or object consisting of three fields:\r\n    - `classifier` - `Function` that allows to say which source is for retina spritesheet and which is not. Will be called with full path to source file, and should return an object of this format -\r\n        ```javascript\r\n\r\n            {\r\n                type: String, // determines which kind of source is this. Can contain one of two values: 'retina' and 'normal'\r\n                normalName: String, //full path to corresponding normal source image\r\n                retinaName: String, //full path to corresponding retina source image\r\n            }\r\n        ```\r\n    - `targetImage` - full path to generated retina image\r\n    - `cssImageRef` - path by which generated image will be referenced in API\r\n\r\n    When used as suffix string it applies to source files, filename for retina spritesheet image and cssImageRef\r\n\r\n    `apiOptions.generateSpriteName` will be applied to `normalName` returned by retina.classifier\r\n- `customTemplates` - optional. Object with keys and values corresponding to format names and template descriptions respectively.\r\n    Template description can be either a `path/to/handlebars/template/file` or template function\r\n\r\n    You can use templates registered here as `format` in \"target.css\"\r\n\r\n    For example you can write something like this\r\n\r\n    ```javascript\r\n\r\n    //webpack.config.js\r\n    var templateFunction = function (data) {\r\n        var shared = '.ico { background-image: url(I) }'\r\n            .replace('I', data.sprites[0].image);\r\n\r\n        var perSprite = data.sprites.map(function (sprite) {\r\n            return '.ico-N { width: Wpx; height: Hpx; background-position: Xpx Ypx; }'\r\n                .replace('N', sprite.name)\r\n                .replace('W', sprite.width)\r\n                .replace('H', sprite.height)\r\n                .replace('X', sprite.offset_x)\r\n                .replace('Y', sprite.offset_y);\r\n        }).join('\\n');\r\n\r\n        return shared + '\\n' + perSprite;\r\n    };\r\n\r\n    module.exports = {\r\n        ...\r\n        plugins: [\r\n            new SpritesmithPlugin({\r\n                target: {\r\n                    ...\r\n                    css: [\r\n                        [path.resolve(__dirname, 'src/spritesmith-generated/sprite-1.css'), {\r\n                            format: 'function_based_template'\r\n                        }],\r\n                        [path.resolve(__dirname, 'src/spritesmith-generated/sprite-2.css'), {\r\n                            format: 'handlebars_based_template'\r\n                        }]\r\n                    ]\r\n                },\r\n                customTemplates: {\r\n                    'function_based_template': templateFunction,\r\n                    'handlebars_based_template': path.resolve(__dirname, '../my_handlebars_template.handlebars')\r\n                },\r\n                ...\r\n            })\r\n        ]\r\n    }\r\n\r\n    ```\r\n\r\n- `logCreatedFiles` optional. When set to `true` will console.log list of created files.\r\n\r\n\r\n\r\n__This scary readme file is a cry for help. If someone can improve it please do. Also the config itself is terrible, it could also use some improvement. I welcome any reasonable suggestions. Thank you.__ \r\n","versions":{"0.0.1":{"name":"webpack-spritesmith","version":"0.0.1","description":"Braindead webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins, using [spritesmith](https://github.com/Ensighten/spritesmith) and [spritesheet-templates](https://github.com/twolfson/spritesheet-templates)","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^1.5.0","gaze":"^0.5.2","glob":"^6.0.1","lodash":"^3.10.1","mkdirp":"^0.5.1","spritesheet-templates":"^10.0.0","spritesmith":"^1.5.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus-loader":"^1.4.2"},"gitHead":"05cbca3b224218e8c90ad61f249e72f527bde232","_id":"webpack-spritesmith@0.0.1","_shasum":"36a9b34aac20329af1a67384b39e1fdbea3021d1","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"shasum":"36a9b34aac20329af1a67384b39e1fdbea3021d1","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.0.1.tgz","integrity":"sha512-ryRnSt2sRR8JMv7/Uf94bqhHih7UsbT3deBRo8Zh7Zg80IMiqK59UBgtGUFqLZBdMQNjmoRT6BkZJTYUletjNA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBgNX88KFXnOAlUmNazqapWvBOSg6G9N005EzsO7wE+QAiAHcWB2Kg3jr2EcE3p1BPN9PH6yLX7lkpjYX1EszAL9+g=="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"directories":{}},"0.0.2":{"name":"webpack-spritesmith","version":"0.0.2","description":"Braindead webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins, using [spritesmith](https://github.com/Ensighten/spritesmith) and [spritesheet-templates](https://github.com/twolfson/spritesheet-templates)","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^1.5.0","gaze":"^0.5.2","glob":"^6.0.1","lodash":"^3.10.1","mkdirp":"^0.5.1","spritesheet-templates":"^10.0.0","spritesmith":"^1.5.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus-loader":"^1.4.2"},"gitHead":"86ff0ba92f42c3f55b5077197d2d57dc95a1a35e","_id":"webpack-spritesmith@0.0.2","_shasum":"7353cb3df09bddf7eaefea3ce8b06e28b539701d","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"shasum":"7353cb3df09bddf7eaefea3ce8b06e28b539701d","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.0.2.tgz","integrity":"sha512-HXlPydE7Nvr4wLEVDXEU5HI0F37CET5+41GZS1eerF7V4Ot7vvq8ciZfr1h2eIzfILTJNP42JYLfJ2IcNv1uxQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF5fFL+9nSrTfMRqofvby3N0cHBrstuBytv41FljBxjUAiEAzQeEWwEp9r7AS7evzpG+D/Rn2kiZON/4rpzaYrBuixQ="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"directories":{}},"0.0.3":{"name":"webpack-spritesmith","version":"0.0.3","description":"Webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins, using [spritesmith](https://github.com/Ensighten/spritesmith) and [spritesheet-templates](https://github.com/twolfson/spritesheet-templates)","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^1.5.0","gaze":"^0.5.2","glob":"^6.0.1","lodash":"^3.10.1","mkdirp":"^0.5.1","spritesheet-templates":"^10.0.0","spritesmith":"^1.5.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus-loader":"^1.4.2"},"gitHead":"1db2348ce5f610b2578c06cb201adf15bf36aa7c","_id":"webpack-spritesmith@0.0.3","_shasum":"25b084dd04ba10e1997053bbb5e6db5bb75fdf27","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"shasum":"25b084dd04ba10e1997053bbb5e6db5bb75fdf27","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.0.3.tgz","integrity":"sha512-eIAQ7HU1W9VPxoYLn29HO2bf5/pL7rBCH4xY1/7A6BKLTcx31pMheGHmwvdS9lKeoxwxwJFVnzUfYKmmaHTQIg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFlXatzQdyh1m1am7kp08jApzAAtMuaLU8zT+oYKG94DAiEAuhruABvzEvsohsFHUuY2eytoCZjTY9sOw2mA9UiSccQ="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"directories":{}},"0.0.5":{"name":"webpack-spritesmith","version":"0.0.5","description":"[![npm](https://img.shields.io/npm/v/webpack-spritesmith.svg)](https://www.npmjs.com/package/webpack-spritesmith)","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^1.5.0","gaze":"^0.5.2","glob":"^6.0.1","lodash":"^3.10.1","mkdirp":"^0.5.1","spritesheet-templates":"^10.0.0","spritesmith":"^3.0.1"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus-loader":"^1.4.2"},"gitHead":"0678cb861f0f24dd849a46a55178aece12d5fbe7","_id":"webpack-spritesmith@0.0.5","_shasum":"2d552ed8cdbc2589e504c395fb65a9babfc9dc8f","_from":".","_npmVersion":"2.13.2","_nodeVersion":"4.1.1","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"shasum":"2d552ed8cdbc2589e504c395fb65a9babfc9dc8f","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.0.5.tgz","integrity":"sha512-A1S/RMyGqUkoL1Q8p6KsskSuUtgrDjcoe6CEKx50QwaOsK24FrUYhrWi6mB0NB0RLxtQ1A3uW+WMXhSCCvmMaA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC2+WGfXKErslDfPMNnWEeu1wHNjV18Y7OlL9tPzdBSnAiEAgXXb9fzXffL2Lg+AZTr7Rw4wNJNw2+k/2OMDcB161Mw="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/webpack-spritesmith-0.0.5.tgz_1454798612061_0.8594307340681553"},"directories":{}},"0.0.6":{"name":"webpack-spritesmith","version":"0.0.6","description":"[![npm](https://img.shields.io/npm/v/webpack-spritesmith.svg)](https://www.npmjs.com/package/webpack-spritesmith)","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^1.5.0","gaze":"^0.5.2","glob":"^6.0.1","lodash":"^3.10.1","mkdirp":"^0.5.1","spritesheet-templates":"^10.0.0","spritesmith":"^3.1.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus-loader":"^1.4.2"},"gitHead":"44200163d8d146b33b39aac428dfd7db78b3959f","_id":"webpack-spritesmith@0.0.6","_shasum":"6a02db9721a55b0321574310ee989c5e9c1306d0","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"shasum":"6a02db9721a55b0321574310ee989c5e9c1306d0","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.0.6.tgz","integrity":"sha512-+fVSns4CfoUXdTsAQZ7gVu4Gx+P7+ezg4+SHUkAmE/lElvhGiKF76BRSbd73gxvzCDm4K4Q2k4t9DwenLvIY2A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCFkPFzczRXp4PuEHd3bN3EnnxD5O3sGgevQuq/bYSWNQIhAK7Xaqz3R2UJu2WyMloWuiZCmQ+b1zZniiL7ObLTnNF8"}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/webpack-spritesmith-0.0.6.tgz_1454925794587_0.765831061406061"},"directories":{}},"0.1.1":{"name":"webpack-spritesmith","version":"0.1.1","description":"[![npm](https://img.shields.io/npm/v/webpack-spritesmith.svg)](https://www.npmjs.com/package/webpack-spritesmith)","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^1.5.0","gaze":"^0.5.2","glob":"^6.0.1","lodash":"^4.5.1","mkdirp":"^0.5.1","spritesheet-templates":"^10.0.0","spritesmith":"^3.1.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus-loader":"^1.4.2"},"gitHead":"0f502cd0701a3025a1ccfd7316b1ca2418ee1cd5","_id":"webpack-spritesmith@0.1.1","_shasum":"3be8b1774232c10ae78ec4583d37c1318b7c1608","_from":".","_npmVersion":"2.13.2","_nodeVersion":"4.1.1","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"shasum":"3be8b1774232c10ae78ec4583d37c1318b7c1608","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.1.1.tgz","integrity":"sha512-61cDn8F98WufyVHqXyJtYinHFwjRpbNd/lckg6DfQAdy7zjwqfV170x7tfz/66I7EKe7AXxTzm7tR7l3xmgk3w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDsYz4LMoxturhdNmWYmBZHJWl4qHPWO8COgKw6ubelwQIhAJ/+7iz+Sn92s/i9p/Etbv8bHxncry+1+ZV+7Z2490OK"}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-spritesmith-0.1.1.tgz_1457556012888_0.9495711801573634"},"directories":{}},"0.1.2":{"name":"webpack-spritesmith","version":"0.1.2","description":"[![npm](https://img.shields.io/npm/v/webpack-spritesmith.svg)](https://www.npmjs.com/package/webpack-spritesmith)","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^1.5.0","gaze":"^0.5.2","glob":"^6.0.1","lodash":"^4.5.1","mkdirp":"^0.5.1","spritesheet-templates":"^10.0.0","spritesmith":"^3.1.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus-loader":"^1.4.2"},"gitHead":"0dc5581212862df2110288c452ffc163749315f2","_id":"webpack-spritesmith@0.1.2","_shasum":"0cabc5ef0fc40ecb897dd3a45ace684317cc260b","_from":".","_npmVersion":"2.13.2","_nodeVersion":"4.1.1","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"shasum":"0cabc5ef0fc40ecb897dd3a45ace684317cc260b","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.1.2.tgz","integrity":"sha512-h2lTll01vfpp30BiIZvYtQ3dpnJzsGLQYtY14FI/777DyivrgYx5CmSIVKsblUKx9wSYZ+PkWsa3FQQsu6L0Gg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDrHjFGJB2YgBjp8qD8HywtxjxbSTblxjuqE3cfQcA9oAiBdz61e5nw0Ozptre46k6+TgridlbqudRXfJS5hTZ/kXw=="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/webpack-spritesmith-0.1.2.tgz_1457990218862_0.4118608708959073"},"directories":{}},"0.2.0":{"name":"webpack-spritesmith","version":"0.2.0","description":"[![npm](https://img.shields.io/npm/v/webpack-spritesmith.svg)](https://www.npmjs.com/package/webpack-spritesmith)","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^1.5.0","gaze":"^0.5.2","glob":"^6.0.1","lodash":"^4.5.1","mkdirp":"^0.5.1","spritesheet-templates":"^10.0.0","spritesmith":"^3.1.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus-loader":"^1.4.2"},"gitHead":"a92262c4928fc17a755d22085c30dfc1ad8a3a46","_id":"webpack-spritesmith@0.2.0","_shasum":"4cc88bc584032058b5c8283e07744862af6e1630","_from":".","_npmVersion":"3.8.1","_nodeVersion":"5.9.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"shasum":"4cc88bc584032058b5c8283e07744862af6e1630","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.2.0.tgz","integrity":"sha512-k6bIw018vbdXcohFI8eKpkfUOTLTx4frgHmcNoAyMTDhlIQU96jsFD1x5Ceyj5WTUc92qD/q2a/D2b1SdjT03A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCEI8THDnXwqaJHqWsrMnlox8MthqZ98QEq+3t1LcbcmQIhAKEtIB5eZ4l7BslnJhsBLJL8y40w2d0n28LlIyYbbkaC"}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/webpack-spritesmith-0.2.0.tgz_1458851882652_0.7040286031551659"},"directories":{}},"0.2.2":{"name":"webpack-spritesmith","version":"0.2.2","description":"[![npm](https://img.shields.io/npm/v/webpack-spritesmith.svg)](https://www.npmjs.com/package/webpack-spritesmith)","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^1.5.0","gaze":"^0.5.2","glob":"^6.0.1","lodash":"^4.5.1","mkdirp":"^0.5.1","spritesheet-templates":"^10.0.0","spritesmith":"^3.1.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus-loader":"^1.4.2"},"gitHead":"168111bb4917508e12d332c315650f6ab1a4f042","_id":"webpack-spritesmith@0.2.2","_shasum":"ffd550f3132877fe5f99e09f1f314c48325ee9a8","_from":".","_npmVersion":"3.8.1","_nodeVersion":"6.1.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"shasum":"ffd550f3132877fe5f99e09f1f314c48325ee9a8","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.2.2.tgz","integrity":"sha512-ZgT5hdP7G94mrS+mPxOawj/an+9G426AQQ3p/ChgOk7ED0UgAbno+X4X5UKzoyKxhEQcTEu4bX9GIO/UxQAX/w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCUVq1BM0Eoq3Qfz4waCkEVWKNxZPgDaaanz9ieusnUvgIgVtLnonFZ9ARMOhPC3K2tkktr5pWW8Mdnhq5vS3Pz9Qk="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-spritesmith-0.2.2.tgz_1464989881066_0.39950545271858573"},"directories":{}},"0.2.3":{"name":"webpack-spritesmith","version":"0.2.3","description":"[![npm](https://img.shields.io/npm/v/webpack-spritesmith.svg)](https://www.npmjs.com/package/webpack-spritesmith)","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^1.5.0","gaze":"^1.0.0","glob":"^7.0.3","lodash":"^4.5.1","mkdirp":"^0.5.1","spritesheet-templates":"^10.0.0","spritesmith":"^3.1.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus-loader":"^1.4.2"},"gitHead":"f0107d4878c4241a9a53f753a337527c46ff9e55","_id":"webpack-spritesmith@0.2.3","_shasum":"9110c46583e452b7ffc8367da4df59d7e3c86609","_from":".","_npmVersion":"3.8.1","_nodeVersion":"6.1.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"shasum":"9110c46583e452b7ffc8367da4df59d7e3c86609","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.2.3.tgz","integrity":"sha512-lYquIhyhio+PNfRIEbf03oh/EXsvYjSKddogLZazPee8dp3xJzqkwt1AlWdTiidsT3b3TvJQTbu2YkiaD3qSiA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDGEGvmasd4MO1fwFr6XJEdDwBw/tTp6IiPtzUXUxoyHgIgBPkMZEg3BEwwfOwcCjvc4wEfsg6lfhFhCHDfSJozXaM="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-spritesmith-0.2.3.tgz_1465937628235_0.8198695708997548"},"directories":{}},"0.2.4":{"name":"webpack-spritesmith","version":"0.2.4","description":"[![npm](https://img.shields.io/npm/v/webpack-spritesmith.svg)](https://www.npmjs.com/package/webpack-spritesmith)","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^1.5.0","gaze":"^1.0.0","glob":"^7.0.3","lodash":"^4.5.1","mkdirp":"^0.5.1","spritesheet-templates":"^10.0.0","spritesmith":"^3.1.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus-loader":"^1.4.2"},"gitHead":"62df40fd0187966d6e7ced79dada581c560967d7","_id":"webpack-spritesmith@0.2.4","_shasum":"0fc90c1a0a76d848d2da3da4aa106a44dff1224f","_from":".","_npmVersion":"3.8.1","_nodeVersion":"6.1.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"shasum":"0fc90c1a0a76d848d2da3da4aa106a44dff1224f","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.2.4.tgz","integrity":"sha512-tKfifxhZJYiCYjqj2rQIkQrOsy5BIi1aPnVfzGPr96ArT0SOSq+rdmhW8gj+BvAA+Q12a9G+Hht6kwbDpmxPFQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEzaIttoh4bSAHIiv956rf+MEj9p7tbmOWcwG4fzsctNAiEA1RW7HLIQd9mmhDVTplpEp7bL3aAFYJ5aWQhX8HZy7+4="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-spritesmith-0.2.4.tgz_1466460252766_0.8254300027620047"},"directories":{}},"0.2.5":{"name":"webpack-spritesmith","version":"0.2.5","description":"[![npm](https://img.shields.io/npm/v/webpack-spritesmith.svg)](https://www.npmjs.com/package/webpack-spritesmith)","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^1.5.0","gaze":"^1.0.0","glob":"^7.0.3","lodash":"^4.5.1","mkdirp":"^0.5.1","spritesheet-templates":"^10.0.0","spritesmith":"^3.1.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus-loader":"^1.4.2"},"gitHead":"9afea73832e3c3a5ca43bced1a187ac686e922f6","_id":"webpack-spritesmith@0.2.5","_shasum":"712688c4d1f5832285f26ff49581cc3673f2607e","_from":".","_npmVersion":"3.8.1","_nodeVersion":"6.1.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"shasum":"712688c4d1f5832285f26ff49581cc3673f2607e","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.2.5.tgz","integrity":"sha512-6rhgFnzhBIiCRBKo4fYwVemJ5xIoMXOuNRgaQX+1WmKWU+O8NBsG2BRsNImydiR0Xrq5poSivYk7IccnfFNOgw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFm8CV+gt7VYpcV3EiImeeYO0jtiIq6dTGJXT3AX+ygmAiAGxNUNHpHhIbOEiMG6nSVVYVp8GSDAhAdhoUcdvUgoIw=="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/webpack-spritesmith-0.2.5.tgz_1466543589255_0.3156235902570188"},"directories":{}},"0.2.6":{"name":"webpack-spritesmith","version":"0.2.6","description":"[![npm](https://img.shields.io/npm/v/webpack-spritesmith.svg)](https://www.npmjs.com/package/webpack-spritesmith)","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^1.5.0","gaze":"^1.0.0","glob":"^7.0.3","lodash":"^4.5.1","mkdirp":"^0.5.1","spritesheet-templates":"^10.0.0","spritesmith":"^3.1.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus-loader":"^1.4.2"},"gitHead":"23691b55e787a5b6d2843cedf1b3209f1b6d2b5c","_id":"webpack-spritesmith@0.2.6","_shasum":"5d8ad35f507616d1f4cf97503b7cb588d25a2cf1","_from":".","_npmVersion":"3.8.1","_nodeVersion":"6.1.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"shasum":"5d8ad35f507616d1f4cf97503b7cb588d25a2cf1","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.2.6.tgz","integrity":"sha512-4iTnSKXOiVmikTV29Z8XIGjCuInGjY7YaWZFU+rbiPS41ze5lkVUNRWF6NcKmS/E0LtxswGFMMiC4qu5iM5cbg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDidVDw/YlqcRHxXxzQEf5vLpGG8G+qLkdanaz+oqmRrQIgVYEAX+CCdlJichvbTzh2FLRiSOvjfVOLKZ6StF5Tfmg="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-spritesmith-0.2.6.tgz_1470981214145_0.9032223192043602"},"directories":{}},"0.3.0":{"name":"webpack-spritesmith","version":"0.3.0","description":"[![npm](https://img.shields.io/npm/v/webpack-spritesmith.svg)](https://www.npmjs.com/package/webpack-spritesmith)","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^1.5.0","gaze":"^1.0.0","glob":"^7.0.3","loader-utils":"^0.2.16","lodash":"^4.5.1","mkdirp":"^0.5.1","spritesheet-templates":"^10.0.0","spritesmith":"^3.1.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus-loader":"^1.4.2"},"gitHead":"a70713fdba7207508e534133a9d59ee8da623067","_id":"webpack-spritesmith@0.3.0","_shasum":"b6e2f6cf54c5ef04d13af954b8e8491cf919ab51","_from":".","_npmVersion":"3.8.1","_nodeVersion":"6.1.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"shasum":"b6e2f6cf54c5ef04d13af954b8e8491cf919ab51","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.3.0.tgz","integrity":"sha512-wC4mDf6pwLZo3SljrAiHlmlFlmitHVwuoNKmzK7qh9RN0KOZBqUPxZsts9bGC9Q7SMgECO4XEG7E/OiKGEwaug==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC1AwbZO2tNlTIi7eRu5lwFfkFSkFlkKfjHVApZDwN24AiBwKmS0m6eqkCNesA6wxmVZPm/uN/phcmGEicvQAt2aZw=="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-spritesmith-0.3.0.tgz_1479550044743_0.7749176709912717"},"directories":{}},"0.3.1":{"name":"webpack-spritesmith","version":"0.3.1","description":"[![npm](https://img.shields.io/npm/v/webpack-spritesmith.svg)](https://www.npmjs.com/package/webpack-spritesmith)","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^1.5.0","gaze":"^1.0.0","glob":"^7.0.3","loader-utils":"^0.2.16","lodash":"^4.5.1","mkdirp":"^0.5.1","spritesheet-templates":"^10.0.0","spritesmith":"^3.1.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus-loader":"^1.4.2"},"gitHead":"c8e56c3c21e52fe3e2ce5bf40c2340ac9c15b1e5","_id":"webpack-spritesmith@0.3.1","_shasum":"eb41e11168256115b70b11f5d28cbf3d07f7c7eb","_from":".","_npmVersion":"4.0.3","_nodeVersion":"6.1.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"shasum":"eb41e11168256115b70b11f5d28cbf3d07f7c7eb","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.3.1.tgz","integrity":"sha512-yNwDlSntWtDvGycT2u8qL6JfW4vlTwq89q82mgxNjPvF/a3jPUdANmMSuA9LgSGsAi/yxTZGq+P526bD9Oz0Gw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDY2PE7RdkNx7Ww+IzlSyEOYDSX5hS2xzeurzJYe+GWIwIgd4GW5sNtgrxlf2AqgqCu1HymbVGbEylnx7do2ObGK7w="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-spritesmith-0.3.1.tgz_1481142100335_0.3728255801834166"},"directories":{}},"0.3.3":{"name":"webpack-spritesmith","version":"0.3.3","description":"Webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^2.1.5","gaze":"^1.1.2","glob":"^7.1.1","loader-utils":"^1.0.2","lodash":"^4.17.4","mkdirp":"^0.5.1","spritesheet-templates":"^10.2.1","spritesmith":"^3.1.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus":"^0.54.5","stylus-loader":"^2.5.0","webpack":"^2.2.1"},"gitHead":"080a469e83f082c022fb66d42179c44231564d80","_id":"webpack-spritesmith@0.3.3","_shasum":"8be6d95b34bb2ebc88e1cdee8b9be83165102eca","_from":".","_npmVersion":"4.0.3","_nodeVersion":"6.9.2","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"shasum":"8be6d95b34bb2ebc88e1cdee8b9be83165102eca","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.3.3.tgz","integrity":"sha512-TM2ja21R4pukqDe/eb1n4ELMmdOEMEz7uc00szXdYNBfu/pTTuhHmbYSoq3QVKAmP8hrpQx0LnQtS4QT6aAH0A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB36PwWJacwC9sLr9Ngvc5uO0Nj/tqN8GiB9lKi+I96PAiEAiAFd4JCbhPafvIBm9g3BBdEHbKr2QICZoQqs38Ru9n0="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/webpack-spritesmith-0.3.3.tgz_1488835625889_0.6948886062018573"},"directories":{}},"0.3.5":{"name":"webpack-spritesmith","version":"0.3.5","description":"Webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^2.1.5","gaze":"^1.1.2","glob":"^7.1.1","loader-utils":"^1.0.2","lodash":"^4.17.4","mkdirp":"^0.5.1","spritesheet-templates":"^10.2.1","spritesmith":"^3.1.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus":"^0.54.5","stylus-loader":"^2.5.0","webpack":"^2.2.1"},"gitHead":"26857acd0fa6f5c426b9c46f3c3ef0e613004304","_id":"webpack-spritesmith@0.3.5","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"integrity":"sha512-h2AIY3M7tLhltg/VM7ywQqouu68yMjAMoPXRVsCQ6mteIZ3uHD85ylUOlLdXD3VaTDtR2ztc0lMKsNYtm9UyUg==","shasum":"05baefba57a4c43e85180815cefe261a19d9a3b8","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.3.5.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF3pOWPkQ79ywIJXK2TWi9tAWmXn65ajWdl7hHVeFE/3AiEAzGNoyyX1MdE/+2bhQTxE3rMF0R5gDDlAginQ0RBXkKY="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-spritesmith-0.3.5.tgz_1513031114907_0.21670252713374794"},"deprecated":"this version has a bug fixed in 0.3.6","directories":{}},"0.3.6":{"name":"webpack-spritesmith","version":"0.3.6","description":"Webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^2.1.5","gaze":"^1.1.2","glob":"^7.1.1","loader-utils":"^1.0.2","lodash":"^4.17.4","mkdirp":"^0.5.1","spritesheet-templates":"^10.2.1","spritesmith":"^3.1.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus":"^0.54.5","stylus-loader":"^2.5.0","webpack":"^2.2.1"},"gitHead":"224d5822e26b4c9859da50fe7ba6b7a6c3017ac9","_id":"webpack-spritesmith@0.3.6","_npmVersion":"5.6.0","_nodeVersion":"8.9.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"integrity":"sha512-DklEer/qFpfACddLPoh2ICY4I44QaKObOnIoJOwffrDLQ20T7XkZVDVLprQnF+xSbBYduvo9tr6TWKT51NTaQQ==","shasum":"062433734b3797ce33faa35c1efbab9dc07d050e","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.3.6.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDsSoD3Rd5g46NuAAP81USa6J/MxQoW1OXeuehbXSSc7AIhAJSjspEZFYi1wOYSrduTuOPlcDB0cf6QjtfztulQxg2E"}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-spritesmith-0.3.6.tgz_1513323463322_0.02141169970855117"},"directories":{}},"0.4.0":{"name":"webpack-spritesmith","version":"0.4.0","description":"Webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins","main":"lib/Plugin.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^2.1.5","gaze":"^1.1.2","glob":"^7.1.1","loader-utils":"^1.0.2","lodash":"^4.17.4","mkdirp":"^0.5.1","spritesheet-templates":"^10.2.1","spritesmith":"^3.1.0"},"devDependencies":{"css-loader":"^0.22.0","file-loader":"^0.8.4","style-loader":"^0.13.0","stylus":"^0.54.5","stylus-loader":"^2.5.0","webpack":"^2.2.1"},"gitHead":"a18d9a549ad3c72beb8ecb8ea1953620c50087aa","_id":"webpack-spritesmith@0.4.0","_npmVersion":"5.6.0","_nodeVersion":"9.2.1","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"integrity":"sha512-3TtzzhfZ4mV1z8yUarO1AS7BRuSR/GKmxhwdUKxp9dRM/6Cz12qrHfFdT90utt7fXZSmB9S4d/5LTYgRbpLM1g==","shasum":"e6e72cff9baffaeb5b8e8284c6df0c112f9fb2c0","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.4.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAfry0OAZFkzFWO+TwPxTa8ePsCEfTmDLYx+S2VtlK5MAiEA/FlwsPIUtoD78/Y2EDKqP0Er22t6hqyie/LEFhHQQKM="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-spritesmith-0.4.0.tgz_1514912884554_0.3356819865293801"},"directories":{}},"0.4.1":{"name":"webpack-spritesmith","version":"0.4.1","description":"Webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins","main":"lib/Plugin.js","scripts":{"dev":"webpack --config dev/config.js","dev-watch":"webpack --config dev/config.js --watch"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"async":"^2.1.5","gaze":"^1.1.2","glob":"^7.1.2","loader-utils":"^1.1.0","lodash":"^4.17.5","mkdirp":"^0.5.1","spritesheet-templates":"^10.2.2","spritesmith":"^3.3.0"},"devDependencies":{"css-loader":"^0.28.11","file-loader":"^1.1.11","style-loader":"^0.20.3","stylus":"^0.54.5","stylus-loader":"^3.0.2","webpack":"^4.2.0","webpack-cli":"^2.0.13"},"gitHead":"8e146881c439d4df142bbcd7b7f8f9e8cc8aba2c","_id":"webpack-spritesmith@0.4.1","_npmVersion":"5.7.1","_nodeVersion":"8.9.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"integrity":"sha512-EmXxGuLbM5VDksfw1R9W4a9hK6dq8jkeC9z2wV8CZv/4bcdP4YIY5Tw1gP4IZcrWV0ABUfFl6RVDsNw+z+0Jhg==","shasum":"1c3e184f31444306ca2c6af6ab34dc6a6f124ead","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.4.1.tgz","fileCount":11,"unpackedSize":29783,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGUp8eV7MEmZ2rpvEPcs5y4dBzcjN/KZ/ZLSUkLl2lySAiEAtGHN1/4hvgZ9okkUrH931OLFogZs5We+8JnWbVuvl+Q="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-spritesmith_0.4.1_1521987057526_0.45215333814615266"},"_hasShrinkwrap":false},"0.5.1":{"name":"webpack-spritesmith","version":"0.5.1","description":"Webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins","main":"lib/Plugin.js","scripts":{"build":"rimraf lib && gulp build","prepack":"npm run build","dev":"npm run build && rimraf dev/src/generated && webpack --config dev/config.js","dev-watch":"npm run build && webpack --config dev/config.js --watch"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"gaze":"^1.1.2","glob":"^7.1.2","loader-utils":"^1.1.0","lodash":"^4.17.5","mkdirp":"^0.5.1","mz":"^2.7.0","spritesheet-templates":"^10.2.2","spritesmith":"^3.3.0"},"devDependencies":{"babel-core":"^6.26.3","babel-preset-env":"^1.7.0","babel-preset-stage-3":"^6.24.1","css-loader":"^0.28.11","file-loader":"^1.1.11","gulp":"^3.9.1","gulp-babel":"^7.0.1","rimraf":"^2.6.2","style-loader":"^0.20.3","stylus":"^0.54.5","stylus-loader":"^3.0.2","webpack":"^4.8.1","webpack-cli":"^2.0.13"},"gitHead":"a609dba306f1f8afd85f53c5db65ea92b9015ef9","_id":"webpack-spritesmith@0.5.1","_npmVersion":"5.7.1","_nodeVersion":"8.9.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"integrity":"sha512-jOQjrcdkIbTw5e+/gnJfvX2gOYfhgHs+qQlyTuDqtYehyyRDW7zeMvra3b1cF83cdxkPmTaDS6nD11CrKSiCxA==","shasum":"cf309329e219a98bf831750ea903d9cbc7346b41","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.5.1.tgz","fileCount":10,"unpackedSize":32133,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbSi5ECRA9TVsSAnZWagAAccEP/1bpLB/tXixZz+927v6d\nUub64R+xppBDCMczAYsl5zuoEanLL7Rc8AXEP5GrObCdWSmBMU1Ksd2O7u6c\nbVpIEZ208ggpfm7DBmRxDgFMxrpGmUuYv/thKosBBh9cM4IXbzqxEwd5ZwBz\nh7ZOOKCmOuLbEKCRhFNkeE25IVW31NwemfrvxU6VIEbTsvEgJ0i42D2LR4ux\n757frxsfwkRbTMJncraHQJ3IzJPHWrilE9ZFzcKPfzSMCAug1WU/h3CYh4kY\noeY3fYQaV+G/y6JFxwcG0D59phXZB5IobfasFYy4u/MRWRdibEjoLSS1mbyZ\nrmHwivUvRTirtL/SGUMIhTDFo3Ht/dFrm4suE/XsxOGgp0VcFV6tNiF9eOhX\nrmyW8TunbWtS1xIbpTXpS50wwmVmyj5Nzkhux10rfB3OsvV0m4cg5XeoAti1\nmqaZVkXLEAMSMC2EE962DXBArRKrF8epX27X46zICW8MR9C+sI+NXXkLZe9r\nJYaIC8fiOxoFoUgrBdHIqSkP4jFu/exHDSm86RTRK1zbwHvnUR/sOOQAMhG5\nwKg1Qo06zvgAKB6IgVGQcZliDOeGEgRHvYBiqfAqWr91MWZ3BtzL2T9IRRLW\ndRSJybmQiAQwyH+XhgbYZk0mMYtyt3nruwFtLtQ2vO+8TZVM2a3JlzTqskcA\nOkgk\r\n=goj0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIES6jOLNBlIXQwxSuvdfdUGgOD/0CjoFHY+oQNHl5aqNAiAP+sK4ACubAWO7/DUNsUJNHobqF2QWLsZJ5vJlfBGYJw=="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-spritesmith_0.5.1_1531588163877_0.050729710621928215"},"_hasShrinkwrap":false},"0.5.2":{"name":"webpack-spritesmith","version":"0.5.2","description":"Webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins","main":"lib/Plugin.js","scripts":{"build":"rimraf lib && gulp build","prepack":"npm run build","dev":"npm run build && rimraf dev/src/generated && webpack --config dev/config.js","dev-watch":"npm run build && webpack --config dev/config.js --watch"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"gaze":"^1.1.2","glob":"^7.1.2","loader-utils":"^1.1.0","lodash":"^4.17.5","mkdirp":"^0.5.1","mz":"^2.7.0","spritesheet-templates":"^10.2.2","spritesmith":"^3.3.0"},"devDependencies":{"babel-core":"^6.26.3","babel-preset-env":"^1.7.0","babel-preset-stage-3":"^6.24.1","css-loader":"^0.28.11","file-loader":"^1.1.11","gulp":"^3.9.1","gulp-babel":"^7.0.1","rimraf":"^2.6.2","style-loader":"^0.20.3","stylus":"^0.54.5","stylus-loader":"^3.0.2","webpack":"^4.8.1","webpack-cli":"^2.0.13"},"gitHead":"303081b33e713f9415b7e88b4b042a4d1a661b7a","_id":"webpack-spritesmith@0.5.2","_npmVersion":"5.7.1","_nodeVersion":"8.9.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"integrity":"sha512-PbYg23ij8zDY3NsaTLVJ0Lbs4HsHol1iiS/bdbwvE2s4sJMLkZFJ9ELiVbC4PpqNeViUl7euzIaFTviwCyQUTA==","shasum":"fc30b2f157dac275cc6858b2a49763eeb0fa094f","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.5.2.tgz","fileCount":10,"unpackedSize":32329,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbZ10zCRA9TVsSAnZWagAAA5oP/RHCskVZ6f+nbLXa7668\necIcKuZ68Q1nlZ+E4gM37kyKhdiLhF9k/v0L0wzN3PddzgiGlk5HiybwV450\n0Kd0K9chjmGZAUU3NgMgkR86sntd/N/DnolNZE1oSR2XtkPO+18FiBr3kAYW\nVL5kw699q8Qph269cHboWAY8p8ETy+j48G54C9Q+/1WIa/9YfucQxIUI3ivI\nY+8xWzgtOeXjbKvp5fEL20fEX43d2MkIxg9CL/uIUY+dc678MJzu+hzLzqf8\nT59iFc5HKswyg5mLbndWEzncMYP4w3RE4UE3t4MougpCUe23URLQo7Vt5mdO\nQw5XyPOb+rf4UoY35xjvQlnKwlfqp/Y3HETGWGqCZ4Ce0IZ5lxym2q1uqXsF\n0DotI70fn8bSh3zvUq/YaBCt6EDuq6NG117rufW85mLVSOXKBr0hLhEvsq6r\nXQpkyrd/AC5UID4OpJjLiy/Za9wxXhkXPo7uo5/F01vOpZZcEbQmdrJ1Sg5u\nhfNYZN3cH/aYv3Uk6MjdC6nAS+PDFto67MWL92pDAi0qWfxZSqC3PBsHKeL2\nmJw/WoAWDZwWZn7JNKYyEoAmj7i8bNqQe6sNkMPLHPlrlMnLVV0Eq0ZyVbc7\n9tdw73ZkXlc4RdQyTQbtZD+vQ1TG/eimk/mwrwZttKwfxImteD/ad2jBE+pF\nvXCT\r\n=+jfO\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH/A9n8BQ9zDbQ+Gm2fbI3lYJ+MkxhPAtSthpXJ970vYAiAAi1cPsAviUBzMwLFvDMw19Z0aDS3wH9UEgR5Q86oxkg=="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-spritesmith_0.5.2_1533500723144_0.6751989573099444"},"_hasShrinkwrap":false},"0.5.3":{"name":"webpack-spritesmith","version":"0.5.3","description":"Webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins","main":"lib/Plugin.js","scripts":{"build":"rimraf lib && gulp build","prepack":"npm run build","dev":"npm run build && rimraf dev/src/generated && webpack --config dev/config.js","dev-watch":"npm run build && webpack --config dev/config.js --watch"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"gaze":"^1.1.2","glob":"^7.1.2","loader-utils":"^1.1.0","lodash":"^4.17.5","mkdirp":"^0.5.1","mz":"^2.7.0","spritesheet-templates":"^10.2.2","spritesmith":"^3.3.0"},"devDependencies":{"babel-core":"^6.26.3","babel-preset-env":"^1.7.0","babel-preset-stage-3":"^6.24.1","css-loader":"^0.28.11","file-loader":"^1.1.11","gulp":"^3.9.1","gulp-babel":"^7.0.1","rimraf":"^2.6.2","style-loader":"^0.20.3","stylus":"^0.54.5","stylus-loader":"^3.0.2","webpack":"^4.8.1","webpack-cli":"^2.0.13"},"gitHead":"3ec4c16d46e74b4007c088e248bac72672570ee5","_id":"webpack-spritesmith@0.5.3","_npmVersion":"6.3.0","_nodeVersion":"8.9.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"integrity":"sha512-Qu1l9J2KFMTSdTj4wd/n2ehBxsBCs1L0jxh1rN2b7JdvptSyyLTSfSAs/PnAAa2qnWGhbw1MIr5ob03zfaz4wA==","shasum":"c1b2e3f163cc5c50e4d60d8fff3b20bdc501bc2e","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.5.3.tgz","fileCount":10,"unpackedSize":32431,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbm/NMCRA9TVsSAnZWagAAElYP/i/J9V6u1JoAHE95L5KO\nJvCxAu15tQjP7rYr+rlh0az9rMTHaUbdpdHHBKWFaPv2K2+rOGIdFYfndYSP\nENdjceB2vFNIQtRuaSPTzDmgw/x51KCMbYCo8LAZktufe+Q4Nzpvi6hpLVjC\nKsmCwMip7EQXcH34eSxVP8+/+3Gs39itYbpSnG96ty2vwMnyrBSe3lZwQn6+\n+3O8ri4X3kcTVCeTdKQmjctys3VGAIbsc+TWcF+/mbEATbijnWKHgV3FTM0W\nIIc2nHDJ9uAcNCkeTuyIcbilmPUs2R16YuOeyMsmojnpiRmsdOpqjXVC2LCm\nEbI4ozOyITevw64xn+uJBitxjosscuKbVglf08+EEqPEaqOeeopCbn0+Y3Bw\njvViaTiITgedHlDLDBZEh1lckmaHOyvK7hVmYJvIgsWXf2QAs0Qkec14IPNg\nJhexK/lxElYeBpGofadW957jmbAIDbOBFWjvxNN9bpxueLXiz+8uYt2jyFSj\ntxXlqz6Cbe04gzZmxU+X8x870fOX7BX+OWsyfBoNtDSxJShpXzDgspCiyohm\njv2UOxm34jETGLHxG/0J0fBlGuVZZWM3e4ocLXCi302JJRz2WeuiIvci59Gu\nZLXcSIYy91nc2MzcF+HpOJ+rb9k/cBtzLkO7WezLQAaDK4lC3t2fQAKDheR7\nUduT\r\n=j9iR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCfXNpyXKbsDQepHZ8YOOF/SCG3V6OWvFixRsWCoNoG+gIgL/9vukTDXNo4uumrxw9ft0D+jgJ4LtPICjCq0rGWMQM="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-spritesmith_0.5.3_1536947019462_0.9329202817781508"},"_hasShrinkwrap":false},"0.5.4":{"name":"webpack-spritesmith","version":"0.5.4","description":"Webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins","main":"lib/Plugin.js","scripts":{"build":"rimraf lib && babel src -d lib","prepack":"npm run build","dev":"npm run build && rimraf dev/src/generated && webpack --config dev/config.js","dev-watch":"npm run build && webpack --config dev/config.js --watch"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"gaze":"^1.1.2","glob":"^7.1.2","loader-utils":"^1.1.0","lodash":"^4.17.5","mkdirp":"^0.5.1","mz":"^2.7.0","spritesheet-templates":"^10.2.2","spritesmith":"^3.3.1"},"devDependencies":{"@babel/cli":"7.1.2","@babel/core":"7.1.2","@babel/preset-env":"7.1.0","css-loader":"^0.28.11","file-loader":"^1.1.11","rimraf":"^2.6.2","style-loader":"^0.20.3","stylus":"^0.54.5","stylus-loader":"^3.0.2","webpack":"^4.19.1","webpack-cli":"2.1.5"},"gitHead":"48cce9c2458585de453a73e088031bc6462406ac","_id":"webpack-spritesmith@0.5.4","_npmVersion":"6.3.0","_nodeVersion":"8.9.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"integrity":"sha512-JMwk05UMVBzFbJ0X+4sE3OkvvLKcnZ+NTUr9fZL34tMRGYQWCoXehvNNHWwK5+eqPonhxam1O2gssQ7fTIoqig==","shasum":"140b6f6876208d4981c4fb755f5c9ef0a4692ab3","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-0.5.4.tgz","fileCount":10,"unpackedSize":33817,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3x6lCRA9TVsSAnZWagAAqTAP/1JAel18C624gGseCfqE\nVPpQ+OQ6W0f9mLkd/rPUjf8Kh2tlGswOTvY8LrDScyDoy72Yb1YIjVY2wS8y\n7j8/zTk8cLZoimSEmhgAc/c/EsaahbKz0XZsVXgMYFgxYnGg4IF5aIsx4ICP\nXBJRyu8GHEIqiLkLtrWqkicPWFILoS7leR/CC2OY/ik2Elf1GJOz94p3hBJd\nT4R80XZO62SU40CQZm3k7wQNIVIE5fOJLtiGJYRQtcLfi6oYfwS2zGjI1MDQ\ngvEbtLTZVUW0g0CWvk7fNCpaVvYbiUgsW+BGnr3MZDiAMKc5nP/q/GguqFIq\nezWVtrkMPFrB4xFIvcU3l05b85MUzQUj4Zqi9+I7Kq/KOEMcXwH6Cqqvgpda\nXzldAcL/EKu9VU8gREwZll5hnco3GzxrUaVS28YNx1TaTR6F3rq4Y/n/NvPX\n8XT/HxZPjh/rqWjFp2KG46fwilEdQgLUSuBSg4BYCHB2F065jHSmuaqs7iOi\nCBb4/QnWFq0t4gkk1zk5lzUVSsggZLCTA/S0VXFGkrqoxQeiebWE4i7vN3Rw\nM5ynIAf/4dKRWKiMgZLh8WVq7iOME5ggUCI+m41ERLj80CsECcp0hMoZqTzm\nZ0ySI2o+bAx2pOOjCGufHhFgiaf+IqCWZU+GmHcC0T575EN1DmaawsN5N7dY\nnJFq\r\n=BUMp\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDJdr/sxDXGvcHVfTLGpkj30upey7LrYSz9DbRCcua2igIgZWy7jIE7In142P8CWJUYA3y37scmR1wl2kRYfvAgLeU="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-spritesmith_0.5.4_1541349027737_0.7561485200246889"},"_hasShrinkwrap":false},"1.0.0":{"name":"webpack-spritesmith","version":"1.0.0","description":"Webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins","main":"lib/Plugin.js","scripts":{"build":"rimraf lib && babel src -d lib","prepack":"npm run build","dev":"npm run build && rimraf dev/src/generated && webpack --config dev/config.js","dev-watch":"npm run build && webpack --config dev/config.js --watch"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"gaze":"^1.1.2","loader-utils":"^1.1.0","lodash":"^4.17.5","mkdirp":"^0.5.1","mz":"^2.7.0","spritesheet-templates":"^10.2.2","spritesmith":"^3.3.1"},"devDependencies":{"@babel/cli":"7.1.2","@babel/core":"7.1.2","@babel/preset-env":"7.1.0","css-loader":"^0.28.11","file-loader":"^1.1.11","rimraf":"^2.6.2","style-loader":"^0.20.3","stylus":"^0.54.5","stylus-loader":"^3.0.2","webpack":"^4.19.1","webpack-cli":"2.1.5"},"gitHead":"699c492b58c8c9b87676d82f433f45c829d2feaa","_id":"webpack-spritesmith@1.0.0","_npmVersion":"6.5.0","_nodeVersion":"8.9.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"integrity":"sha512-lLFLpjnpSQn5NKNffu4MFYx1MxpF9aJnKFwwQCCENW6iF8Qu8X8mtfehHLF3a2D9wahZ46v8STFZcWl2FqZufw==","shasum":"8ae2f660fde3005eb74a36267a4160e7ee84befe","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-1.0.0.tgz","fileCount":10,"unpackedSize":36439,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPORkCRA9TVsSAnZWagAAkYAP/RXgAXNFZPsOt8piIQot\nbCghfPwc9F0sEucMKJxJ6zI6hOxQJ+E8jmMhaiaNNwOVAYIjr30rAXd2dU/f\nMWPlp2IP6+yPnSuAj+V5nWrF1YO8MGEIEGM0+ngDf93t6dltx0NMe2n1hPMJ\nqY8a1Y2TTvFz6sYjGje7PwVRs3qWc/2/irc765BllvtczuPikqbKrty49k4t\nZ0V2pyIWV5GwiIosAcyOhPyHIyBxznh9T+xzRvj5QBC3HaB5na2Oiut3uEJe\n+tKRgQ0NM6qHNpAZRJAGp+M8/3jUUJjpUFUN8H7+W29mbQeqOtwHOY1OqZjC\nw7lYov1nzTbjzkqVdUZfFtr3F2FycSA2GhLDx/9msms0I7hF+hb4LnThJLz1\nzakHjKb6Bc9sKredM41KpQalNpcI97lePht7Ds7SiPtqo7cJTZUvyrlGeNwC\n9/krMVdDRPazdLodEXGhmX/S740NebICMP/OWC5RlaY7mINHLNtEOGt33E6a\nTKhJ+5EX5AMwordvm6+3ZN2Nxth1ujvVNPLleHC+kQw1Ol7iBDJ/uMaY6HGC\niJ76uFinaU7a2fJTFfln5UOe3SMM1qCpFqLnBF2/X2LMikDYPX3eVrEe7AfW\n6DcjNxUPWquWD9jhu7sISOOGsBMF7pdZ5mu1a3rJ3WiMbwboid7srp7P5GCY\nMMMo\r\n=NCkk\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAWW2VXJInMXySBJSpdBv/xoPUgpkqkB55EX8KYCDdEiAiAzU9pqPvP9uEQAD3Da3KbQ+FvewZrY9yQgpboQBelAOg=="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-spritesmith_1.0.0_1547494500198_0.7381120389342033"},"_hasShrinkwrap":false},"1.0.1":{"name":"webpack-spritesmith","version":"1.0.1","description":"Webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins","main":"lib/Plugin.js","scripts":{"build":"rimraf lib && babel src -d lib","prepack":"npm run build","dev":"npm run build && rimraf dev/src/generated && webpack --config dev/config.js","dev-watch":"npm run build && webpack --config dev/config.js --watch"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"gaze":"^1.1.3","loader-utils":"^1.2.3","lodash":"^4.17.11","mkdirp":"^0.5.1","mz":"^2.7.0","spritesheet-templates":"^10.2.4","spritesmith":"^3.3.1"},"devDependencies":{"@babel/cli":"7.1.2","@babel/core":"7.1.2","@babel/preset-env":"7.1.0","css-loader":"^0.28.11","file-loader":"^1.1.11","rimraf":"^2.6.3","style-loader":"^0.20.3","stylus":"^0.54.5","stylus-loader":"^3.0.2","webpack":"^4.29.6","webpack-cli":"^3.3.0"},"gitHead":"08c23c2ece00241a0bfc82c0ac3a46e37ab659b9","_id":"webpack-spritesmith@1.0.1","_npmVersion":"6.5.0","_nodeVersion":"8.9.0","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"integrity":"sha512-RO7S6e18R1FFCmAh9UHzM1lXRXuXDFh+Zwknxwfp3siV89SfW8Tt4jCvlvpb0kQxHJAfFSNEUGalSlj3nsl85g==","shasum":"2d0abb99803fff49bbbec36e4e995ccdda13c394","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-1.0.1.tgz","fileCount":10,"unpackedSize":36575,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcqPBmCRA9TVsSAnZWagAAzhIP/0gPtHx/aD90wDvCIUzh\nul/qgrmWsmbxG+bDfJ/1IhpAA65m+tBmWno1T1NB2PihUeo1HFh7BBlzybz6\nP4nfWAZvkiOSH8T53U/mOI4AlpvC3eWntidgVRrkDgSO3qNE5u3xc2DsoC6G\nMffdfqEBIxhcqcDOC+Pd8vK+WKZqsWqpe+pjiwdPu+9BJzw17jRit+kWxQV8\nG6dmvYtXhGYkQbTGhvyBrV/WdMR3QlwJfxWLx49HPho0yoCxQEAxjr6o23zf\nQj5UNNkHYoSOffNmjXL+cIzH+DEcu9+X9WyuOTcgeHNpx056osmB5kpWdGgA\n7NR+K43Sh47fsgkWqGp1A8CCndelkymS+Rodnb9ov3HYh/SdrsWaMRMmbaOP\niWhzDcdsMvEN7WX0zdJ1vGaZ5CVm/Py10Jmr9K8A6nFITDjZCIh1bAjcGs3r\n4EYK5o0a01ilonQ6jg0Dt8ZNBzGOTCIF7nECZVG6mWcean9BwxhzjLN3kjlE\nhXko6yBx40pYr5s4NhWL113GGk4Jys2w7zV93xnThqrqPYKhe7SE/e3oichJ\nMB1K9nS9sHn4NF1zNo33VclF/2BxNVE6JuiCDS5lWDzFYU1ANnlILvhN/OKZ\nnD0evc7YnLWPhItiGcAnRhAPnzVHnpRMOvgtUtydw7V89Wby2jLOh8e8Exjp\nYX6M\r\n=NJMb\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDOcGjkkv8bKK7wsyRsVBCXg9Dl1eTGM/NjCE302ZXKngIgfuOuNm9gpLtxTKMErIozC8oJh+7hO5sqjfpmfmrv1NA="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-spritesmith_1.0.1_1554575461952_0.34514297058712295"},"_hasShrinkwrap":false},"1.0.2":{"name":"webpack-spritesmith","version":"1.0.2","description":"Webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins","main":"lib/Plugin.js","scripts":{"build":"rimraf lib && babel src -d lib","prepack":"npm run build","dev":"npm run build && rimraf dev/src/generated && webpack --config dev/config.js","dev-watch":"npm run build && webpack --config dev/config.js --watch"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"gaze":"^1.1.3","loader-utils":"^1.2.3","lodash":"^4.17.15","mkdirp":"^0.5.1","mz":"^2.7.0","spritesheet-templates":"^10.2.4","spritesmith":"^3.3.1"},"devDependencies":{"@babel/cli":"7.1.2","@babel/core":"7.1.2","@babel/preset-env":"7.1.0","css-loader":"^3.2.0","file-loader":"^1.1.11","rimraf":"^2.6.3","style-loader":"^0.20.3","stylus":"^0.54.5","stylus-loader":"^3.0.2","webpack":"^4.29.6","webpack-cli":"^3.3.0"},"gitHead":"e86120b5178309ee46a6f68efd9b6ca32bf277be","_id":"webpack-spritesmith@1.0.2","_nodeVersion":"8.14.0","_npmVersion":"6.10.1","dist":{"integrity":"sha512-iESHe2ne3364zRcJlfdtX+YUWa68BclDR2GbSna6m9ZVNgK9LokYRLZ7A9SlbEkD9qML85pjKlJFcxASVFI5iQ==","shasum":"a861de8a6150bab0461df5b6cea48fbdc2199d11","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-1.0.2.tgz","fileCount":10,"unpackedSize":36333,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZ6U/CRA9TVsSAnZWagAAcgwP/3sKDI7/6p4JB076XK6N\nCCRQyFxFJKEK0SrqHAYAi/V4t54LMmISpSPViDoCAJKydnQ2e6/Noh85TwhT\nzlo3GrXstjWNEyw1Qe3mP6sAE7O+9QIiJMPliGrfnrfuSYFqZgFRRo8yzMY1\n3Blo1KuEh4vo0+Ij1UoTEhlVaXvKrXJgfWK1oIWVL1QY8Ln8kbwuNo1U6TCO\n3EfTHrOKpq6SO9hoh/+BcSVfnHJLbH6Tllp1nAevMuq7lLZPHEAg07N6a+L/\nS1b2ebgtCPeyDjVzv3GSX7zQ70mAfbZ94YvfmF0WisdMWQ2wVVq3n8G2TkMZ\njAI9+SbZMxJZB5XYKubogxxHd2nuxaSfQqNmlYjUEe0ZJMSr0lewdpYre8KI\nqQLe1osTSdpPAO7poQ4a8DOyzD9sCNW8hOLMvOjQBgVe3TATyrZoZ2wbaqZq\nKAWcDoP3Mro2kJ+EUzTVw/Cef7xASNrroYIsaEG7UHuPKn9draSJQXOVwDj2\nAaT2u76yyKIEY/PUm3qx0y3ufCUTwfigbolBRIGXKwGU2gIk5eNU67wdGtVP\nMA5HJGPTCuB3Qp10dQx5/mqoS52mqdFnUVVxqt6G+7tQNclQCl8p8PxP1xEm\n5qCipTs8FierDYYHSkQ2OEUH56sn1z1dEJ0gXYMY7TfMgFwUccfZyVQQIRRJ\nY9Kb\r\n=GZCN\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCM1CsHNf+BLPrWqrE+SkSHOChjjFQHYA2pBoB7gSLNYgIhAJYqcwm3XBlLB6Wg2F2sRPgeHCNZLZNXtakCTypykzwy"}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-spritesmith_1.0.2_1567073598778_0.770261270842159"},"_hasShrinkwrap":false},"1.1.0":{"name":"webpack-spritesmith","version":"1.1.0","description":"Webpack plugin that converts set of images into a spritesheet and SASS/LESS/Stylus mixins","main":"lib/Plugin.js","scripts":{"build":"rimraf lib && babel src -d lib","prepack":"npm run build","dev":"npm run build && rimraf dev/src/generated && webpack --config dev/config.js","dev-watch":"npm run build && webpack --config dev/config.js --watch"},"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"keywords":["icons","sprites","spritesmith","webpack"],"author":"","license":"ISC","bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","dependencies":{"gaze":"^1.1.3","loader-utils":"^1.2.3","lodash":"^4.17.15","mkdirp":"^0.5.1","mz":"^2.7.0","spritesheet-templates":"^10.4.2","spritesmith":"^3.4.0"},"devDependencies":{"@babel/cli":"7.1.2","@babel/core":"7.1.2","@babel/preset-env":"7.1.0","css-loader":"^3.2.0","file-loader":"^1.1.11","rimraf":"^2.6.3","style-loader":"^0.20.3","stylus":"^0.54.5","stylus-loader":"^3.0.2","webpack":"^4.29.6","webpack-cli":"^3.3.0"},"gitHead":"a059d79f22259d6468d7d7e11b5b9764f1dbe96d","_id":"webpack-spritesmith@1.1.0","_nodeVersion":"8.9.0","_npmVersion":"6.11.3","_npmUser":{"name":"turkeevm","email":"turkeevm@gmail.com"},"dist":{"integrity":"sha512-VEuk3VbZA3FXKFwEVwnxLlosqEkvwJx3kh0P2MRb7vSR8T24dhas3bicH42/wg1FyrUMWoUgcG1NuDfm4vITYQ==","shasum":"a012907f19d54553facb870c762b95660f22621b","tarball":"https://registry.npmjs.org/webpack-spritesmith/-/webpack-spritesmith-1.1.0.tgz","fileCount":10,"unpackedSize":37445,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeCmo1CRA9TVsSAnZWagAAHtIP/jNGk9h3DybovhRBX08c\nl0+vWJH4YxWrTGlP1juguBIR9Y3EZlhv7xh3sCrmBa2HxZeImZy408pnEyY3\ngH1Lpaq4gy6D1L38pqHY97qUOfVo13C6PeHhwfxqjTVEgVtMEzWGOs1Kf3As\nlvuKt34p7hTFIST+aa+MU0vx/qrSHkWApyatc9TmjbnHo+WnkFNA+DewhKCQ\nJ/sSAQEvB/krg7HM8e6DIM7/T53Y33Z3z1MT/aH1HSBZ0yBPu6cXJvYHksjK\n/qT9q/lt2c83owt0pg21lqwZ5RFdE3KhAxZ62hYDSZAm1KcKTTmoDv34mPpC\nBhiv1rXuY72eAYEsBVTA68djlvbXAekjVKyNqrHLRo6+lFehghBYIA6EnCm0\ntv8SjeQh6CSS2ZQ3LHE9lzjn+i7JBvXeM0FeO+5OcCvl7hQr+SyJ21Uxx7Uo\nAqi2Ds5UKQYBorI8I1Rzw48YVuu8nqhgQ16bYB7U8Ghvv0GUCKjfknbNU1bO\n3za2zWdbuNdmQCObKpqivgPlcF13a8Gms4XRQz50CSPG1APpXBB188Nzwn9d\n84mBiyYeXes1CpU42UdhhdkXhmPkI/Cq7HkfTXWUbN9tBGh+S/1Hh0FFuoO2\n73x7TfqX3FfjnuLEwiDW82Lwf4iTCemsZrPOILh8XYQXXvC6K92AA4JB0UIR\n6hpF\r\n=a4c1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGSZRGOogjHFejalbVCCUvnBhEC6Xe5aJoYzy/KnYh4JAiAd8baxuZEimeBB4DE1CefSTqQUMfH4zd0R8Tixc8cWMw=="}]},"maintainers":[{"name":"turkeevm","email":"turkeevm@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-spritesmith_1.1.0_1577740853109_0.5713154396790954"},"_hasShrinkwrap":false}},"homepage":"https://github.com/mixtur/webpack-spritesmith#readme","keywords":["icons","sprites","spritesmith","webpack"],"repository":{"type":"git","url":"git+https://github.com/mixtur/webpack-spritesmith.git"},"bugs":{"url":"https://github.com/mixtur/webpack-spritesmith/issues"},"license":"ISC","readmeFilename":"Readme.md","users":{"ark":true,"yanlaichang":true,"shuoshubao":true,"dennisli87":true,"hcx_wd":true,"dyakovk":true,"mgnrsb":true,"ycjcl868":true,"gtopia":true}}