{"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"keywords":["webpack","source-map"],"dist-tags":{"latest":"1.0.1"},"author":{"name":"Tobias Koppers @sokra"},"description":"Source code handling classes for webpack","readme":"# webpack-sources\r\n\r\nContains multiple classes which represent a `Source`. A `Source` can be asked for source code, size, source map and hash.\r\n\r\n## `Source`\r\n\r\nBase class for all sources.\r\n\r\n### Public methods\r\n\r\nAll methods should be considered as expensive as they may need to do computations.\r\n\r\n#### `source`\r\n\r\n``` js\r\nSource.prototype.source() -> String\r\n```\r\n\r\nReturns the represented source code as string.\r\n\r\n#### `size`\r\n\r\n``` js\r\nSource.prototype.size() -> Number\r\n```\r\n\r\nReturns the size in chars of the represented source code.\r\n\r\n#### `map`\r\n\r\n``` js\r\nSource.prototype.map(options: Object) -> Object | null\r\n```\r\n\r\nReturns the SourceMap of the represented source code as JSON. May return `null` if no SourceMap is available.\r\n\r\nThe `options` object can contain the following keys:\r\n\r\n* `columns: Boolean` (default `true`): If set to false the implementation may omit mappings for columns.\r\n* `module: Boolean` (default `true`): If set to false the implementation may omit inner mappings for modules.\r\n\r\n#### `sourceAndMap`\r\n\r\n``` js\r\nSource.prototype.sourceAndMap(options: Object) -> {\r\n\tcode: String,\r\n\tmap: Object\r\n}\r\n```\r\n\r\nReturns both, source code (like `Source.prototype.source()` and SourceMap (like `Source.prototype.map()`). This method could have better performance than calling `source()` and `map()` separatly.\r\n\r\nSee `map()` for `options`.\r\n\r\n#### `updateHash`\r\n\r\n``` js\r\nSource.prototype.updateHash(hash: Hash) -> void\r\n```\r\n\r\nUpdates the provided `Hash` object with the content of the represented source code. (`Hash` is an object with an `update` method, which is called with string values)\r\n\r\n#### `node` (optional)\r\n\r\n``` js\r\nSource.prototype.node(options: Object) -> SourceNode\r\n```\r\n\r\nThis is an optional method. It may be `null` if not implemented.\r\n\r\nReturns a `SourceNode` (see source-map library) for the represented source code.\r\n\r\nSee `map()` for `options`.\r\n\r\n#### `listNode` (optional)\r\n\r\n``` js\r\nSource.prototype.listNode(options: Object) -> SourceNode\r\n```\r\n\r\nThis is an optional method. It may be `null` if not implemented.\r\n\r\nReturns a `SourceListMap` (see source-list-map library) for the represented source code.\r\n\r\nSee `map()` for `options`.\r\n\r\n## `RawSource`\r\n\r\nRepresents source code without SourceMap.\r\n\r\n``` js\r\nnew RawSource(sourceCode: String)\r\n```\r\n\r\n## `OriginalSource`\r\n\r\nRepresents source code, which is a copy of the original file.\r\n\r\n``` js\r\nnew OriginalSource(\r\n\tsourceCode: String,\r\n\tname: String\r\n)\r\n```\r\n\r\n* `sourceCode`: The source code.\r\n* `name`: The filename of the original source code.\r\n\r\nOriginalSource tries to create column mappings if requested, by splitting the source code at typical statement borders (`;`, `{`, `}`).\r\n\r\n## `SourceMapSource`\r\n\r\nRepresents source code with SourceMap, optionally having an additional SourceMap for the original source.\r\n\r\n``` js\r\nnew SourceMapSource(\r\n\tsourceCode: String,\r\n\tname: String,\r\n\tsourceMap: Object | String,\r\n\toriginalSource?: String,\r\n\tinnerSourceMap?: Object | String\r\n)\r\n```\r\n\r\n* `sourceCode`: The source code.\r\n* `name`: The filename of the original source code.\r\n* `sourceMap`: The SourceMap for the source code.\r\n* `originalSource`: The source code of the original file. Can be omitted if the `sourceMap` already contains the original source code.\r\n* `innerSourceMap`: The SourceMap for the `originalSource`/`name`.\r\n\r\n## `LineToLineMappedSource`\r\n\r\nRepresents source code, which is mapped line by line to the orginal file.\r\n\r\n``` js\r\nnew LineToLineMappedSource(\r\n\tsourceCode: String,\r\n\tname: String,\r\n\toriginalSource: String\r\n)\r\n```\r\n\r\n* `sourceCode`: The source code.\r\n* `name`: The filename of the original source code.\r\n* `originalSource`: The original source code.\r\n\r\n## `CachedSource`\r\n\r\nDecorates a `Source` and caches returned results of `map`, `source`, `size` and `sourceAndMap` in memory. Every other operation is delegated to the wrapped `Source`.\r\n\r\n``` js\r\nnew CachedSource(source: Source)\r\n```\r\n\r\n## `PrefixSource`\r\n\r\nPrefix every line of the decorated `Source` with a provided string.\r\n\r\n``` js\r\nnew PrefixSource(\r\n\tprefix: String,\r\n\tsource: Source\r\n)\r\n```\r\n\r\n## `ConcatSource`\r\n\r\nConcatenate mulitple `Source`s or strings to a single source.\r\n\r\n``` js\r\nnew ConcatSource(\r\n\t...items?: Source | String\r\n)\r\n```\r\n\r\n### Public methods\r\n\r\n#### `add`\r\n\r\n``` js\r\nConcatSource.prototype.add(item: Source | String)\r\n```\r\n\r\nAdds an item to the source.\t\r\n\r\n## `ReplaceSource`\r\n\r\nDecorates a `Source` with replacements and insertions of source code.\r\n\r\n### Public methods\r\n\r\n#### `replace`\r\n\r\n``` js\r\nReplaceSource.prototype.replace(\r\n\tstart: Number,\r\n\tend: Number,\r\n\treplacement: String\r\n)\r\n```\r\n\r\nReplaces chars from `start` (0-indexed, inclusive) to `end` (0-indexed, inclusive) with `replacement`.\r\n\r\nLocations represents locations in the original source and are not influenced by other replacements or insertions.\r\n\r\n#### `insert`\r\n\r\n``` js\r\nReplaceSource.prototype.insert(\r\n\tpos: Number,\r\n\tinsertion: String\r\n)\r\n```\r\n\r\nInserts the `insertion` before char `pos` (0-indexed).\r\n\r\nLocation represents location in the original source and is not influenced by other replacements or insertions.\r\n\r\n#### `original`\r\n\r\nGet decorated `Source`.\r\n\r\n","repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"license":"MIT","versions":{"0.1.0":{"name":"webpack-sources","version":"0.1.0","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"npm run lint && npm run beautify-lint","test":"mocha --full-trace --check-leaks","travis":"npm run cover -- --report lcovonly","lint":"eslint lib test","beautify-lint":"beautify-lint lib/**.js test/**.js","beautify":"beautify-rewrite lib/**.js test/**.js","precover":"npm run lint && npm run beautify-lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"npm test && npm version patch && git push && git push --tags && npm publish"},"dependencies":{"source-map":"~0.5.3","source-list-map":"~0.1.0"},"devDependencies":{"beautify-lint":"^1.0.3","codecov.io":"^0.1.6","coveralls":"^2.11.6","eslint":"^1.1.0","eslint-plugin-nodeca":"^1.0.3","istanbul":"^0.4.1","js-beautify":"^1.5.10","mocha":"^2.3.4","should":"^8.0.2"},"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"keywords":["webpack","source-map"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"homepage":"https://github.com/webpack/webpack-sources#readme","_id":"webpack-sources@0.1.0","_shasum":"c814e701c276b83dfd512a19c4fcc3e6052aefde","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"c814e701c276b83dfd512a19c4fcc3e6052aefde","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/webpack-sources/-/webpack-sources-0.1.0.tgz"},"directories":{}},"0.1.1":{"name":"webpack-sources","version":"0.1.1","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"npm run lint && npm run beautify-lint","test":"mocha --full-trace --check-leaks","travis":"npm run cover -- --report lcovonly","lint":"eslint lib test","beautify-lint":"beautify-lint lib/**.js test/**.js","beautify":"beautify-rewrite lib/**.js test/**.js","precover":"npm run lint && npm run beautify-lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"npm test && npm version patch && git push && git push --tags && npm publish"},"dependencies":{"source-map":"~0.5.3","source-list-map":"~0.1.0"},"devDependencies":{"beautify-lint":"^1.0.3","codecov.io":"^0.1.6","coveralls":"^2.11.6","eslint":"^1.1.0","eslint-plugin-nodeca":"^1.0.3","istanbul":"^0.4.1","js-beautify":"^1.5.10","mocha":"^2.3.4","should":"^8.0.2"},"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"keywords":["webpack","source-map"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"homepage":"https://github.com/webpack/webpack-sources#readme","gitHead":"7e24cdd86d071ddff82c5750b83916e30e1934cf","_id":"webpack-sources@0.1.1","_shasum":"a71dd7c0ca3e264af088804bc384d93fad0442b6","_from":".","_npmVersion":"3.3.3","_nodeVersion":"5.4.1","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"a71dd7c0ca3e264af088804bc384d93fad0442b6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/webpack-sources/-/webpack-sources-0.1.1.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.1.2":{"name":"webpack-sources","version":"0.1.2","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"npm run lint && npm run beautify-lint","test":"mocha --full-trace --check-leaks","travis":"npm run cover -- --report lcovonly","lint":"eslint lib test","beautify-lint":"beautify-lint lib/**.js test/**.js","beautify":"beautify-rewrite lib/**.js test/**.js","precover":"npm run lint && npm run beautify-lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"npm test && npm version patch && git push && git push --tags && npm publish"},"dependencies":{"source-map":"~0.5.3","source-list-map":"~0.1.0"},"devDependencies":{"beautify-lint":"^1.0.3","codecov.io":"^0.1.6","coveralls":"^2.11.6","eslint":"^1.1.0","eslint-plugin-nodeca":"^1.0.3","istanbul":"^0.4.1","js-beautify":"^1.5.10","mocha":"^2.3.4","should":"^8.0.2"},"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"keywords":["webpack","source-map"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"homepage":"https://github.com/webpack/webpack-sources#readme","gitHead":"ab33c46cb6cc67505e0b8ccc99fed55f1cafc922","_id":"webpack-sources@0.1.2","_shasum":"057a3f3255f8ba561b901d9150589aa103a57e65","_from":".","_npmVersion":"3.3.3","_nodeVersion":"5.4.1","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"057a3f3255f8ba561b901d9150589aa103a57e65","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/webpack-sources/-/webpack-sources-0.1.2.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/webpack-sources-0.1.2.tgz_1461278357602_0.4156553049106151"},"directories":{}},"0.1.3":{"name":"webpack-sources","version":"0.1.3","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"npm run lint && npm run beautify-lint","test":"mocha --full-trace --check-leaks","travis":"npm run cover -- --report lcovonly","lint":"eslint lib test","beautify-lint":"beautify-lint lib/**.js test/**.js","beautify":"beautify-rewrite lib/**.js test/**.js","precover":"npm run lint && npm run beautify-lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"npm test && npm version patch && git push && git push --tags && npm publish"},"dependencies":{"source-map":"~0.5.3","source-list-map":"~0.1.0"},"devDependencies":{"beautify-lint":"^1.0.3","codecov.io":"^0.1.6","coveralls":"^2.11.6","eslint":"^1.1.0","eslint-plugin-nodeca":"^1.0.3","istanbul":"^0.4.1","js-beautify":"^1.5.10","mocha":"^2.3.4","should":"^8.0.2"},"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"keywords":["webpack","source-map"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"homepage":"https://github.com/webpack/webpack-sources#readme","gitHead":"fb0ed29f0e1bedbd87967011556faa7644f5a1e8","_id":"webpack-sources@0.1.3","_shasum":"15ce2fb79d0a1da727444ba7c757bf164294f310","_from":".","_npmVersion":"3.3.3","_nodeVersion":"6.9.1","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"15ce2fb79d0a1da727444ba7c757bf164294f310","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/webpack-sources/-/webpack-sources-0.1.3.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-sources-0.1.3.tgz_1478966594151_0.9760280998889357"},"directories":{}},"0.1.4":{"name":"webpack-sources","version":"0.1.4","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"npm run lint && npm run beautify-lint","test":"mocha --full-trace --check-leaks","travis":"npm run cover -- --report lcovonly","lint":"eslint lib test","beautify-lint":"beautify-lint lib/**.js test/**.js","beautify":"beautify-rewrite lib/**.js test/**.js","precover":"npm run lint && npm run beautify-lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"npm test && npm version patch && git push && git push --tags && npm publish"},"dependencies":{"source-map":"~0.5.3","source-list-map":"~0.1.7"},"devDependencies":{"beautify-lint":"^1.0.3","codecov.io":"^0.1.6","coveralls":"^2.11.6","eslint":"^1.1.0","eslint-plugin-nodeca":"^1.0.3","istanbul":"^0.4.1","js-beautify":"^1.5.10","mocha":"^2.3.4","should":"^8.0.2"},"files":["lib/"],"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"keywords":["webpack","source-map"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"homepage":"https://github.com/webpack/webpack-sources#readme","gitHead":"9ebc91cf8d8b5eac523230cd31fd6789606598cd","_id":"webpack-sources@0.1.4","_shasum":"ccc2c817e08e5fa393239412690bb481821393cd","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"ccc2c817e08e5fa393239412690bb481821393cd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/webpack-sources/-/webpack-sources-0.1.4.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-sources-0.1.4.tgz_1484494496673_0.4281313957180828"},"directories":{}},"0.1.5":{"name":"webpack-sources","version":"0.1.5","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"npm run lint && npm run beautify-lint","test":"mocha --full-trace --check-leaks","travis":"npm run cover -- --report lcovonly","lint":"eslint lib test","beautify-lint":"beautify-lint lib/**.js test/**.js","beautify":"beautify-rewrite lib/**.js test/**.js","precover":"npm run lint && npm run beautify-lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"npm test && npm version patch && git push && git push --tags && npm publish"},"dependencies":{"source-map":"~0.5.3","source-list-map":"~0.1.7"},"devDependencies":{"beautify-lint":"^1.0.3","codecov.io":"^0.1.6","coveralls":"^2.11.6","eslint":"^1.1.0","eslint-plugin-nodeca":"^1.0.3","istanbul":"^0.4.1","js-beautify":"^1.5.10","mocha":"^2.3.4","should":"^8.0.2"},"files":["lib/"],"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"keywords":["webpack","source-map"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"homepage":"https://github.com/webpack/webpack-sources#readme","gitHead":"d4cbf577bc12570c079c1aed4ad8c196b6c919d5","_id":"webpack-sources@0.1.5","_shasum":"aa1f3abf0f0d74db7111c40e500b84f966640750","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.1","_npmUser":{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},"dist":{"shasum":"aa1f3abf0f0d74db7111c40e500b84f966640750","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/webpack-sources/-/webpack-sources-0.1.5.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/webpack-sources-0.1.5.tgz_1488917506799_0.5009965947829187"},"directories":{}},"0.2.0":{"name":"webpack-sources","version":"0.2.0","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"npm run lint && npm run beautify-lint","test":"mocha --full-trace --check-leaks","travis":"npm run cover -- --report lcovonly","lint":"eslint lib test","beautify-lint":"beautify-lint lib/**.js test/**.js","beautify":"beautify-rewrite lib/**.js test/**.js","precover":"npm run lint && npm run beautify-lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"npm test && npm version patch && git push && git push --tags && npm publish"},"dependencies":{"source-map":"~0.5.3","source-list-map":"^1.0.1"},"devDependencies":{"beautify-lint":"^1.0.3","codecov.io":"^0.1.6","coveralls":"^2.11.6","eslint":"^1.1.0","eslint-plugin-nodeca":"^1.0.3","istanbul":"^0.4.1","js-beautify":"^1.5.10","mocha":"^2.3.4","should":"^8.0.2"},"files":["lib/"],"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"keywords":["webpack","source-map"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"homepage":"https://github.com/webpack/webpack-sources#readme","gitHead":"5154e49af10bcefc1e58505f3563da4a07763eda","_id":"webpack-sources@0.2.0","_shasum":"fea93ba840f16cdd3f246f0ee95f88a9492c69fb","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"fea93ba840f16cdd3f246f0ee95f88a9492c69fb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/webpack-sources/-/webpack-sources-0.2.0.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-sources-0.2.0.tgz_1488918763935_0.25536337518133223"},"directories":{}},"0.2.1":{"name":"webpack-sources","version":"0.2.1","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"npm run lint && npm run beautify-lint","test":"mocha --full-trace --check-leaks","travis":"npm run cover -- --report lcovonly","lint":"eslint lib test","beautify-lint":"beautify-lint lib/**.js test/**.js","beautify":"beautify-rewrite lib/**.js test/**.js","precover":"npm run lint && npm run beautify-lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"npm test && npm version patch && git push && git push --tags && npm publish"},"dependencies":{"source-map":"~0.5.3","source-list-map":"^1.1.0"},"devDependencies":{"beautify-lint":"^1.0.3","codecov.io":"^0.1.6","coveralls":"^2.11.6","eslint":"^1.1.0","eslint-plugin-nodeca":"^1.0.3","istanbul":"^0.4.1","js-beautify":"^1.5.10","mocha":"^2.3.4","should":"^8.0.2"},"files":["lib/"],"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"keywords":["webpack","source-map"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"homepage":"https://github.com/webpack/webpack-sources#readme","gitHead":"1692f4be47a74e8b50e124f797db99cd87b9186f","_id":"webpack-sources@0.2.1","_shasum":"2abccabc209afbf1d8cb62d533b54dbbc7fc6e27","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"2abccabc209afbf1d8cb62d533b54dbbc7fc6e27","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/webpack-sources/-/webpack-sources-0.2.1.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-sources-0.2.1.tgz_1490389526371_0.09579946473240852"},"directories":{}},"0.2.2":{"name":"webpack-sources","version":"0.2.2","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"npm run lint && npm run beautify-lint","test":"mocha --full-trace --check-leaks","travis":"npm run cover -- --report lcovonly","lint":"eslint lib test","beautify-lint":"beautify-lint lib/**.js test/**.js","beautify":"beautify-rewrite lib/**.js test/**.js","precover":"npm run lint && npm run beautify-lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"npm test && npm version patch && git push && git push --tags && npm publish"},"dependencies":{"source-map":"~0.5.3","source-list-map":"^1.1.0"},"devDependencies":{"beautify-lint":"^1.0.3","codecov.io":"^0.1.6","coveralls":"^2.11.6","eslint":"^1.1.0","eslint-plugin-nodeca":"^1.0.3","istanbul":"^0.4.1","js-beautify":"^1.5.10","mocha":"^2.3.4","should":"^8.0.2"},"files":["lib/"],"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"keywords":["webpack","source-map"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"homepage":"https://github.com/webpack/webpack-sources#readme","gitHead":"2857561d723db6f8cc2f25cef9534d13dddde06a","_id":"webpack-sources@0.2.2","_shasum":"708714db9cc8152b9f8674e4acb119efecdb23fa","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"708714db9cc8152b9f8674e4acb119efecdb23fa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/webpack-sources/-/webpack-sources-0.2.2.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-sources-0.2.2.tgz_1490393113183_0.09044172172434628"},"directories":{}},"0.2.3":{"name":"webpack-sources","version":"0.2.3","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"npm run lint && npm run beautify-lint","test":"mocha --full-trace --check-leaks","travis":"npm run cover -- --report lcovonly","lint":"eslint lib test","beautify-lint":"beautify-lint lib/**.js test/**.js","beautify":"beautify-rewrite lib/**.js test/**.js","precover":"npm run lint && npm run beautify-lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"npm test && npm version patch && git push && git push --tags && npm publish"},"dependencies":{"source-map":"~0.5.3","source-list-map":"^1.1.1"},"devDependencies":{"beautify-lint":"^1.0.3","codecov.io":"^0.1.6","coveralls":"^2.11.6","eslint":"^1.1.0","eslint-plugin-nodeca":"^1.0.3","istanbul":"^0.4.1","js-beautify":"^1.5.10","mocha":"^2.3.4","should":"^8.0.2"},"files":["lib/"],"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"keywords":["webpack","source-map"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"homepage":"https://github.com/webpack/webpack-sources#readme","gitHead":"828a85acb96faf69c1ba0b78ba6d3a2acc9dcd92","_id":"webpack-sources@0.2.3","_shasum":"17c62bfaf13c707f9d02c479e0dcdde8380697fb","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"17c62bfaf13c707f9d02c479e0dcdde8380697fb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/webpack-sources/-/webpack-sources-0.2.3.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/webpack-sources-0.2.3.tgz_1490398694081_0.5428378875367343"},"directories":{}},"1.0.0":{"name":"webpack-sources","version":"1.0.0","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"npm run lint && npm run beautify-lint","test":"mocha --full-trace --check-leaks","travis":"npm run cover -- --report lcovonly","lint":"eslint lib test","beautify-lint":"beautify-lint lib/**.js test/**.js","beautify":"beautify-rewrite lib/**.js test/**.js","precover":"npm run lint && npm run beautify-lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"npm test && npm version patch && git push && git push --tags && npm publish"},"dependencies":{"source-list-map":"^2.0.0","source-map":"~0.5.3"},"devDependencies":{"beautify-lint":"^1.0.3","codecov.io":"^0.1.6","coveralls":"^2.11.6","eslint":"^3.19.0","eslint-plugin-nodeca":"^1.0.3","istanbul":"^0.4.1","js-beautify":"^1.5.10","mocha":"^3.4.2","should":"^11.2.1"},"files":["lib/"],"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"keywords":["webpack","source-map"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"homepage":"https://github.com/webpack/webpack-sources#readme","gitHead":"aa47eb9dc433ad236cf8328b4be92c62ff069904","_id":"webpack-sources@1.0.0","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"integrity":"sha512-yCPXB6Aqbn0w4rp7KqiF8m8bsL6gMRtRyGzd/ZMIS2VPAusZ92gsOCVTIGhEy7faQS1mw//6S5bD10B0zRNa0g==","shasum":"fbbaa2cce01333412281a7e40cbe4b0c9c3344fa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/webpack-sources/-/webpack-sources-1.0.0.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources-1.0.0.tgz_1496492594647_0.6798736609052867"},"directories":{}},"1.0.1":{"name":"webpack-sources","version":"1.0.1","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"npm run lint && npm run beautify-lint","test":"mocha --full-trace --check-leaks","travis":"npm run cover -- --report lcovonly","lint":"eslint lib test","beautify-lint":"beautify-lint lib/**.js test/**.js","beautify":"beautify-rewrite lib/**.js test/**.js","precover":"npm run lint && npm run beautify-lint","cover":"istanbul cover node_modules/mocha/bin/_mocha","publish-patch":"npm test && npm version patch && git push && git push --tags && npm publish"},"dependencies":{"source-list-map":"^2.0.0","source-map":"~0.5.3"},"devDependencies":{"beautify-lint":"^1.0.3","codecov.io":"^0.1.6","coveralls":"^2.11.6","eslint":"^3.19.0","eslint-plugin-nodeca":"^1.0.3","istanbul":"^0.4.1","js-beautify":"^1.5.10","mocha":"^3.4.2","should":"^11.2.1"},"files":["lib/"],"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"keywords":["webpack","source-map"],"author":{"name":"Tobias Koppers @sokra"},"license":"MIT","bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"homepage":"https://github.com/webpack/webpack-sources#readme","gitHead":"5cadaf4ab143a32cf994365db4b2ddacd0ab0eb9","_id":"webpack-sources@1.0.1","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"integrity":"sha512-05tMxipUCwHqYaVS8xc7sYPTly8PzXayRCB4dTxLhWTqlKUiwH6ezmEe0OSreL1c30LAuA3Zqmc+uEBUGFJDjw==","shasum":"c7356436a4d13123be2e2426a05d1dad9cbe65cf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/webpack-sources/-/webpack-sources-1.0.1.tgz"},"maintainers":[{"name":"bebraw","email":"bebraw@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"spacek33z","email":"kees@webduck.nl"},{"name":"thelarkinn","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources-1.0.1.tgz_1496500323403_0.9926682878285646"},"directories":{}}},"name":"webpack-sources","time":{"modified":"2017-06-03T14:32:04.346Z","created":"2016-01-03T17:29:30.353Z","0.1.0":"2016-01-03T17:29:30.353Z","0.1.1":"2016-01-30T12:10:01.566Z","0.1.2":"2016-04-21T22:39:19.360Z","0.1.3":"2016-11-12T16:03:16.077Z","0.1.4":"2017-01-15T15:34:58.888Z","0.1.5":"2017-03-07T20:11:47.369Z","0.2.0":"2017-03-07T20:32:45.800Z","0.2.1":"2017-03-24T21:05:28.371Z","0.2.2":"2017-03-24T22:05:15.254Z","0.2.3":"2017-03-24T23:38:14.635Z","1.0.0":"2017-06-03T12:23:15.625Z","1.0.1":"2017-06-03T14:32:04.346Z"},"readmeFilename":"README.md","homepage":"https://github.com/webpack/webpack-sources#readme"}