{"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"keywords":["webpack","webpack-config"],"dist-tags":{"latest":"7.0.0"},"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"description":"Helps to load, extend and merge webpack configs","readme":"[![NPM version](http://img.shields.io/npm/v/webpack-config.svg)](https://www.npmjs.org/package/webpack-config)\n[![Travis build status](http://img.shields.io/travis/Fitbit/webpack-config/master.svg)](https://travis-ci.org/Fitbit/webpack-config)\n[![AppVeyor build status](https://img.shields.io/appveyor/ci/mdreizin/webpack-config/master.svg?logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjAgMGMxMSAwIDIwIDkgMjAgMjBzLTkgMjAtMjAgMjBTMCAzMSAwIDIwIDkgMCAyMCAwem00LjkgMjMuOWMyLjItMi44IDEuOS02LjgtLjktOC45LTIuNy0yLjEtNi43LTEuNi05IDEuMi0yLjIgMi44LTEuOSA2LjguOSA4LjkgMi44IDIuMSA2LjggMS42IDktMS4yem0tMTAuNyAxM2MxLjIuNSAzLjggMSA1LjEgMUwyOCAyNS4zYzIuOC00LjIgMi4xLTkuOS0xLjgtMTMtMy41LTIuOC04LjQtMi43LTExLjkgMEwyLjIgMjEuNmMuMyAzLjIgMS4yIDQuOCAxLjIgNC45bDYuOS03LjVjLS41IDMuMy43IDYuNyAzLjUgOC44IDIuNCAxLjkgNS4zIDIuNCA4LjEgMS44bC03LjcgNy4zeiIgZmlsbD0iI0NDQyIgZmlsbC1ydWxlPSJub256ZXJvIi8%2BPC9zdmc%2B)](https://ci.appveyor.com/project/mdreizin/webpack-config/branch/master)\n[![Code Climate GPA](https://img.shields.io/codeclimate/github/Fitbit/webpack-config.svg)](https://codeclimate.com/github/Fitbit/webpack-config)\n[![Code Climate Coverage](https://img.shields.io/codeclimate/coverage/github/Fitbit/webpack-config.svg)](https://codeclimate.com/github/Fitbit/webpack-config)\n[![Dependency Status](https://img.shields.io/david/Fitbit/webpack-config.svg)](https://david-dm.org/Fitbit/webpack-config)\n[![Development Dependency Status](https://img.shields.io/david/dev/Fitbit/webpack-config.svg)](https://david-dm.org/Fitbit/webpack-config#info=devDependencies)\n\n# webpack-config\n> Helps to load, extend and merge webpack configs\n\n## Installation\n\n```bash\nnpm install webpack-config --save-dev\n```\n\nor\n\n```bash\nyarn add webpack-config --dev\n```\n\n## Features\n\n- [x] `#extend()` - Helps to extend config using local file or shareable config\n- [x] `#merge()` - Helps to merge some values into config and overrides existing ones\n- [x] `#defaults()` - Helps to add some values if they are missing\n- [x] Supports `environment` variables under `#extend()`, `#merge()`, `#defaults()` methods\n- [x] Supports `process.env.*` variables in addition to `environment` ones\n- [x] Supports shareable configs via `node`-modules\n\n## Changelog\n\nDetails changes for each release are documented in the [release notes](https://github.com/Fitbit/webpack-config/releases) and also in the [wiki page](https://github.com/Fitbit/webpack-config/wiki/Changelog).\n\n## Shareable Configs\n\nYou can publish your configs to `npm` using `webpack-config-` prefix for package name.\n\nWhen you call `#extend()` method you may omit that prefix:\n\n```javascript\nimport Config from 'webpack-config';\n\nexport default new Config().extend(\n    'mdreizin/base',\n    'mdreizin/css',\n    'mdreizin/html',\n    'webpack-config-mdreizin/json'\n    // etc\n);\n```\n\nAlso I would recommend to add `webpack` and `webpack-config` keywords so other users can easily find your module.\n\n## Usage\n\n`./webpack.config.js`\n\n```javascript\nimport Config, { environment } from 'webpack-config';\n\nenvironment.setAll({\n    env: () => process.env.NODE_ENV\n});\n\n// Also you may use `'conf/webpack.[NODE_ENV].config.js'`\nexport default new Config().extend('conf/webpack.[env].config.js');\n```\n\n`./conf/webpack.base.config.js`\n\n```javascript\nimport ExtractTextPlugin from 'extract-text-webpack-plugin';\nimport Config from 'webpack-config';\n\nconst extractCss = new ExtractTextPlugin('[name].css');\n\nexport default new Config().merge({\n    output: {\n        filename: '[name].js'\n    },\n    resolve: {\n        root: [\n            __dirname\n        ],\n        modulesDirectories: [\n            'node_modules'\n        ]\n    },\n    plugins: [\n        extractCss\n    ],\n    module: {\n        loaders: [{\n            test: /\\.less$/,\n            loader: extractCss.extract('style', [\n                'css',\n                'less'\n            ])\n        }]\n    }\n});\n```\n\n`./conf/webpack.development.config.js`\n\n```javascript\nimport webpack from 'webpack';\nimport Config from 'webpack-config';\n\nexport default new Config().extend('conf/webpack.base.config.js').merge({\n    debug: true,\n    devtool: '#source-map',\n    output: {\n        pathinfo: true\n    },\n    entry: {\n        app: [\n            'src/index.js',\n            'src/index.less'\n        ],\n        vendor: [\n            'lodash'\n        ]\n    },\n    plugins: [\n        new webpack.optimize.CommonsChunkPlugin('vendor', 'vendor.js')\n    ]\n});\n```\n\n`./conf/webpack.production.config.js`\n\n```javascript\nimport webpack from 'webpack';\nimport Config from 'webpack-config';\n\nexport default new Config().extend({\n    'conf/webpack.development.config.js': config => {\n        delete config.debug;\n        delete config.devtool;\n        delete config.output.pathinfo;\n\n        return config;\n    }\n}).merge({\n    plugins: [\n        new webpack.optimize.DedupePlugin(),\n        new webpack.optimize.OccurrenceOrderPlugin(true),\n        new webpack.optimize.UglifyJsPlugin({\n            mangle: true,\n            output: {\n                comments: false\n            },\n            compress: {\n                warnings: false\n            }\n        })\n    ]\n});\n```\n","repository":{"type":"git","url":"git+https://github.com/Fitbit/webpack-config.git"},"users":{"mikestaub":true,"yqrashawn":true,"mdreizin":true,"jbreckel":true},"bugs":{"url":"https://github.com/Fitbit/webpack-config/issues"},"license":"Apache-2.0","versions":{"0.8.1":{"name":"webpack-config","version":"0.8.1","description":"Helps to load, extend and merge webpack configs","main":"index.js","files":["index.js","lib/"],"scripts":{"test":"gulp test"},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"codeclimate-test-reporter":"^0.1.0","del":"^1.2.0","expect.js":"^0.3.1","fs-extra":"^0.23.1","gitdown":"^1.3.0","gulp":"^3.9.0","gulp-concat":"^2.5.2","gulp-eslint":"^1.0.0","gulp-istanbul":"^0.10.0","gulp-jsdoc-to-markdown":"^1.1.1","gulp-mocha":"^2.1.0","gulp-util":"^3.0.4","run-sequence":"^1.1.0"},"directories":{},"dependencies":{"lodash":"^3.10.1"},"gitHead":"df62eb17a12ecdba881c8186c68e454613e17908","_id":"webpack-config@0.8.1","_shasum":"a44c483f60016daa64cc36500cde2d1e2ea33203","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"a44c483f60016daa64cc36500cde2d1e2ea33203","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-0.8.1.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}]},"1.0.1":{"name":"webpack-config","version":"1.0.1","description":"Helps to load, extend and merge webpack configs","main":"index.js","files":["index.js","lib/"],"scripts":{"clean":"rm -rf ./coverage","lint":"eslint --cache ./","pretest":"npm run lint","test":"mocha --full-trace --check-leaks -u exports -R spec","precover":"npm run lint","cover":"istanbul cover _mocha -- --full-trace --check-leaks -u exports -R spec","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","doc":"gulp docs","postpublish":"publish-latest -a package.json README.md docs/API.md","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"codeclimate-test-reporter":"^0.1.0","coding-style":"github:mdreizin/coding-style","eslint":"^1.6.0","expect.js":"^0.3.1","fs-extra":"^0.24.0","gitdown":"1.3.0","gulp":"^3.9.0","gulp-concat":"^2.5.2","gulp-jsdoc-to-markdown":"^1.1.1","istanbul":"^0.4.0","mocha":"^2.3.3","publish-latest":"^1.1.2","run-sequence":"^1.1.0","semantic-release":"^4.3.5","webpack":"^1.12.2"},"dependencies":{"lodash":"^3.10.1"},"gitHead":"2be13eb0f4c8af057df2502e7fb4ea0a91093f90","_id":"webpack-config@1.0.1","_shasum":"95ca00a1a14acb4eb2bc02a156c29fccb644e993","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"95ca00a1a14acb4eb2bc02a156c29fccb644e993","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-1.0.1.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"directories":{}},"1.0.2":{"name":"webpack-config","version":"1.0.2","description":"Helps to load, extend and merge webpack configs","main":"index.js","files":["index.js","lib/"],"scripts":{"clean":"rm -rf ./coverage","lint":"eslint --cache ./","pretest":"npm run lint","test":"mocha --full-trace --check-leaks -u exports -R spec","precover":"npm run lint","cover":"istanbul cover _mocha -- --full-trace --check-leaks -u exports -R spec","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","doc":"gulp docs","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"codeclimate-test-reporter":"^0.1.0","coding-style":"github:mdreizin/coding-style","eslint":"^1.6.0","expect.js":"^0.3.1","fs-extra":"^0.24.0","gitdown":"1.3.0","gulp":"^3.9.0","gulp-concat":"^2.5.2","gulp-jsdoc-to-markdown":"^1.1.1","istanbul":"^0.4.0","mocha":"^2.3.3","publish-latest":"^1.1.2","run-sequence":"^1.1.0","semantic-release":"^4.3.5","webpack":"^1.12.2"},"dependencies":{"lodash":"^3.10.1"},"gitHead":"2be13eb0f4c8af057df2502e7fb4ea0a91093f90","_id":"webpack-config@1.0.2","_shasum":"4224322dacfe484a6a10026bd9f88b6c138badb2","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"4224322dacfe484a6a10026bd9f88b6c138badb2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-1.0.2.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"directories":{}},"1.1.0":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"index.js","files":["index.js","lib/"],"scripts":{"clean":"rm -rf ./coverage","lint":"eslint --cache ./","pretest":"npm run lint","test":"mocha --full-trace --check-leaks -u exports -R spec","precover":"npm run lint","cover":"istanbul cover _mocha -- --full-trace --check-leaks -u exports -R spec","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","doc":"gulp docs","postpublish":"publish-latest -a package.json README.md docs/API.md","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"codeclimate-test-reporter":"^0.1.0","coding-style":"git+https://github.com/mdreizin/coding-style","eslint":"^1.6.0","expect.js":"^0.3.1","fs-extra":"^0.24.0","gitdown":"1.3.0","gulp":"^3.9.0","gulp-concat":"^2.5.2","gulp-jsdoc-to-markdown":"^1.1.1","istanbul":"^0.4.0","mocha":"^2.3.3","publish-latest":"^1.1.2","run-sequence":"^1.1.0","semantic-release":"^4.3.5","webpack":"^1.12.2"},"dependencies":{"lodash":"^3.10.1"},"version":"1.1.0","gitHead":"9f22c72fdd4b7bd6f2ff4a4b3e43db55e74a4065","_id":"webpack-config@1.1.0","_shasum":"ca2f3233d176c4bbe3b11f2f0687341b4c089ade","_from":".","_npmVersion":"2.3.0","_nodeVersion":"0.11.16","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"ca2f3233d176c4bbe3b11f2f0687341b4c089ade","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-1.1.0.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"directories":{}},"1.1.1":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"index.js","files":["index.js","lib/"],"scripts":{"clean":"rm -rf ./coverage","lint":"eslint --cache ./","pretest":"npm run lint","test":"mocha --full-trace --check-leaks -u exports -R spec","precover":"npm run lint","cover":"istanbul cover _mocha -- --full-trace --check-leaks -u exports -R spec","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","doc":"gulp docs","postpublish":"publish-latest -a 'package.json README.md docs/API.md'","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"codeclimate-test-reporter":"^0.1.0","coding-style":"github:mdreizin/coding-style","eslint":"^1.6.0","expect.js":"^0.3.1","fs-extra":"^0.24.0","gitdown":"1.3.0","gulp":"^3.9.0","gulp-concat":"^2.5.2","gulp-jsdoc-to-markdown":"^1.1.1","istanbul":"^0.4.0","mocha":"^2.3.3","publish-latest":"^1.1.2","run-sequence":"^1.1.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.3","webpack":"^1.12.2"},"dependencies":{"lodash":"^3.10.1"},"version":"1.1.1","gitHead":"c7d041af0a88765343e58a741abef499a66df47a","_id":"webpack-config@1.1.1","_shasum":"b7fb6298286eb058f6e113c4fed0ae246ff95e7f","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.2","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"b7fb6298286eb058f6e113c4fed0ae246ff95e7f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-1.1.1.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"directories":{}},"1.2.0":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"index.js","files":["index.js","lib/"],"scripts":{"clean":"rm -rf ./coverage","lint":"eslint --cache ./","pretest":"npm run lint","test":"mocha --full-trace --check-leaks -u exports -R spec","precover":"npm run lint","cover":"istanbul cover _mocha -- --full-trace --check-leaks -u exports -R spec","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","doc":"gulp docs","postpublish":"publish-latest -a 'package.json README.md docs/API.md'","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"codeclimate-test-reporter":"^0.1.0","coding-style":"github:mdreizin/coding-style","eslint":"^1.6.0","expect.js":"^0.3.1","fs-extra":"^0.26.2","gitdown":"1.3.0","gulp":"^3.9.0","gulp-concat":"^2.5.2","gulp-jsdoc-to-markdown":"^1.1.1","istanbul":"^0.4.0","mocha":"^2.3.3","publish-latest":"^1.1.2","run-sequence":"^1.1.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.3","webpack":"^1.12.2"},"dependencies":{"lodash":"^3.10.1"},"version":"1.2.0","gitHead":"64f281bbcd48100bc43ee58c74fd82c14d9d75ce","_id":"webpack-config@1.2.0","_shasum":"3e57abfecd24d2671639f0fd8f0f4d269b3f344c","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.2","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"3e57abfecd24d2671639f0fd8f0f4d269b3f344c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-1.2.0.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"directories":{}},"2.0.0":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"index.js","files":["index.js","lib/"],"scripts":{"clean":"rm -rf ./coverage","lint":"eslint --cache ./","pretest":"npm run lint","test":"mocha --full-trace --check-leaks -u exports -R spec","precover":"npm run lint","cover":"istanbul cover _mocha -- --full-trace --check-leaks -u exports -R spec","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","doc":"gulp docs","postpublish":"publish-latest -a 'package.json README.md docs/API.md'","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"codeclimate-test-reporter":"^0.1.0","coding-style":"github:mdreizin/coding-style","eslint":"^1.6.0","expect.js":"^0.3.1","fs-extra":"^0.26.2","gitdown":"1.3.0","gulp":"^3.9.0","gulp-concat":"^2.5.2","gulp-jsdoc-to-markdown":"^1.1.1","istanbul":"^0.4.0","mocha":"^2.3.3","publish-latest":"^1.1.2","run-sequence":"^1.1.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.3","webpack":"^1.12.2"},"dependencies":{"lodash":"^3.10.1"},"version":"2.0.0","gitHead":"c1bf0e0fbb7a5fb2e452cd095a94953ca195dbf7","_id":"webpack-config@2.0.0","_shasum":"932a7caf401c468ff3db90dcacc495d5562e70d1","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.2","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"932a7caf401c468ff3db90dcacc495d5562e70d1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-2.0.0.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"directories":{}},"2.1.0":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"index.js","files":["index.js","lib/"],"scripts":{"clean":"rm -rf ./coverage","lint":"eslint --cache ./","pretest":"npm run lint","test":"mocha --full-trace --check-leaks -u exports -R spec","precover":"npm run lint","cover":"istanbul cover _mocha -- --full-trace --check-leaks -u exports -R spec","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","doc":"gulp docs","postpublish":"publish-latest -a 'package.json README.md docs/API.md'","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"codeclimate-test-reporter":"^0.1.0","coding-style":"github:mdreizin/coding-style","eslint":"^1.6.0","expect.js":"^0.3.1","fs-extra":"^0.26.2","gitdown":"1.3.0","gulp":"^3.9.0","gulp-concat":"^2.5.2","gulp-jsdoc-to-markdown":"^1.1.1","istanbul":"^0.4.0","mocha":"^2.3.3","publish-latest":"^1.1.2","run-sequence":"^1.1.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.3","webpack":"^1.12.2"},"dependencies":{"lodash":"^3.10.1"},"version":"2.1.0","gitHead":"f7c5e6d160572dad1516626033b3e4790c74d4f6","_id":"webpack-config@2.1.0","_shasum":"a11f51b06ec41a7bddab8bc8409da00762ee8ae8","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"a11f51b06ec41a7bddab8bc8409da00762ee8ae8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-2.1.0.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"directories":{}},"2.2.0":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"index.js","files":["index.js","lib/"],"scripts":{"clean":"rm -rf ./coverage","lint":"eslint --cache ./","pretest":"npm run lint","test":"mocha --full-trace --check-leaks -u exports -R spec","precover":"npm run lint","cover":"istanbul cover _mocha -- --full-trace --check-leaks -u exports -R spec","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","doc":"gulp docs","postpublish":"publish-latest -a 'package.json README.md docs/API.md'","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"codeclimate-test-reporter":"^0.1.0","coding-style":"github:mdreizin/coding-style","eslint":"^1.6.0","expect.js":"^0.3.1","fs-extra":"^0.26.2","gitdown":"1.3.0","gulp":"^3.9.0","gulp-concat":"^2.5.2","gulp-jsdoc-to-markdown":"^1.1.1","istanbul":"^0.4.0","mocha":"^2.3.3","publish-latest":"^1.1.2","run-sequence":"^1.1.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.3","webpack":"^1.12.2"},"dependencies":{"lodash":"^3.10.1"},"version":"2.2.0","gitHead":"d1e5080e3de54249567b64921037fa3436bf7d5d","_id":"webpack-config@2.2.0","_shasum":"1b32e8a41823b008917495b7ae73d2f99a500c9e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"1b32e8a41823b008917495b7ae73d2f99a500c9e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-2.2.0.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"directories":{}},"2.3.0":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"index.js","files":["index.js","lib/"],"scripts":{"clean":"rm -rf ./coverage","lint":"eslint --cache ./","pretest":"npm run lint","test":"mocha --full-trace --check-leaks -u exports -R spec","precover":"npm run lint","cover":"istanbul cover _mocha -- --full-trace --check-leaks -u exports -R spec","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","doc":"gulp docs","postpublish":"publish-latest -a 'package.json README.md docs/API.md'","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"codeclimate-test-reporter":"^0.1.0","coding-style":"github:mdreizin/coding-style","eslint":"^1.6.0","expect.js":"^0.3.1","fs-extra":"^0.26.2","gitdown":"1.3.0","gulp":"^3.9.0","gulp-concat":"^2.5.2","gulp-jsdoc-to-markdown":"^1.1.1","istanbul":"^0.4.0","mocha":"^2.3.3","publish-latest":"^1.1.2","run-sequence":"^1.1.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.3","webpack":"^1.12.2"},"dependencies":{"lodash":"^3.10.1"},"version":"2.3.0","gitHead":"cca30568dbb1552f1b27cd317ba8d3f0e9ca737c","_id":"webpack-config@2.3.0","_shasum":"d616ba12cc873df75a277d215e78fdddd2db02fe","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"d616ba12cc873df75a277d215e78fdddd2db02fe","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-2.3.0.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"directories":{}},"3.0.0":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"index.js","files":["index.js","lib/"],"scripts":{"clean":"rm -rf ./coverage","lint":"eslint --cache ./","pretest":"npm run lint","test":"node ./jasmine.js","precover":"npm run lint","cover":"istanbul cover jasmine JASMINE_CONFIG_PATH=./jasmine.json","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","docs":"gulp docs","postpublish":"publish-latest -a 'package.json README.md docs/API.md'","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"codeclimate-test-reporter":"^0.1.0","coding-style":"github:mdreizin/coding-style","eslint":"^1.6.0","expect.js":"^0.3.1","fs-extra":"^0.26.2","gitdown":"1.3.0","gulp":"^3.9.0","gulp-concat":"^2.5.2","gulp-jsdoc-to-markdown":"^1.1.1","istanbul":"^0.4.0","jasmine":"^2.3.2","jasmine-spec-reporter":"^2.4.0","publish-latest":"^1.1.2","run-sequence":"^1.1.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.3","webpack":"^1.12.2"},"dependencies":{"lodash":"^3.10.1"},"version":"3.0.0","gitHead":"27f3f2b356b008cc8fdd7a4bcf1bb95c6562948c","_id":"webpack-config@3.0.0","_shasum":"c72956a78c1f475336542f2870dcfce2408e82a8","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"c72956a78c1f475336542f2870dcfce2408e82a8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-3.0.0.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"directories":{}},"3.1.0":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"index.js","files":["index.js","lib/"],"scripts":{"clean":"rm -rf ./coverage","lint":"eslint --cache ./","pretest":"npm run lint","test":"node ./jasmine.js","precover":"npm run lint","cover":"istanbul cover jasmine JASMINE_CONFIG_PATH=./jasmine.json","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","docs":"gulp docs","postpublish":"publish-latest -a 'package.json README.md docs/API.md'","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"codeclimate-test-reporter":"^0.1.0","coding-style":"github:mdreizin/coding-style","eslint":"^1.6.0","expect.js":"^0.3.1","fs-extra":"^0.26.2","gitdown":"1.3.0","gulp":"^3.9.0","gulp-concat":"^2.5.2","gulp-jsdoc-to-markdown":"^1.1.1","istanbul":"^0.4.0","jasmine":"^2.3.2","jasmine-spec-reporter":"^2.4.0","publish-latest":"^1.1.2","run-sequence":"^1.1.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.3","webpack":"^1.12.2"},"dependencies":{"lodash":"^3.10.1"},"version":"3.1.0","gitHead":"e4cfb8a1479640315d0019827e0c0344bb4f42d9","_id":"webpack-config@3.1.0","_shasum":"4ce3c26b506153d095e02b1ab3cada61171fdd0c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"4ce3c26b506153d095e02b1ab3cada61171fdd0c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-3.1.0.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"directories":{}},"4.0.0":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"index.js","files":["index.js","lib/"],"scripts":{"clean":"rm -rf ./coverage","lint":"eslint --cache ./","pretest":"npm run lint","test":"node ./jasmine.js","precover":"npm run lint","cover":"istanbul cover jasmine JASMINE_CONFIG_PATH=./jasmine.json","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","docs":"gulp docs","postpublish":"publish-latest -a 'package.json README.md docs/API.md'","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"codeclimate-test-reporter":"^0.3.1","coding-style":"github:mdreizin/coding-style","eslint":"^2.1.0","fs-extra":"^0.26.5","gitdown":"1.3.0","gulp":"^3.9.1","gulp-concat":"^2.6.0","gulp-jsdoc-to-markdown":"^1.2.1","istanbul":"^0.4.2","jasmine":"^2.4.1","jasmine-spec-reporter":"^2.4.0","publish-latest":"^1.1.2","run-sequence":"^1.1.5","semantic-release":"^4.3.5","travis-after-all":"^1.4.4","webpack":"^1.12.13"},"dependencies":{"lodash":"^4.5.0"},"version":"4.0.0","gitHead":"db031539e1770e77d2296091c1cd244f890e2afe","_id":"webpack-config@4.0.0","_shasum":"93bd5fd9564d84d238040e9ddc6fde05d3b62619","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"93bd5fd9564d84d238040e9ddc6fde05d3b62619","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-4.0.0.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/webpack-config-4.0.0.tgz_1456130783582_0.16386837977916002"},"directories":{}},"5.0.0":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"dist/index.js","files":["dist/","src/"],"scripts":{"clean":"rm -rf ./dist && rm -rf ./coverage && rm -rf ./docs","lint":"eslint ./ --cache","test":"babel-node ./jasmine.js","build":"babel ./src --out-dir ./dist --source-maps","cover":"babel-node ./node_modules/.bin/babel-istanbul cover jasmine JASMINE_CONFIG_PATH=./jasmine.json","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","gitdown":"gitdown ./.gitdown/README.md --output-file ./README.md","jsdoc":"jsdoc ./src -c ./jsdoc.json","gh-pages":"gh-pages -r https://${GH_TOKEN}@github.com/mdreizin/webpack-config.git -d docs","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"babel-cli":"^6.6.5","babel-eslint":"^6.0.2","babel-istanbul":"^0.7.0","babel-plugin-transform-builtin-extend":"^1.1.0","babel-plugin-transform-runtime":"^6.6.0","babel-preset-es2015":"^6.6.0","codeclimate-test-reporter":"^0.3.1","eslint":"^2.6.0","eslint-config-mdreizin":"^1.1.1","eslint-plugin-babel":"^3.1.0","gh-pages":"^0.11.0","gitdown":"^2.4.2","jasmine":"^2.4.1","jasmine-spec-reporter":"^2.4.0","jsdoc":"^3.4.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.4","webpack":"^1.12.13"},"dependencies":{"babel-runtime":"^6.6.1","glob":"^7.0.3","glob2base":"0.0.12","lodash":"^4.5.0","recursive-iterator":"^2.0.0"},"version":"5.0.0","gitHead":"ff8a63ba1bb4a0cda73a24e931ace41f9ba4e790","_id":"webpack-config@5.0.0","_shasum":"470de6e5860d601b67a7db96096cf58bf17975e8","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"470de6e5860d601b67a7db96096cf58bf17975e8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-5.0.0.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-config-5.0.0.tgz_1464349405154_0.3190300038550049"},"directories":{}},"5.0.1":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"dist/index.js","files":["dist/","src/"],"scripts":{"clean":"rm -rf ./dist && rm -rf ./coverage && rm -rf ./docs","lint":"eslint ./ --cache","test":"babel-node ./jasmine.js","build":"babel ./src --out-dir ./dist --source-maps","cover":"babel-node ./node_modules/.bin/babel-istanbul cover jasmine JASMINE_CONFIG_PATH=./jasmine.json","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","gitdown":"gitdown ./.gitdown/README.md --output-file ./README.md","jsdoc":"jsdoc ./src -c ./jsdoc.json","gh-pages":"gh-pages -r https://${GH_TOKEN}@github.com/mdreizin/webpack-config.git -d docs","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"babel-cli":"^6.6.5","babel-eslint":"^6.0.2","babel-istanbul":"^0.7.0","babel-plugin-transform-builtin-extend":"^1.1.0","babel-plugin-transform-runtime":"^6.6.0","babel-preset-es2015":"^6.6.0","codeclimate-test-reporter":"^0.3.1","eslint":"^2.6.0","eslint-config-mdreizin":"^1.1.1","eslint-plugin-babel":"^3.1.0","gh-pages":"^0.11.0","gitdown":"^2.4.2","jasmine":"^2.4.1","jasmine-spec-reporter":"^2.4.0","jsdoc":"^3.4.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.4","webpack":"^1.12.13"},"dependencies":{"babel-runtime":"^6.6.1","glob":"^7.0.3","glob2base":"0.0.12","lodash":"^4.5.0","recursive-iterator":"^2.0.0"},"version":"5.0.1","gitHead":"3090bc99273ba3d0040abb78567cd35a234106ad","_id":"webpack-config@5.0.1","_shasum":"1f416c255bf8af8ae7e3a4ef245fff11e0a11827","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"1f416c255bf8af8ae7e3a4ef245fff11e0a11827","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-5.0.1.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/webpack-config-5.0.1.tgz_1464353037910_0.13392970175482333"},"directories":{}},"5.1.0":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"dist/index.js","files":["dist/","src/"],"scripts":{"clean":"rm -rf ./dist && rm -rf ./coverage && rm -rf ./docs","eslint":"eslint ./ --cache","test":"babel-node ./jasmine.js","build":"babel ./src --out-dir ./dist --source-maps","cover":"babel-node ./node_modules/.bin/babel-istanbul cover jasmine JASMINE_CONFIG_PATH=./jasmine.json","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","gitdown":"gitdown ./.gitdown/README.md --output-file ./README.md","jsdoc":"jsdoc ./src -c ./jsdoc.json","gh-pages":"gh-pages -r https://${GH_TOKEN}@github.com/mdreizin/webpack-config.git -d docs","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"babel-cli":"^6.9.0","babel-eslint":"^6.0.4","babel-istanbul":"^0.8.0","babel-plugin-transform-builtin-extend":"^1.1.0","babel-plugin-transform-runtime":"^6.9.0","babel-preset-es2015":"^6.9.0","codeclimate-test-reporter":"^0.3.1","eslint":"^2.10.2","eslint-config-mdreizin":"^1.1.1","eslint-plugin-babel":"^3.2.0","gh-pages":"^0.11.0","gitdown":"^2.4.8","jasmine":"^2.4.1","jasmine-spec-reporter":"^2.4.0","jsdoc":"^3.4.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.4"},"dependencies":{"babel-runtime":"^6.9.0","glob":"^7.0.3","glob2base":"0.0.12","lodash":"^4.13.1","recursive-iterator":"^2.0.0"},"version":"5.1.0","gitHead":"bf87488a0fbbe5281b296757407a4bc1df28cdca","_id":"webpack-config@5.1.0","_shasum":"70035e3833ac53fb609d0a4d821fc7d3f9860eb2","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"70035e3833ac53fb609d0a4d821fc7d3f9860eb2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-5.1.0.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-config-5.1.0.tgz_1465551941889_0.6819908649194986"},"directories":{}},"5.2.0":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"dist/index.js","files":["dist/","src/"],"scripts":{"clean":"rm -rf ./dist && rm -rf ./coverage && rm -rf ./docs","eslint":"eslint ./ --cache","test":"babel-node ./jasmine.js","build":"babel ./src --out-dir ./dist --source-maps","cover":"babel-node ./node_modules/.bin/babel-istanbul cover jasmine JASMINE_CONFIG_PATH=./jasmine.json","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","gitdown":"gitdown ./.gitdown/README.md --output-file ./README.md","jsdoc":"jsdoc ./src -c ./jsdoc.json","gh-pages":"gh-pages -r https://${GH_TOKEN}@github.com/mdreizin/webpack-config.git -d docs","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"babel-cli":"^6.9.0","babel-eslint":"^6.0.4","babel-istanbul":"^0.8.0","babel-plugin-transform-builtin-extend":"^1.1.0","babel-plugin-transform-runtime":"^6.9.0","babel-preset-es2015":"^6.9.0","codeclimate-test-reporter":"^0.3.1","eslint":"^2.10.2","eslint-config-mdreizin":"^1.1.1","eslint-plugin-babel":"^3.2.0","gh-pages":"^0.11.0","gitdown":"^2.4.8","jasmine":"^2.4.1","jasmine-spec-reporter":"^2.4.0","jsdoc":"^3.4.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.4"},"dependencies":{"babel-runtime":"^6.9.0","glob":"^7.0.3","glob2base":"0.0.12","lodash":"^4.13.1","recursive-iterator":"^2.0.0"},"version":"5.2.0","gitHead":"6adc77b911b882debc375f480fa0a7694fc6910f","_id":"webpack-config@5.2.0","_shasum":"80f07e296ea8618638fa380fd6edc8817ffbf412","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"80f07e296ea8618638fa380fd6edc8817ffbf412","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-5.2.0.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/webpack-config-5.2.0.tgz_1467287584548_0.5122239859774709"},"directories":{}},"5.2.1":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"dist/index.js","files":["dist/","src/"],"scripts":{"clean":"rm -rf ./dist && rm -rf ./coverage && rm -rf ./docs","eslint":"eslint ./ --cache","build":"babel src --out-dir dist --source-maps","test":"babel-node jasmine.js","cover":"NODE_ENV=test nyc --reporter=lcov jasmine JASMINE_CONFIG_PATH=jasmine.json","postcover":"nyc report","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","gitdown":"gitdown ./.gitdown/README.md --output-file ./README.md","jsdoc":"jsdoc ./src -c ./jsdoc.json","gh-pages":"gh-pages -r https://${GH_TOKEN}@github.com/mdreizin/webpack-config.git -d docs","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"nyc":{"include":["src/*.js"],"require":["babel-register"],"sourceMap":false,"instrument":false},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"babel-cli":"^6.9.0","babel-eslint":"^6.0.4","babel-plugin-istanbul":"^1.0.2","babel-plugin-transform-builtin-extend":"^1.1.0","babel-plugin-transform-runtime":"^6.9.0","babel-preset-es2015":"^6.9.0","babel-register":"^6.9.0","codeclimate-test-reporter":"^0.3.1","eslint":"^3.0.0","eslint-config-mdreizin":"^1.1.1","eslint-plugin-babel":"^3.2.0","gh-pages":"^0.11.0","gitdown":"^2.4.8","jasmine":"^2.4.1","jasmine-spec-reporter":"^2.4.0","jsdoc":"^3.4.0","nyc":"^6.6.1","semantic-release":"^4.3.5","travis-after-all":"^1.4.4"},"dependencies":{"babel-runtime":"^6.9.0","glob":"^7.0.3","glob2base":"0.0.12","lodash":"^4.13.1","recursive-iterator":"^2.0.0"},"version":"5.2.1","gitHead":"5e59bf33b94fdf83318480d7ea09cbae5e687255","_id":"webpack-config@5.2.1","_shasum":"7249c6f0e1a1b11f6160b47173ffdcbdf4519c6d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.0","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"7249c6f0e1a1b11f6160b47173ffdcbdf4519c6d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-5.2.1.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/webpack-config-5.2.1.tgz_1467981462914_0.33597130910493433"},"directories":{}},"6.0.0":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"dist/index.js","files":["dist/","src/"],"scripts":{"clean":"rm -rf ./dist && rm -rf ./coverage && rm -rf ./docs","eslint":"eslint ./ --cache","build":"babel src --out-dir dist --source-maps","test":"babel-node jasmine.js","cover":"NODE_ENV=test nyc --reporter=lcov jasmine JASMINE_CONFIG_PATH=jasmine.json","postcover":"nyc report","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","gitdown":"gitdown ./.gitdown/README.md --output-file ./README.md","jsdoc":"jsdoc ./src -c ./jsdoc.json","gh-pages":"gh-pages -r https://${GH_TOKEN}@github.com/mdreizin/webpack-config.git -d docs","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"nyc":{"include":["src/*.js"],"require":["babel-register"],"sourceMap":false,"instrument":false},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"babel-cli":"^6.9.0","babel-eslint":"^6.1.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^1.0.3","babel-plugin-transform-builtin-extend":"^1.1.0","babel-plugin-transform-runtime":"^6.9.0","babel-preset-es2015":"^6.9.0","babel-register":"^6.9.0","codeclimate-test-reporter":"^0.3.1","eslint":"^3.1.1","eslint-config-mdreizin":"^1.1.1","eslint-plugin-babel":"^3.2.0","gh-pages":"^0.11.0","gitdown":"^2.4.8","jasmine":"^2.4.1","jasmine-spec-reporter":"^2.4.0","jsdoc":"^3.4.0","nyc":"^7.0.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.4"},"dependencies":{"babel-runtime":"^6.9.0","constitute":"^1.6.2","glob":"^7.0.3","glob2base":"0.0.12","lodash":"^4.13.1","recursive-iterator":"^2.0.0"},"version":"6.0.0","gitHead":"348c33f6c3246ae3286143636ba8ba57d6218d91","_id":"webpack-config@6.0.0","_shasum":"077d203b10df2b804bd0124bdd5e2de6e4bc91eb","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"077d203b10df2b804bd0124bdd5e2de6e4bc91eb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-6.0.0.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-config-6.0.0.tgz_1470316612648_0.933115768712014"},"directories":{}},"6.1.0":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"dist/index.js","files":["dist/","src/"],"scripts":{"clean":"rm -rf ./dist && rm -rf ./coverage && rm -rf ./docs","eslint":"eslint ./ --cache","build":"babel src --out-dir dist --source-maps","test":"babel-node jasmine.js","cover":"NODE_ENV=test nyc --reporter=lcov jasmine JASMINE_CONFIG_PATH=jasmine.json","postcover":"nyc report","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","gitdown":"gitdown ./.gitdown/README.md --output-file ./README.md","jsdoc":"jsdoc ./src -c ./jsdoc.json","gh-pages":"gh-pages -r https://${GH_TOKEN}@github.com/mdreizin/webpack-config.git -d docs","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"nyc":{"include":["src/*.js"],"require":["babel-register"],"sourceMap":false,"instrument":false},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"babel-cli":"^6.9.0","babel-eslint":"^6.1.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^1.0.3","babel-plugin-transform-builtin-extend":"^1.1.0","babel-plugin-transform-runtime":"^6.9.0","babel-preset-es2015":"^6.9.0","babel-register":"^6.9.0","codeclimate-test-reporter":"^0.3.1","eslint":"^3.1.1","eslint-config-mdreizin":"^1.1.1","eslint-plugin-babel":"^3.2.0","gh-pages":"^0.11.0","gitdown":"^2.4.8","jasmine":"^2.4.1","jasmine-spec-reporter":"^2.4.0","jsdoc":"^3.4.0","nyc":"^7.0.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.4"},"dependencies":{"babel-runtime":"^6.9.0","constitute":"^1.6.2","glob":"^7.0.3","glob2base":"0.0.12","lodash":"^4.13.1","recursive-iterator":"^2.0.0"},"version":"6.1.0","gitHead":"cd1ded58dd9dfb118087516f05b191c1dd7ed4a3","_id":"webpack-config@6.1.0","_shasum":"207c830cb8041d4376066af527376200ac8c4999","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"207c830cb8041d4376066af527376200ac8c4999","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-6.1.0.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/webpack-config-6.1.0.tgz_1470643511085_0.3056549441535026"},"directories":{}},"6.1.1":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"dist/index.js","files":["dist/","src/"],"scripts":{"clean":"rm -rf ./dist && rm -rf ./coverage && rm -rf ./docs","eslint":"eslint ./ --cache","build":"babel src --out-dir dist --source-maps","test":"babel-node jasmine.js","cover":"NODE_ENV=test nyc --reporter=lcov jasmine JASMINE_CONFIG_PATH=jasmine.json","postcover":"nyc report","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","gitdown":"gitdown ./.gitdown/README.md --output-file ./README.md","jsdoc":"jsdoc ./src -c ./jsdoc.json","gh-pages":"gh-pages -r https://${GH_TOKEN}@github.com/mdreizin/webpack-config.git -d docs","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"nyc":{"include":["src/*.js"],"require":["babel-register"],"sourceMap":false,"instrument":false},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack-config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"babel-cli":"^6.9.0","babel-eslint":"^6.1.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^1.0.3","babel-plugin-transform-builtin-extend":"^1.1.0","babel-plugin-transform-runtime":"^6.9.0","babel-preset-es2015":"^6.9.0","babel-register":"^6.9.0","codeclimate-test-reporter":"^0.3.1","eslint":"^3.1.1","eslint-config-mdreizin":"^1.1.1","eslint-plugin-babel":"^3.2.0","gh-pages":"^0.11.0","gitdown":"^2.4.8","jasmine":"^2.4.1","jasmine-spec-reporter":"^2.4.0","jsdoc":"^3.4.0","nyc":"^7.0.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.4"},"dependencies":{"babel-runtime":"^6.9.0","constitute":"^1.6.2","glob":"^7.0.3","glob2base":"0.0.12","lodash":"^4.13.1","recursive-iterator":"^2.0.0"},"version":"6.1.1","gitHead":"db5642d2bfd75e5dc5fffe5da03ed7a05a565324","_id":"webpack-config@6.1.1","_shasum":"f10592c6ac98627f799bc81f455db56af7ce1d19","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"f10592c6ac98627f799bc81f455db56af7ce1d19","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-6.1.1.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/webpack-config-6.1.1.tgz_1470657371318_0.6300153932534158"},"directories":{}},"6.1.2":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"dist/index.js","files":["dist/","src/"],"scripts":{"clean":"rm -rf ./dist && rm -rf ./coverage && rm -rf ./docs","eslint":"eslint ./ --cache","build":"babel src --out-dir dist --source-maps","test":"babel-node jasmine.js","cover":"NODE_ENV=test nyc --reporter=lcov jasmine JASMINE_CONFIG_PATH=jasmine.json","postcover":"nyc report","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","gitdown":"gitdown ./.gitdown/README.md --output-file ./README.md","jsdoc":"jsdoc ./src -c ./jsdoc.json","gh-pages":"gh-pages -r https://${GH_TOKEN}@github.com/mdreizin/webpack-config.git -d docs","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"nyc":{"include":["src/*.js"],"require":["babel-register"],"sourceMap":false,"instrument":false},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack-config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"babel-cli":"^6.9.0","babel-eslint":"^6.1.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^1.0.3","babel-plugin-transform-builtin-extend":"^1.1.0","babel-plugin-transform-runtime":"^6.9.0","babel-preset-es2015":"^6.9.0","babel-register":"^6.9.0","codeclimate-test-reporter":"^0.3.1","eslint":"^3.1.1","eslint-config-mdreizin":"^1.1.1","eslint-plugin-babel":"^3.2.0","gh-pages":"^0.11.0","gitdown":"^2.4.8","jasmine":"^2.4.1","jasmine-spec-reporter":"^2.4.0","jsdoc":"^3.4.0","nyc":"^7.0.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.4"},"dependencies":{"babel-runtime":"^6.9.0","constitute":"^1.6.2","glob":"^7.0.3","glob2base":"0.0.12","lodash":"^4.13.1","recursive-iterator":"^2.0.0"},"version":"6.1.2","gitHead":"2fc6a1ed476fcb62f5d114eb796a35a66f6dd1c7","_id":"webpack-config@6.1.2","_shasum":"2d4f9f164d90256341bbddcb1364460d4de7aa8b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"2d4f9f164d90256341bbddcb1364460d4de7aa8b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-6.1.2.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/webpack-config-6.1.2.tgz_1470673709868_0.9950427829753608"},"directories":{}},"6.1.3":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"dist/index.js","files":["dist/","src/"],"scripts":{"clean":"rm -rf ./dist && rm -rf ./coverage && rm -rf ./docs","eslint":"eslint ./ --cache","build":"babel src --out-dir dist --source-maps","test":"babel-node jasmine.js","cover":"NODE_ENV=test nyc --reporter=lcov jasmine JASMINE_CONFIG_PATH=jasmine.json","postcover":"nyc report","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","gitdown":"gitdown ./.gitdown/README.md --output-file ./README.md","jsdoc":"jsdoc ./src -c ./jsdoc.json","gh-pages":"gh-pages -r https://${GH_TOKEN}@github.com/mdreizin/webpack-config.git -d docs","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"nyc":{"include":["src/*.js"],"require":["babel-register"],"sourceMap":false,"instrument":false},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack-config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"babel-cli":"^6.14.0","babel-eslint":"^6.1.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^2.0.0","babel-plugin-transform-builtin-extend":"^1.1.0","babel-plugin-transform-runtime":"^6.9.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.14.0","codeclimate-test-reporter":"^0.3.1","eslint":"^3.3.1","eslint-config-mdreizin":"^1.1.1","eslint-plugin-babel":"^3.2.0","gh-pages":"^0.11.0","gitdown":"^2.4.8","jasmine":"^2.4.1","jasmine-spec-reporter":"^2.4.0","jsdoc":"^3.4.0","nyc":"^8.1.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.4"},"dependencies":{"babel-runtime":"^6.9.0","constitute":"^1.6.2","glob":"^7.0.6","glob2base":"0.0.12","lodash":"^4.13.1","recursive-iterator":"^2.0.0"},"version":"6.1.3","gitHead":"2a8d6eab8e3cb3d3816b97c60ce9d3dc9fbe7327","_id":"webpack-config@6.1.3","_shasum":"785303ce7d86a199ff2174420548850a08931e14","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"785303ce7d86a199ff2174420548850a08931e14","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-6.1.3.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/webpack-config-6.1.3.tgz_1474367496839_0.09185775043442845"},"directories":{}},"6.2.0":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"dist/index.js","files":["dist/","src/"],"scripts":{"clean":"rm -rf ./dist && rm -rf ./coverage && rm -rf ./docs","eslint":"eslint ./ --cache","build":"babel src --out-dir dist --source-maps","test":"babel-node jasmine.js","cover":"NODE_ENV=test nyc --reporter=lcov jasmine JASMINE_CONFIG_PATH=jasmine.json","postcover":"nyc report","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","gitdown":"gitdown ./.gitdown/README.md --output-file ./README.md","jsdoc":"jsdoc ./src -c ./jsdoc.json","gh-pages":"gh-pages -r https://${GH_TOKEN}@github.com/mdreizin/webpack-config.git -d docs","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"nyc":{"include":["src/*.js"],"require":["babel-register"],"sourceMap":false,"instrument":false},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack-config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"babel-cli":"^6.14.0","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^2.0.0","babel-plugin-transform-builtin-extend":"^1.1.0","babel-plugin-transform-runtime":"^6.9.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.16.3","codeclimate-test-reporter":"^0.4.0","eslint":"^3.8.0","eslint-config-mdreizin":"^1.1.1","eslint-plugin-babel":"^3.2.0","gh-pages":"^0.11.0","gitdown":"^2.4.8","jasmine":"^2.4.1","jasmine-spec-reporter":"^2.4.0","jsdoc":"^3.4.0","nyc":"^8.1.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.4"},"dependencies":{"babel-runtime":"^6.9.0","constitute":"^1.6.2","glob":"^7.0.6","glob2base":"0.0.12","lodash":"^4.13.1","recursive-iterator":"^2.0.0"},"version":"6.2.0","gitHead":"141bd468b78af7e8ca071ec0e44145c2a2f4631f","_id":"webpack-config@6.2.0","_shasum":"b7d963450fecd1862f5e256d2a9d89422febe260","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"b7d963450fecd1862f5e256d2a9d89422febe260","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-6.2.0.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-config-6.2.0.tgz_1477082787752_0.9675632144790143"},"directories":{}},"6.2.1":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"dist/index.js","files":["dist/","src/"],"scripts":{"clean":"rm -rf ./dist && rm -rf ./coverage && rm -rf ./docs","eslint":"eslint ./ --cache","build":"babel src --out-dir dist --source-maps","test":"babel-node jasmine.js","cover":"NODE_ENV=test nyc --reporter=lcov jasmine JASMINE_CONFIG_PATH=jasmine.json","postcover":"nyc report","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","gitdown":"gitdown ./.gitdown/README.md --output-file ./README.md","jsdoc":"jsdoc ./src -c ./jsdoc.json","gh-pages":"gh-pages -r https://${GH_TOKEN}@github.com/mdreizin/webpack-config.git -d docs","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"nyc":{"include":["src/*.js"],"require":["babel-register"],"sourceMap":false,"instrument":false},"repository":{"type":"git","url":"git+https://github.com/mdreizin/webpack-config.git"},"keywords":["webpack","webpack-config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/mdreizin/webpack-config/issues"},"homepage":"https://github.com/mdreizin/webpack-config","devDependencies":{"babel-cli":"^6.14.0","babel-eslint":"^7.0.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^2.0.0","babel-plugin-transform-builtin-extend":"^1.1.0","babel-plugin-transform-runtime":"^6.9.0","babel-preset-es2015":"^6.14.0","babel-register":"^6.16.3","codeclimate-test-reporter":"^0.4.0","eslint":"^3.8.0","eslint-config-mdreizin":"^1.1.1","eslint-plugin-babel":"^3.2.0","gh-pages":"^0.11.0","gitdown":"^2.4.8","jasmine":"^2.4.1","jasmine-spec-reporter":"^2.4.0","jsdoc":"^3.4.0","nyc":"^8.1.0","semantic-release":"^4.3.5","travis-after-all":"^1.4.4"},"dependencies":{"babel-runtime":"^6.9.0","constitute":"^1.6.2","glob":"^7.0.6","glob2base":"0.0.12","lodash":"^4.13.1","recursive-iterator":"^2.0.0"},"version":"6.2.1","gitHead":"f0418fcd9f17249a90e3c27656b62ce387ca8285","_id":"webpack-config@6.2.1","_shasum":"4e3556c8a8c5ef91719aa70f343afbec3bdfc572","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"4e3556c8a8c5ef91719aa70f343afbec3bdfc572","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-6.2.1.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-config-6.2.1.tgz_1478068084414_0.7767647767905146"},"directories":{}},"7.0.0":{"name":"webpack-config","description":"Helps to load, extend and merge webpack configs","main":"dist/index.js","files":["dist/","src/"],"scripts":{"clean":"rm -rf dist coverage docs","eslint":"eslint --ext js,md ./ --cache","build":"babel src --out-dir dist --source-maps","test":"babel-node jasmine.js","cover":"NODE_ENV=test nyc --reporter=lcov jasmine JASMINE_CONFIG_PATH=jasmine.json","postcover":"nyc report","codeclimate":"codeclimate-test-reporter < ./coverage/lcov.info","jsdoc":"jsdoc ./src -c ./jsdoc.json","gh-pages":"gh-pages -r https://${GH_TOKEN}@github.com/Fitbit/webpack-config.git -d docs","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"nyc":{"include":["src/*.js"],"require":["babel-register"],"sourceMap":false,"instrument":false},"repository":{"type":"git","url":"git+https://github.com/Fitbit/webpack-config.git"},"keywords":["webpack","webpack-config"],"author":{"name":"Marat Dreizin","email":"marat.dreizin@gmail.com"},"license":"Apache-2.0","bugs":{"url":"https://github.com/Fitbit/webpack-config/issues"},"homepage":"https://github.com/Fitbit/webpack-config","devDependencies":{"babel-cli":"^6.22.2","babel-eslint":"^7.1.1","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^3.1.2","babel-plugin-transform-builtin-extend":"^1.1.0","babel-plugin-transform-runtime":"^6.22.0","babel-preset-es2015":"^6.22.0","babel-register":"^6.22.0","codeclimate-test-reporter":"^0.4.0","eslint":"^3.14.1","eslint-plugin-babel":"^4.0.1","eslint-plugin-markdown":"^1.0.0-beta.3","gh-pages":"^0.12.0","jasmine":"^2.5.3","jasmine-spec-reporter":"^3.2.0","jsdoc":"^3.4.3","nyc":"^10.1.2","semantic-release":"^6.3.2","travis-after-all":"^1.4.4"},"dependencies":{"babel-runtime":"^6.22.0","constitute":"^1.6.2","lodash":"^4.17.4","recursive-iterator":"^2.0.3","yargs":"^6.6.0"},"version":"7.0.0","gitHead":"7c7c3fd50ea886f591ac5a4d8afdf9b2e4d78282","_id":"webpack-config@7.0.0","_shasum":"19c808d6bf7daa40fc6cb43a7f6c2265dbe4bff5","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"mdreizin","email":"marat.dreizin@gmail.com"},"dist":{"shasum":"19c808d6bf7daa40fc6cb43a7f6c2265dbe4bff5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/webpack-config/-/webpack-config-7.0.0.tgz"},"maintainers":[{"name":"mdreizin","email":"marat.dreizin@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/webpack-config-7.0.0.tgz_1486537759560_0.3772719711996615"},"directories":{}}},"name":"webpack-config","time":{"modified":"2017-03-09T10:33:45.610Z","created":"2014-12-05T11:18:16.552Z","0.1.0":"2014-12-05T11:18:16.552Z","0.1.1":"2014-12-05T11:34:25.937Z","0.1.2":"2014-12-05T14:49:12.091Z","0.1.3":"2014-12-05T15:10:19.380Z","0.1.4":"2014-12-10T13:02:46.351Z","0.1.5":"2014-12-16T10:55:11.451Z","0.1.6":"2014-12-20T13:41:01.238Z","0.1.7":"2015-02-04T09:16:37.679Z","0.1.8":"2015-02-06T19:36:55.428Z","0.2.0":"2015-02-20T07:21:01.461Z","0.2.1":"2015-02-20T10:15:23.052Z","0.2.2":"2015-02-20T12:27:59.122Z","0.3.0":"2015-02-20T12:34:56.761Z","0.4.0":"2015-02-25T07:27:00.975Z","0.5.0":"2015-04-13T12:04:44.649Z","0.6.0":"2015-05-11T10:49:28.131Z","0.6.1":"2015-05-23T16:22:45.900Z","0.6.2":"2015-05-23T16:29:58.046Z","0.6.3":"2015-05-24T08:06:41.734Z","0.7.0":"2015-05-25T14:33:35.616Z","0.8.0":"2015-08-18T14:19:47.510Z","0.9.0":"2015-10-19T09:21:20.660Z","1.0.0":"2015-10-19T09:50:14.068Z","0.8.1":"2015-10-19T17:48:05.381Z","1.0.1":"2015-10-20T12:23:51.644Z","1.0.2":"2015-10-20T12:29:18.049Z","1.1.0":"2015-10-22T17:28:25.412Z","1.1.1":"2015-10-23T09:19:10.392Z","1.2.0":"2015-11-13T07:06:27.550Z","2.0.0":"2015-11-19T07:43:50.600Z","2.1.0":"2015-11-20T06:58:05.286Z","2.2.0":"2015-11-20T10:01:19.174Z","2.3.0":"2015-11-20T11:48:37.143Z","3.0.0":"2015-12-11T09:40:57.573Z","3.1.0":"2015-12-24T10:04:42.912Z","4.0.0":"2016-02-22T08:46:28.350Z","5.0.0":"2016-05-27T11:43:27.585Z","5.0.1":"2016-05-27T12:43:59.875Z","5.1.0":"2016-06-10T09:45:44.488Z","5.2.0":"2016-06-30T11:53:06.085Z","5.2.1":"2016-07-08T12:37:45.840Z","6.0.0":"2016-08-04T13:16:54.483Z","6.1.0":"2016-08-08T08:05:13.171Z","6.1.1":"2016-08-08T11:56:13.573Z","6.1.2":"2016-08-08T16:28:32.546Z","6.1.3":"2016-09-20T10:31:38.956Z","6.2.0":"2016-10-21T20:46:29.570Z","6.2.1":"2016-11-02T06:28:06.374Z","7.0.0":"2017-02-08T07:09:20.212Z"},"readmeFilename":"README.md","homepage":"https://github.com/Fitbit/webpack-config"}