{"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"keywords":["webpack","loader","stylus"],"dist-tags":{"latest":"3.0.1","webpack1":"2.5.1"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"description":"Stylus loader for webpack","readme":"# stylus-loader\nA [stylus](http://learnboost.github.io/stylus/) loader for [webpack](https://github.com/webpack/webpack).\n\n[![build status](https://secure.travis-ci.org/shama/stylus-loader.svg)](https://travis-ci.org/shama/stylus-loader)\n[![NPM version](https://badge.fury.io/js/stylus-loader.svg)](https://badge.fury.io/js/stylus-loader)\n\n## Install\n\n`npm install stylus-loader stylus --save-dev`\n\n**Important**: in order to have ability use any `stylus` package version,\nit won't be installed automatically. So it's required to\nadd it to `package.json` along with `stylus-loader`.\n\nThe latest version supporting webpack 1 can be installed with:\n\n`npm install stylus-loader@webpack1 stylus --save-dev`\n\n## Usage\n\n```js\nvar css = require('!raw!stylus!./file.styl'); // Just the CSS\nvar css = require('!css!stylus!./file.styl'); // CSS with processed url(...)s\n```\n\nSee [css-loader](https://github.com/webpack/css-loader) to see the effect of processed `url(...)`s.\n\nOr within the webpack config:\n\n```js\nmodule: {\n  loaders: [{\n    test: /\\.styl$/,\n    loader: 'css-loader!stylus-loader?paths=node_modules/bootstrap-stylus/stylus/'\n  }]\n}\n```\n\nThen you can: `var css = require('./file.styl');`.\n\nUse in tandem with the [style-loader](https://github.com/webpack/style-loader) to add the css rules to your `document`:\n\n```js\nmodule: {\n  loaders: [\n    { test: /\\.styl$/, loader: 'style-loader!css-loader!stylus-loader' }\n  ]\n}\n```\n\nand then `require('./file.styl');` will compile and add the CSS to your page.\n\n`stylus-loader` can also take advantage of webpack's resolve options. With the default options it'll find files in `web_modules` as well as `node_modules`, make sure to prefix any lookup in node_modules with `~`. For example if you have a styles package lookup files in it like `@import '~styles/my-styles`. It can also find stylus files without having the extension specified in the `@import` and index files in folders if webpack is configured for stylus's file extension.\n\n```js\nmodule: {\n  resolve: {\n    extensions: ['', '.js', '.styl']\n  }\n}\n```\n\nwill let you have an `index.styl` file in your styles package and `require('styles')` or `@import '~styles'` it. It also lets you load a stylus file from a package installed in node_modules or if you add a modulesDirectories, like `modulesDirectories: ['node_modules', 'web_modules', 'bower_components']` option you could load from a folder like bower_components. To load files from a relative path leave off the `~` and `@import 'relative-styles/my-styles';` it.\n\nBe careful though not to use the extensions configuration for two types of in one folder. If a folder has a `index.js` and a `index.styl` and you `@import './that-folder'`, it'll end up importing a javascript file into your stylus.\n\n### Stylus Plugins\n\nYou can also use stylus plugins by adding an extra `stylus` section to your `webpack.config.js`.\n\n```js\nvar stylus_plugin = require('stylus_plugin');\nmodule: {\n  loaders: [\n    { test: /\\.styl$/, loader: 'style-loader!css-loader!stylus-loader' }\n  ]\n},\nstylus: {\n  use: [stylus_plugin()]\n}\n```\n\nMultiple configs can be used by giving other configs different names and referring to the with the `config` query option.\n\n\n```js\nvar stylus_plugin = require('stylus_plugin');\nmodule: {\n  loaders: [\n    {\n      test: /\\.other\\.styl$/,\n      loader: 'style-loader!css-loader!stylus-loader?config=stylusOther'\n    }\n  ]\n},\nstylusOther: {\n  use: [stylus_plugin()]\n}\n```\n\n#### Webpack 2\n\nWebpack 2 formalizes its options with a schema. Options can be provided to `stylus-loader` in the options field to `module.rules` or through LoaderOptionsPlugin or `stylus-loader`'s OptionsPlugin (a convenience wrapper around LoaderOptionsPlugin).\n\nConfig through module rules:\n\n```js\nmodule: {\n  rules: [\n    {\n      test: /\\.styl$/,\n      use: [\n        'style-loader',\n        'css-loader',\n        {\n          loader: 'stylus-loader',\n          options: {\n            use: [stylus_plugin()],\n          },\n        },\n      ],\n    }\n  ],\n},\n```\n\nConfig through LoaderOptionsPlugin:\n\n```js\nmodule: {\n  rules: [\n    {\n      test: /\\.styl$/,\n      loader: 'style-loader!css-loader!stylus-loader',\n    },\n  ],\n},\nplugins: [\n  new webpack.LoaderOptionsPlugin({\n    test: /\\.styl$/,\n    stylus: {\n      // You can have multiple stylus configs with other names and use them\n      // with `stylus-loader?config=otherConfig`.\n      default: {\n        use: [stylus_plugin()],\n      },\n      otherConfig: {\n        use: [other_plugin()],\n      },\n    },\n  }),\n],\n```\n\nConfig through `stylus-loader`'s OptionsPlugin (convenience wrapper for LoaderOptionsPlugin):\n\n```js\nplugins: [\n  new stylusLoader.OptionsPlugin({\n    default: {\n      use: [stylus_plugin()],\n    },\n  }),\n],\n```\n\n#### Using nib with stylus\n\nThe easiest way of enabling `nib` is to import it in the stylus options:\n\n```js\nstylus: {\n  use: [require('nib')()],\n  import: ['~nib/lib/nib/index.styl']\n}\n```\n\nwhere `~` resolves to `node_modules/`\n\n### Prefer webpack resolving\n\n`stylus-loader` currently prefers resolving paths with stylus's resovling utilities and then falling back to webpack when it can't find files. Use the `preferPathResolver` option with the value `'webpack'` to swap this. This has the benefit of using webpack's async resolving instead of stylus's sync resolving. If you have a lot of dependencies in your stylus files this'll let those dependencies be found in parallel.\n\n```js\nstylus: {\n  preferPathResolver: 'webpack',\n}\n```\n\n## Testing\n\n```\nnpm test\nopen http://localhost:8080/test/\n```\n\n\n## Contributing\nIn lieu of a formal styleguide, take care to maintain the existing coding style.\n\n## Release History\n* Please see https://github.com/shama/stylus-loader/releases\n* 3.0.1 - Update install instructions mentioning how to get a version supporting webpack 1 (@mzgoddard)\n* 3.0.0 - Fix loader-utils deprecation warning (@ryani33), Drop webpack 1 and Node<4 support (@mzgoddard)\n* 2.5.1 - Fix paths mutation in options (@vio)\n* 2.5.0 - Define paths in global stylusOptions, in addtion to query params (@JounQin)\n* 2.4.0 - Add OptionsPlugin to help support webpack 2 (@mzgoddard)\n* 2.3.1 - Fix typo in README (@stevewillard)\n* 2.3.0 - Fix most use cases of relative path resolving (@mzgoddard), Add option to prefer a path resolver (webpack or stylus) (@mzgoddard)\n* 2.2.0 - Let stylus use option be just a function (@yuffiy), Track json calls as imports like use calls (@gnarf)\n* 2.1.2 - Fix support for stylus include config (@andrewburgess), Add block-level imports to listimports (@kenaniah)\n* 2.1.1 - Support Node 6 (@yyx990803), Test in webpack 1 and 2 (@phyllisstein)\n* 2.1.0 - Add support for stylus's include and set (@michaek)\n* 2.0.1 - Add peer dependency on stylus (@jchitel), fix PathCache for webpack 2 (@Unhelpful)\n* 2.0.0 - Remove dependency on stylus (@kossnocorps)\n* 1.6.1 - Remove version breaking change in 1.6.0\n* 1.6.0 - Remove dependency on stylus (@kossnocorps)\n* 1.3.0 - resolve use() calls (@mzgoddard), manual imports through path cache (@mzgoddard)\n* 1.2.0 - files in package.json (@SimenB), test running with testem (@mzgoddard), and some performance changes (@mzgoddard)\n* 1.1.0 - Pass through sourceMap option to stylus instead of defaulting to inline. Inherit source-map from devtool (@jordansexton).\n* 1.0.0 - Basic source map support (@skozin). Remove nib as dep. stylus is now a direct dep (as peerDependencies are deprecated).\n* 0.6.0 - Support loader prefixes when resolving paths (@kpdecker).\n* 0.5.0 - Disable Stylus parser caching in listImports (@DaQuirm). Update to stylus@0.49.2 and nib@1.0.4 as peerDependencies (@kompot).\n* 0.4.0 - Allow configuration of plugins through webpack config (@bobzoller). Update to stylus 0.47.2 (@shanewilson).\n* 0.3.1 - Fix when dependency (@tkellen)\n* 0.3.0 - Define url resolver() when \"resolve url\" option is true (@mzgoddard).\n* 0.2.0 - Now tracks dependencies for @import statements making cacheable work. Update stylus dep.\n* 0.1.0 - Initial release\n\n## License\nCopyright (c) 2014 Kyle Robinson Young  \nLicensed under the MIT license.\n","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"users":{"borjes":true,"mbing":true,"staydan":true,"doruk":true,"isenricho":true,"johncido":true,"cygik":true},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"license":"MIT","versions":{"0.1.0":{"name":"stylus-loader","version":"0.1.0","description":"Stylus loader for webpack","main":"index.js","scripts":{"test":"webpack-dev-server --config test/webpack.config.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","dependencies":{"stylus":"~0.39.4","nib":"~1.0.1","loader-utils":"~0.2.1"},"devDependencies":{"webpack-dev-server":"~0.11.0","should":"~2.0.2","mocha":"~1.14.0","mocha-loader":"~0.6.3","css-loader":"~0.6.2","raw-loader":"~0.5.0"},"keywords":["webpack","loader","stylus"],"_id":"stylus-loader@0.1.0","dist":{"shasum":"da5c82ffa0d6608618de9e5dd51fa7f4f92900d0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-0.1.0.tgz"},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.1.1":{"name":"stylus-loader","version":"0.1.1","description":"Stylus loader for webpack","main":"index.js","scripts":{"test":"webpack-dev-server --config test/webpack.config.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git@github.com:shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"stylus":"~0.39.4","nib":"~1.0.1","loader-utils":"~0.2.1"},"devDependencies":{"webpack-dev-server":"~0.11.0","should":"~2.0.2","mocha":"~1.14.0","mocha-loader":"~0.6.3","css-loader":"~0.6.2","raw-loader":"~0.5.0"},"keywords":["webpack","loader","stylus"],"homepage":"https://github.com/shama/stylus-loader","_id":"stylus-loader@0.1.1","dist":{"shasum":"2247bfe714d7178f674fd24f00861b1f729c185f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-0.1.1.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.2.0":{"name":"stylus-loader","version":"0.2.0","description":"Stylus loader for webpack","main":"index.js","scripts":{"test":"webpack-dev-server --config test/webpack.config.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git@github.com:shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"stylus":"~0.42.2","nib":"~1.0.2","loader-utils":"~0.2.1"},"devDependencies":{"webpack-dev-server":"~0.11.0","should":"~2.0.2","mocha":"~1.14.0","mocha-loader":"~0.6.3","css-loader":"~0.6.2","raw-loader":"~0.5.0"},"keywords":["webpack","loader","stylus"],"homepage":"https://github.com/shama/stylus-loader","_id":"stylus-loader@0.2.0","dist":{"shasum":"95cc31a7b4258e571a59e53a4e2beb9629ad3b77","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-0.2.0.tgz"},"_from":".","_npmVersion":"1.3.25","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.3.0":{"name":"stylus-loader","version":"0.3.0","description":"Stylus loader for webpack","main":"index.js","scripts":{"test":"webpack-dev-server --config test/webpack.config.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git@github.com:shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"stylus":"~0.42.2","nib":"~1.0.2","loader-utils":"~0.2.1"},"devDependencies":{"webpack-dev-server":"~0.11.0","should":"~2.0.2","mocha":"~1.14.0","mocha-loader":"~0.6.3","css-loader":"~0.6.2","raw-loader":"~0.5.0"},"keywords":["webpack","loader","stylus"],"homepage":"https://github.com/shama/stylus-loader","_id":"stylus-loader@0.3.0","dist":{"shasum":"e890b7773778469c2499fc980c789f7f2cd3ce5d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-0.3.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"}],"directories":{}},"0.3.1":{"name":"stylus-loader","version":"0.3.1","description":"Stylus loader for webpack","main":"index.js","scripts":{"test":"webpack-dev-server --config test/webpack.config.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git@github.com:shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"~0.2.1","nib":"~1.0.2","stylus":"~0.42.2","when":"~3.2.x"},"devDependencies":{"webpack-dev-server":"~0.11.0","should":"~2.0.2","mocha":"~1.14.0","mocha-loader":"~0.6.3","css-loader":"~0.6.2","raw-loader":"~0.5.0"},"keywords":["webpack","loader","stylus"],"homepage":"https://github.com/shama/stylus-loader","_id":"stylus-loader@0.3.1","dist":{"shasum":"f211d6ec35ae1a270ee911c6067895e4d9013a18","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-0.3.1.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"directories":{}},"0.4.0":{"name":"stylus-loader","version":"0.4.0","description":"Stylus loader for webpack","main":"index.js","scripts":{"test":"webpack-dev-server --config test/webpack.config.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git@github.com:shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"~0.2.3","nib":"~1.0.2","stylus":"~0.47.2","when":"~3.2.x"},"devDependencies":{"css-loader":"~0.6.2","mocha":"~1.14.0","mocha-loader":"~0.6.5","raw-loader":"~0.5.0","should":"~2.0.2","webpack-dev-server":"~1.4.7"},"keywords":["webpack","loader","stylus"],"gitHead":"6e628a84075cb23ba8f70c13bd0af502ba1d773e","homepage":"https://github.com/shama/stylus-loader","_id":"stylus-loader@0.4.0","_shasum":"440b7b5fa9afec95197b598ff41006eaf3c1404b","_from":".","_npmVersion":"1.4.20","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"440b7b5fa9afec95197b598ff41006eaf3c1404b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-0.4.0.tgz"},"directories":{}},"0.5.0":{"name":"stylus-loader","version":"0.5.0","description":"Stylus loader for webpack","main":"index.js","scripts":{"test":"webpack-dev-server --config test/webpack.config.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git@github.com:shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"~0.2.5","when":"~3.2.x"},"peerDependencies":{"nib":"~1.0.4","stylus":"~0.49.2"},"devDependencies":{"css-loader":"~0.6.2","mocha":"~1.14.0","mocha-loader":"~0.6.5","raw-loader":"~0.5.0","should":"~2.0.2","webpack-dev-server":"~1.6.5"},"keywords":["webpack","loader","stylus"],"gitHead":"cb484bf5546734fb563546f58e36e08cf8da511c","homepage":"https://github.com/shama/stylus-loader","_id":"stylus-loader@0.5.0","_shasum":"0861b2a83394a5390cddb5eed84e368d4c076933","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"0861b2a83394a5390cddb5eed84e368d4c076933","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-0.5.0.tgz"},"directories":{}},"0.6.0":{"name":"stylus-loader","version":"0.6.0","description":"Stylus loader for webpack","main":"index.js","scripts":{"test":"webpack-dev-server --config test/webpack.config.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git@github.com:shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"~0.2.6","when":"~3.6.x"},"peerDependencies":{"nib":"^1.0.4","stylus":"^0.49.3"},"devDependencies":{"css-loader":"~0.9.1","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","raw-loader":"~0.5.1","should":"~4.6.1","stylus":"^0.49.3","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"ddde4489a543592b405ba1582d7fac7a2317f48e","homepage":"https://github.com/shama/stylus-loader","_id":"stylus-loader@0.6.0","_shasum":"801c3184a7e52f64b3fe076ba0e260cd7e7998d7","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"801c3184a7e52f64b3fe076ba0e260cd7e7998d7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-0.6.0.tgz"},"directories":{}},"1.0.0":{"name":"stylus-loader","version":"1.0.0","description":"Stylus loader for webpack","main":"index.js","scripts":{"test":"webpack-dev-server --config test/webpack.config.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git@github.com:shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"~0.2.6","stylus":"^0.49.3","when":"~3.6.x"},"devDependencies":{"css-loader":"~0.9.1","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","raw-loader":"~0.5.1","should":"~4.6.1","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"626cc1eb297b6cadf49a9fae99cb39ee46311faa","homepage":"https://github.com/shama/stylus-loader","_id":"stylus-loader@1.0.0","_shasum":"6e136899a02ffb301d42311ec308f66d08122371","_from":".","_npmVersion":"2.6.1","_nodeVersion":"1.4.3","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"6e136899a02ffb301d42311ec308f66d08122371","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-1.0.0.tgz"},"directories":{}},"1.1.0":{"name":"stylus-loader","version":"1.1.0","description":"Stylus loader for webpack","main":"index.js","scripts":{"test":"webpack-dev-server --config test/webpack.config.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git@github.com:shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"~0.2.6","stylus":"^0.49.3","when":"~3.6.x"},"devDependencies":{"css-loader":"~0.9.1","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","raw-loader":"~0.5.1","should":"~4.6.1","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"54e9f41de1a660421c3d356787e2f35885f56760","homepage":"https://github.com/shama/stylus-loader","_id":"stylus-loader@1.1.0","_shasum":"72806175f1d6b953400acb53c6690331b6e71487","_from":".","_npmVersion":"2.7.5","_nodeVersion":"1.6.3","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"72806175f1d6b953400acb53c6690331b6e71487","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-1.1.0.tgz"},"directories":{}},"1.1.1":{"name":"stylus-loader","version":"1.1.1","description":"Stylus loader for webpack","main":"index.js","scripts":{"test":"webpack-dev-server --config test/webpack.config.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git@github.com:shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"~0.2.6","stylus":"^0.49.3","when":"~3.6.x"},"devDependencies":{"css-loader":"~0.9.1","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","raw-loader":"~0.5.1","should":"~4.6.1","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"79d0183851dd86330ce04e7e88ecaec6f7b5097b","homepage":"https://github.com/shama/stylus-loader","_id":"stylus-loader@1.1.1","_shasum":"eb6a741dbdc4ff66087bf50476441fcc9ea9962c","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"eb6a741dbdc4ff66087bf50476441fcc9ea9962c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-1.1.1.tgz"},"directories":{}},"1.2.0":{"name":"stylus-loader","version":"1.2.0","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git@github.com:shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","stylus":"^0.49.3","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"1aa73a060ff129cbeb076c3d072cffbe40294dbf","homepage":"https://github.com/shama/stylus-loader","_id":"stylus-loader@1.2.0","_shasum":"1a04a4db0efb688e90dbbb780e8b733c5a03f934","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"1a04a4db0efb688e90dbbb780e8b733c5a03f934","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-1.2.0.tgz"},"directories":{}},"1.2.1":{"name":"stylus-loader","version":"1.2.1","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git@github.com:shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","stylus":"^0.49.3","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"76d415024def3fbf2ab0f575f9854f09f0a4ca88","homepage":"https://github.com/shama/stylus-loader","_id":"stylus-loader@1.2.1","_shasum":"0f34c2b79da0ebb93959a010cec433ad1deac9e1","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"0f34c2b79da0ebb93959a010cec433ad1deac9e1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-1.2.1.tgz"},"directories":{}},"1.3.0":{"name":"stylus-loader","version":"1.3.0","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git@github.com:shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","stylus":"^0.49.3","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"4b03407d03c715ab6cd2820ed36bb48a3c07497c","homepage":"https://github.com/shama/stylus-loader","_id":"stylus-loader@1.3.0","_shasum":"e2d6160f8168355768dc5ab26a640a618e02f34f","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"e2d6160f8168355768dc5ab26a640a618e02f34f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-1.3.0.tgz"},"directories":{}},"1.3.1":{"name":"stylus-loader","version":"1.3.1","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","stylus":"^0.49.3","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"5ad78336745681f3a18096694c643240f1489c13","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@1.3.1","_shasum":"85a31dbfb6db936e51f812cbbac159c943cb4cf5","_from":".","_npmVersion":"3.3.4","_nodeVersion":"4.0.0","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"85a31dbfb6db936e51f812cbbac159c943cb4cf5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-1.3.1.tgz"},"directories":{}},"1.4.0":{"name":"stylus-loader","version":"1.4.0","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git@github.com:shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","stylus":"^0.52.4","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"4f767f577d8825c14cd931ca4752fb5c9ae54c1a","homepage":"https://github.com/shama/stylus-loader","_id":"stylus-loader@1.4.0","_shasum":"0cbc82733903c18d39491c728144fba6dfd3c7c7","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"0cbc82733903c18d39491c728144fba6dfd3c7c7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-1.4.0.tgz"},"directories":{}},"1.4.1":{"name":"stylus-loader","version":"1.4.1","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","stylus":"^0.52.4","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"153f114acf70b01756c7f2830ecbbf0873356e8a","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@1.4.1","_shasum":"2c89f2339a3a76fbecaa44831c6c5a0ee28e6517","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"2c89f2339a3a76fbecaa44831c6c5a0ee28e6517","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-1.4.1.tgz"},"directories":{}},"1.4.2":{"name":"stylus-loader","version":"1.4.2","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","stylus":"^0.52.4","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"1bfb983d78846b129daf1b236af7ad0f67d3a95e","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@1.4.2","_shasum":"c627008c03f21294190b15e27d1956d76b30e58c","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"c627008c03f21294190b15e27d1956d76b30e58c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-1.4.2.tgz"},"directories":{}},"1.4.3":{"name":"stylus-loader","version":"1.4.3","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git@github.com:shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","stylus":"^0.52.4","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"40e8c7b87b33e18dcf519368109710c931d0dc06","homepage":"https://github.com/shama/stylus-loader","_id":"stylus-loader@1.4.3","_shasum":"2baa8f59fcc7c8588952629bba55f27326259763","_from":".","_npmVersion":"2.1.1","_nodeVersion":"4.0.0","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"2baa8f59fcc7c8588952629bba55f27326259763","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-1.4.3.tgz"},"directories":{}},"1.5.0":{"name":"stylus-loader","version":"1.5.0","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git@github.com:shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","stylus":"^0.52.4","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"189e9952af42f55c37693df07c8f141432d3e122","homepage":"https://github.com/shama/stylus-loader","_id":"stylus-loader@1.5.0","_shasum":"e732f908a0e2a3c593898db512def9629cf1f3ff","_from":".","_npmVersion":"2.1.1","_nodeVersion":"4.0.0","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"e732f908a0e2a3c593898db512def9629cf1f3ff","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-1.5.0.tgz"},"directories":{}},"1.5.1":{"name":"stylus-loader","version":"1.5.1","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","stylus":"^0.52.4","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"324c78742d4f9e6e1f15b0c68607594d9f7317bb","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@1.5.1","_shasum":"22f7b7ccbb9faf893646f69d34ab11cfb4ffe792","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.0.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"22f7b7ccbb9faf893646f69d34ab11cfb4ffe792","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-1.5.1.tgz"},"directories":{}},"1.6.0":{"name":"stylus-loader","version":"1.6.0","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","stylus":">=0.52.4","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"d8f2f803df7fe9872089eb9622d7aaaeefd1a88e","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@1.6.0","_shasum":"e52d4d12852be04b5071ae545adfcddec5e3652e","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.1","_npmUser":{"name":"shama","email":"kyle@dontkry.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"e52d4d12852be04b5071ae545adfcddec5e3652e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-1.6.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylus-loader-1.6.0.tgz_1459190380784_0.6412124515045434"},"directories":{}},"2.0.0":{"name":"stylus-loader","version":"2.0.0","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","stylus":">=0.52.4","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"bb872044801006a6953c429d857b7ba458a5eb66","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@2.0.0","_shasum":"5f7c0e9414daa582163000fdb9140b9c99960380","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.0.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"5f7c0e9414daa582163000fdb9140b9c99960380","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-2.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylus-loader-2.0.0.tgz_1459192698892_0.38780480111017823"},"directories":{}},"1.6.1":{"name":"stylus-loader","version":"1.6.1","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","stylus":"^0.52.4","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"keywords":["webpack","loader","stylus"],"gitHead":"2a1e16c7c54fae26104c708058f92476bff6eae4","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@1.6.1","_shasum":"4644d84ec1d96ac7a9988a4b005562b3be4827df","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.0.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"dist":{"shasum":"4644d84ec1d96ac7a9988a4b005562b3be4827df","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-1.6.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylus-loader-1.6.1.tgz_1459192712739_0.6331793069839478"},"directories":{}},"2.0.1":{"name":"stylus-loader","version":"2.0.1","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","stylus":">=0.52.4","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"peerDependencies":{"stylus":">=0.52.4"},"keywords":["webpack","loader","stylus"],"gitHead":"399b66a69344b23ae6332e5412a759b1591f4f73","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@2.0.1","_shasum":"7a90b85157e0fcbc5f02ceb6470e05fc0d0c7d3c","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.0.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"dist":{"shasum":"7a90b85157e0fcbc5f02ceb6470e05fc0d0c7d3c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-2.0.1.tgz"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylus-loader-2.0.1.tgz_1463628107035_0.3037980841472745"},"directories":{}},"2.1.0":{"name":"stylus-loader","version":"2.1.0","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","stylus":">=0.52.4","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"peerDependencies":{"stylus":">=0.52.4"},"keywords":["webpack","loader","stylus"],"gitHead":"51159d21655527af41111ee2633849777daa83ff","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@2.1.0","_shasum":"d681044a4b2e5ce2ed9eebf703b8592bf4a33570","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.0.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"dist":{"shasum":"d681044a4b2e5ce2ed9eebf703b8592bf4a33570","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-2.1.0.tgz"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylus-loader-2.1.0.tgz_1463628610236_0.09322112472727895"},"directories":{}},"2.1.1":{"name":"stylus-loader","version":"2.1.1","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","stylus":">=0.52.4","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"peerDependencies":{"stylus":">=0.52.4"},"keywords":["webpack","loader","stylus"],"gitHead":"b68d9265311f5c360799d27612dd5a17c38950ee","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@2.1.1","_shasum":"a8e2d0e35dd858da918b8f20336a559ecd2574da","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.0.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"dist":{"shasum":"a8e2d0e35dd858da918b8f20336a559ecd2574da","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-2.1.1.tgz"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylus-loader-2.1.1.tgz_1465922937815_0.4873897288925946"},"directories":{}},"2.1.2":{"name":"stylus-loader","version":"2.1.2","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","stylus":">=0.52.4","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"peerDependencies":{"stylus":">=0.52.4"},"keywords":["webpack","loader","stylus"],"gitHead":"eff46a0258aa24fc752e4db0971f7e363d0b31ec","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@2.1.2","_shasum":"4bd811e178b1cc7a0b5847b2692490832bc5cd33","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"dist":{"shasum":"4bd811e178b1cc7a0b5847b2692490832bc5cd33","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-2.1.2.tgz"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylus-loader-2.1.2.tgz_1469820775536_0.9704892097506672"},"directories":{}},"2.2.0":{"name":"stylus-loader","version":"2.2.0","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","stylus":">=0.52.4","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"peerDependencies":{"stylus":">=0.52.4"},"keywords":["webpack","loader","stylus"],"gitHead":"28c0c5f73a1e573d5ebd7d6d8ab80623054a83ab","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@2.2.0","_shasum":"afdf6fda7f7315c78c47c3ec8977c3bc8e174a3c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"dist":{"shasum":"afdf6fda7f7315c78c47c3ec8977c3bc8e174a3c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-2.2.0.tgz"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylus-loader-2.2.0.tgz_1470772793488_0.0307034975849092"},"directories":{}},"2.3.0":{"name":"stylus-loader","version":"2.3.0","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","stylus":">=0.52.4","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"peerDependencies":{"stylus":">=0.52.4"},"keywords":["webpack","loader","stylus"],"gitHead":"d699c25d71301854ef2c9e3db44d5da36e03701f","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@2.3.0","_shasum":"8d742858b8bfd09034e66ced8ac43876d9681733","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"dist":{"shasum":"8d742858b8bfd09034e66ced8ac43876d9681733","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-2.3.0.tgz"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/stylus-loader-2.3.0.tgz_1471403866214_0.6866579491179436"},"directories":{}},"2.3.1":{"name":"stylus-loader","version":"2.3.1","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","stylus":">=0.52.4","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"peerDependencies":{"stylus":">=0.52.4"},"keywords":["webpack","loader","stylus"],"gitHead":"a57949a61c932a9be132de4c9ca89ac5e9be7d5e","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@2.3.1","_shasum":"cf8872c68e9f98d5b4262f672b69cf082377b30e","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"dist":{"shasum":"cf8872c68e9f98d5b4262f672b69cf082377b30e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-2.3.1.tgz"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylus-loader-2.3.1.tgz_1471415619060_0.7560933518689126"},"directories":{}},"2.4.0":{"name":"stylus-loader","version":"2.4.0","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path=test/tmp --output-filename=bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","stylus":">=0.52.4","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"peerDependencies":{"stylus":">=0.52.4"},"keywords":["webpack","loader","stylus"],"gitHead":"9611dcf383fd67c5abfdc99bdaaa6099ffbb25d2","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@2.4.0","_shasum":"2ffbf2854a2071086b88bc338f423ad985b43544","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"dist":{"shasum":"2ffbf2854a2071086b88bc338f423ad985b43544","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-2.4.0.tgz"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/stylus-loader-2.4.0.tgz_1480299634817_0.5058733804617077"},"directories":{}},"2.5.0":{"name":"stylus-loader","version":"2.5.0","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path=test/tmp --output-filename=bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","stylus":">=0.52.4","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"peerDependencies":{"stylus":">=0.52.4"},"keywords":["webpack","loader","stylus"],"gitHead":"fdbdb60bf7b4837a4afa50aef1cddd9bd5309e60","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@2.5.0","_shasum":"4f921afc99f7a3d2f89d45ebcbc145822bf3fe71","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.3.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"dist":{"shasum":"4f921afc99f7a3d2f89d45ebcbc145822bf3fe71","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-2.5.0.tgz"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylus-loader-2.5.0.tgz_1487361837702_0.27640917780809104"},"directories":{}},"2.5.1":{"name":"stylus-loader","version":"2.5.1","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path=test/tmp --output-filename=bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^0.2.9","lodash.clonedeep":"^4.5.0","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"~0.7.1","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","stylus":">=0.52.4","testem":"^0.8.3","webpack":"^1.9.8","webpack-dev-server":"~1.7.0"},"peerDependencies":{"stylus":">=0.52.4"},"keywords":["webpack","loader","stylus"],"gitHead":"68f76a183f9ae1d06970cb3197597cb40354b221","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@2.5.1","_shasum":"d5ad8a7e0958adc12b8581e7bb169b9a61d54216","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.3.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"dist":{"shasum":"d5ad8a7e0958adc12b8581e7bb169b9a61d54216","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-2.5.1.tgz"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/stylus-loader-2.5.1.tgz_1488904121618_0.12431719549931586"},"directories":{}},"3.0.0":{"name":"stylus-loader","version":"3.0.0","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path=test/tmp --output-filename=bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^1.0.2","lodash.clonedeep":"^4.5.0","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"^1.0.0","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","stylus":">=0.52.4","testem":"^0.8.3","webpack":"^2.2.0","webpack-dev-server":"^2.0.0"},"peerDependencies":{"stylus":">=0.52.4"},"keywords":["webpack","loader","stylus"],"gitHead":"2911f8688ad1d27329102c527057ae5fbcacc619","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@3.0.0","_shasum":"9cf56bdbc60bfc9bc79d93326a630b1df44afb63","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.3.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"dist":{"shasum":"9cf56bdbc60bfc9bc79d93326a630b1df44afb63","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-3.0.0.tgz"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/stylus-loader-3.0.0.tgz_1488918528478_0.16692005144432187"},"directories":{}},"3.0.1":{"name":"stylus-loader","version":"3.0.1","description":"Stylus loader for webpack","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"testem ci","test-dev":"testem -l firefox","test-one":"testem ci -l firefox","test-build":"webpack --config test/webpack.config.js --output-path=test/tmp --output-filename=bundle.js"},"author":{"name":"Kyle Robinson Young","email":"kyle@dontkry.com","url":"http://dontkry.com"},"license":"MIT","repository":{"type":"git","url":"git+ssh://git@github.com/shama/stylus-loader.git"},"bugs":{"url":"https://github.com/shama/stylus-loader/issues"},"dependencies":{"loader-utils":"^1.0.2","lodash.clonedeep":"^4.5.0","when":"~3.6.x"},"devDependencies":{"benchmark":"^1.0.0","css-loader":"^0.14.0","mocha":"~2.1.0","mocha-loader":"^1.0.0","nib":"^1.0.4","node-libs-browser":"^0.5.2","raw-loader":"~0.5.1","should":"~4.6.1","style-loader":"^0.12.2","stylus":">=0.52.4","testem":"^0.8.3","webpack":"^2.2.0","webpack-dev-server":"^2.0.0"},"peerDependencies":{"stylus":">=0.52.4"},"keywords":["webpack","loader","stylus"],"gitHead":"a2725db3827f7f41d350a079ffe215005a71b159","homepage":"https://github.com/shama/stylus-loader#readme","_id":"stylus-loader@3.0.1","_shasum":"77f4b34fd030d25b2617bcf5513db5b0730c4089","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.3.0","_npmUser":{"name":"mzgoddard","email":"mzgoddard@gmail.com"},"dist":{"shasum":"77f4b34fd030d25b2617bcf5513db5b0730c4089","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/stylus-loader/-/stylus-loader-3.0.1.tgz"},"maintainers":[{"name":"shama","email":"kyle@dontkry.com"},{"name":"mzgoddard","email":"mzgoddard@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/stylus-loader-3.0.1.tgz_1488918896162_0.6836751601658762"},"directories":{}}},"name":"stylus-loader","time":{"modified":"2017-07-04T16:26:11.361Z","created":"2013-11-04T19:15:36.562Z","0.1.0":"2013-11-05T18:25:35.109Z","0.1.1":"2014-01-22T22:37:48.573Z","0.2.0":"2014-02-13T23:42:29.062Z","0.3.0":"2014-05-13T02:14:54.991Z","0.3.1":"2014-07-03T01:30:38.596Z","0.4.0":"2014-07-21T15:37:31.615Z","0.5.0":"2014-12-08T06:54:15.369Z","0.6.0":"2015-03-02T04:10:33.461Z","1.0.0":"2015-03-14T00:07:35.813Z","1.1.0":"2015-04-08T17:26:25.520Z","1.1.1":"2015-05-10T22:47:28.160Z","1.2.0":"2015-05-27T18:52:30.707Z","1.2.1":"2015-06-16T03:13:14.442Z","1.3.0":"2015-09-08T04:28:37.398Z","1.3.1":"2015-09-27T02:58:21.935Z","1.4.0":"2015-10-13T01:19:23.440Z","1.4.1":"2015-11-02T17:29:22.435Z","1.4.2":"2015-11-03T06:18:10.864Z","1.4.3":"2016-01-06T17:24:18.145Z","1.5.0":"2016-01-19T17:07:50.414Z","1.5.1":"2016-01-25T19:21:14.810Z","1.6.0":"2016-03-28T18:39:41.164Z","2.0.0":"2016-03-28T19:18:19.962Z","1.6.1":"2016-03-28T19:18:33.689Z","2.0.1":"2016-05-19T03:21:49.514Z","2.1.0":"2016-05-19T03:30:13.460Z","2.1.1":"2016-06-14T16:49:00.311Z","2.1.2":"2016-07-29T19:32:58.412Z","2.2.0":"2016-08-09T19:59:56.230Z","2.3.0":"2016-08-17T03:17:48.953Z","2.3.1":"2016-08-17T06:33:40.842Z","2.4.0":"2016-11-28T02:20:35.479Z","2.5.0":"2017-02-17T20:03:59.636Z","2.5.1":"2017-03-07T16:28:43.577Z","3.0.0":"2017-03-07T20:28:49.166Z","3.0.1":"2017-03-07T20:34:56.777Z"},"readmeFilename":"README.md","homepage":"https://github.com/shama/stylus-loader#readme"}