{"_attachments":{},"_id":"webpack-sources","_rev":"3091-61f14acbfbcaa28a75958bf2","author":{"name":"Tobias Koppers @sokra"},"description":"Source code handling classes for webpack","dist-tags":{"beta":"2.0.0-beta.10","latest":"3.5.0"},"license":"MIT","maintainers":[{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"ev1stensberg","email":"evenstensberg@gmail.com"},{"name":"15000621931","email":"784487301@qq.com"},{"name":"__hai","email":"haijie0619@gmail.com"},{"name":"avivkeller","email":"me@aviv.sh"}],"name":"webpack-sources","readme":"# webpack-sources\n\nContains multiple classes which represent a `Source`. A `Source` can be asked for source code, size, source map and hash.\n\n## `Source`\n\nBase class for all sources.\n\n### Public methods\n\nAll methods should be considered as expensive as they may need to do computations.\n\n#### `source`\n\n<!-- eslint-skip -->\n```typescript\nSource.prototype.source() -> String | Buffer\n```\n\nReturns the represented source code as string or Buffer (for binary Sources).\n\n#### `buffer`\n\n<!-- eslint-skip -->\n```typescript\nSource.prototype.buffer() -> Buffer\n```\n\nReturns the represented source code as Buffer. Strings are converted to utf-8.\n\n#### `buffers`\n\n<!-- eslint-skip -->\n```typescript\nSource.prototype.buffers() -> Buffer[]\n```\n\nReturns the represented source code as an array of Buffers. This avoids the\nintermediate `Buffer.concat` allocation performed by `buffer()` when the source\nis composed of multiple children (for example `ConcatSource`). Consumers that\ncan accept an array of buffers (e.g. writing via `fs.createWriteStream` or\n`writev`) should prefer this method for better performance.\n\nThe default implementation returns `[this.buffer()]`.\n\n#### `size`\n\n<!-- eslint-skip -->\n```typescript\nSource.prototype.size() -> Number\n```\n\nReturns the size in bytes of the represented source code.\n\n#### `map`\n\n<!-- eslint-skip -->\n```typescript\nSource.prototype.map(options?: Object) -> Object | null\n```\n\nReturns the SourceMap of the represented source code as JSON. May return `null` if no SourceMap is available.\n\nThe `options` object can contain the following keys:\n\n- `columns: Boolean` (default `true`): If set to false the implementation may omit mappings for columns.\n\n#### `sourceAndMap`\n\n<!-- eslint-skip -->\n```typescript\nSource.prototype.sourceAndMap(options?: Object) -> {\n\tsource: String | Buffer,\n\tmap: Object | null\n}\n```\n\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()` separately.\n\nSee `map()` for `options`.\n\n#### `updateHash`\n\n<!-- eslint-skip -->\n```typescript\nSource.prototype.updateHash(hash: Hash) -> void\n```\n\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)\n\n## `RawSource`\n\nRepresents source code without SourceMap.\n\n<!-- eslint-skip -->\n```typescript\nnew RawSource(sourceCode: String | Buffer)\n```\n\n## `OriginalSource`\n\nRepresents source code, which is a copy of the original file.\n\n<!-- eslint-skip -->\n```typescript\nnew OriginalSource(\n\tsourceCode: String | Buffer,\n\tname: String\n)\n```\n\n- `sourceCode`: The source code.\n- `name`: The filename of the original source code.\n\nOriginalSource tries to create column mappings if requested, by splitting the source code at typical statement borders (`;`, `{`, `}`).\n\n## `SourceMapSource`\n\nRepresents source code with SourceMap, optionally having an additional SourceMap for the original source.\n\n<!-- eslint-skip -->\n```typescript\nnew SourceMapSource(\n\tsourceCode: String | Buffer,\n\tname: String,\n\tsourceMap: Object | String | Buffer,\n\toriginalSource?: String | Buffer,\n\tinnerSourceMap?: Object | String | Buffer,\n\tremoveOriginalSource?: boolean\n)\n```\n\n- `sourceCode`: The source code.\n- `name`: The filename of the original source code.\n- `sourceMap`: The SourceMap for the source code.\n- `originalSource`: The source code of the original file. Can be omitted if the `sourceMap` already contains the original source code.\n- `innerSourceMap`: The SourceMap for the `originalSource`/`name`.\n- `removeOriginalSource`: Removes the source code for `name` from the final map, keeping only the deeper mappings for that file.\n\nThe `SourceMapSource` supports \"identity\" mappings for the `innerSourceMap`.\nWhen original source matches generated source for a mapping it's assumed to be mapped char by char allowing to keep finer mappings from `sourceMap`.\n\n## `CachedSource`\n\nDecorates a `Source` and caches returned results of `map`, `source`, `buffer`, `size` and `sourceAndMap` in memory. `updateHash` is not cached.\nIt tries to reused cached results from other methods to avoid calculations, i. e. when `source` is already cached, calling `size` will get the size from the cached source, calling `sourceAndMap` will only call `map` on the wrapped Source.\n\n<!-- eslint-skip -->\n```typescript\nnew CachedSource(source: Source)\nnew CachedSource(source: Source | () => Source, cachedData?: CachedData)\n```\n\nInstead of passing a `Source` object directly one can pass an function that returns a `Source` object. The function is only called when needed and once.\n\n### Public methods\n\n#### `getCachedData()`\n\nReturns the cached data for passing to the constructor. All cached entries are converted to Buffers and strings are avoided.\n\n#### `original()`\n\nReturns the original `Source` object.\n\n#### `originalLazy()`\n\nReturns the original `Source` object or a function returning these.\n\n## `PrefixSource`\n\nPrefix every line of the decorated `Source` with a provided string.\n\n<!-- eslint-skip -->\n```typescript\nnew PrefixSource(\n\tprefix: String,\n\tsource: Source | String | Buffer\n)\n```\n\n## `ConcatSource`\n\nConcatenate multiple `Source`s or strings to a single source.\n\n<!-- eslint-skip -->\n```typescript\nnew ConcatSource(\n\t...items?: Source | String\n)\n```\n\n### Public methods\n\n#### `add`\n\n<!-- eslint-skip -->\n```typescript\nConcatSource.prototype.add(item: Source | String)\n```\n\nAdds an item to the source.\n\n## `ReplaceSource`\n\nDecorates a `Source` with replacements and insertions of source code.\n\nThe `ReplaceSource` supports \"identity\" mappings for child source.\nWhen original source matches generated source for a mapping it's assumed to be mapped char by char allowing to split mappings at replacements/insertions.\n\n### Public methods\n\n#### `replace`\n\n<!-- eslint-skip -->\n```typescript\nReplaceSource.prototype.replace(\n\tstart: Number,\n\tend: Number,\n\treplacement: String\n)\n```\n\nReplaces chars from `start` (0-indexed, inclusive) to `end` (0-indexed, inclusive) with `replacement`.\n\nLocations represents locations in the original source and are not influenced by other replacements or insertions.\n\n#### `insert`\n\n<!-- eslint-skip -->\n```typescript\nReplaceSource.prototype.insert(\n\tpos: Number,\n\tinsertion: String\n)\n```\n\nInserts the `insertion` before char `pos` (0-indexed).\n\nLocation represents location in the original source and is not influenced by other replacements or insertions.\n\n#### `original`\n\nGet decorated `Source`.\n\n## `CompatSource`\n\nConverts a Source-like object into a real Source object.\n\n### Public methods\n\n#### static `from`\n\n<!-- eslint-skip -->\n```typescript\nCompatSource.from(sourceLike: any | Source)\n```\n\nIf `sourceLike` is a real Source it returns it unmodified. Otherwise it returns it wrapped in a CompatSource.\n","time":{"created":"2022-01-26T13:21:15.369Z","modified":"2026-05-22T08:57:12.321Z","3.2.2":"2021-11-15T13:13:42.918Z","3.2.1":"2021-09-13T15:20:24.748Z","3.2.0":"2021-08-02T09:58:00.714Z","3.1.2":"2021-07-30T10:11:38.853Z","3.1.1":"2021-07-29T12:25:45.747Z","3.1.0":"2021-07-29T12:14:24.971Z","3.0.4":"2021-07-29T09:21:26.089Z","3.0.3":"2021-07-28T14:25:47.176Z","3.0.2":"2021-07-28T07:21:08.535Z","3.0.1":"2021-07-27T10:59:19.017Z","3.0.0":"2021-07-26T23:46:14.252Z","2.3.1":"2021-07-20T09:49:14.115Z","2.3.0":"2021-05-27T10:01:50.301Z","2.2.0":"2020-10-29T10:21:40.646Z","2.1.1":"2020-10-28T12:39:41.613Z","2.1.0":"2020-10-26T08:05:55.075Z","2.0.1":"2020-09-28T15:50:11.724Z","2.0.0":"2020-09-17T23:33:31.570Z","2.0.0-beta.10":"2020-08-24T15:52:25.486Z","2.0.0-beta.9":"2020-08-20T07:44:06.943Z","2.0.0-beta.8":"2019-11-20T15:36:10.259Z","2.0.0-beta.7":"2019-11-13T12:58:11.853Z","2.0.0-beta.6":"2019-11-08T09:49:39.502Z","2.0.0-beta.5":"2019-10-22T12:34:31.973Z","2.0.0-beta.4":"2019-09-12T15:40:19.941Z","2.0.0-beta.3":"2019-08-05T15:01:45.305Z","1.4.3":"2019-08-05T14:56:52.060Z","2.0.0-beta.2":"2019-08-05T11:48:11.786Z","1.4.2":"2019-08-05T11:37:57.718Z","1.4.1":"2019-07-31T13:19:42.048Z","1.4.0":"2019-07-31T09:47:46.815Z","2.0.0-beta.1":"2019-01-19T11:41:21.817Z","2.0.0-beta.0":"2019-01-18T19:43:35.990Z","1.3.0":"2018-09-20T09:05:06.955Z","1.2.0":"2018-08-29T12:09:23.738Z","1.1.0":"2017-11-26T11:06:26.949Z","1.0.2":"2017-11-04T07:20:58.402Z","1.0.1":"2017-06-03T14:32:04.346Z","1.0.0":"2017-06-03T12:23:15.625Z","0.2.3":"2017-03-24T23:38:14.635Z","0.2.2":"2017-03-24T22:05:15.254Z","0.2.1":"2017-03-24T21:05:28.371Z","0.2.0":"2017-03-07T20:32:45.800Z","0.1.5":"2017-03-07T20:11:47.369Z","0.1.4":"2017-01-15T15:34:58.888Z","0.1.3":"2016-11-12T16:03:16.077Z","0.1.2":"2016-04-21T22:39:19.360Z","0.1.1":"2016-01-30T12:10:01.566Z","0.1.0":"2016-01-03T17:29:30.353Z","3.2.3":"2022-01-11T16:46:47.603Z","3.3.0":"2025-05-23T18:24:08.785Z","3.3.1":"2025-06-02T14:58:05.223Z","3.3.2":"2025-06-02T16:18:30.889Z","3.3.3":"2025-06-20T15:27:01.499Z","3.3.4":"2026-02-15T16:58:03.660Z","3.4.0":"2026-04-23T11:58:48.056Z","3.4.1":"2026-04-29T15:49:32.645Z","3.5.0":"2026-05-22T08:56:53.561Z"},"versions":{"3.2.2":{"name":"webpack-sources","version":"3.2.2","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","lint":"eslint --cache lib test/*.js","cover":"jest --coverage"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","source-map":"^0.7.3","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"56018cadc5dde19ed82169b20957732de85a6eef","_id":"webpack-sources@3.2.2","_nodeVersion":"16.13.0","_npmVersion":"7.22.0","dist":{"integrity":"sha512-cp5qdmHnu5T8wRg2G3vZZHoJPN14aqQ89SyQ11NpGH5zEMDCclt49rzo+MaRazk7/UeILhAI+/sEtcM+7Fr0nw==","shasum":"d88e3741833efec57c4c789b6010db9977545260","tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.2.2.tgz","fileCount":27,"unpackedSize":91384,"size":18461,"noattachment":false},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_3.2.2_1636982022738_0.6220332525646282"},"_hasShrinkwrap":false,"publish_time":1636982022918,"_cnpm_publish_time":1636982022918,"_cnpmcore_publish_time":"2021-12-16T10:12:41.291Z"},"3.2.1":{"name":"webpack-sources","version":"3.2.1","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","lint":"eslint --cache lib test/*.js","cover":"jest --coverage"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","source-map":"^0.7.3","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"dccca06b7d28d81f9c3b17cd471d1f03ccdf805a","_id":"webpack-sources@3.2.1","_nodeVersion":"14.15.1","_npmVersion":"7.22.0","dist":{"shasum":"251a7d9720d75ada1469ca07dbb62f3641a05b6d","size":18212,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.2.1.tgz","integrity":"sha512-t6BMVLQ0AkjBOoRTZgqrWm7xbXMBzD+XDq2EZ96+vMfn3qKgsvdXZhbPZ4ElUOpdv4u+iiGe+w3+J75iy/bYGA=="},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_3.2.1_1631546424562_0.15652861680874386"},"_hasShrinkwrap":false,"publish_time":1631546424748,"_cnpm_publish_time":1631546424748,"_cnpmcore_publish_time":"2021-12-16T10:12:41.553Z"},"3.2.0":{"name":"webpack-sources","version":"3.2.0","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","lint":"eslint --cache lib test/*.js","cover":"jest --coverage"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","source-map":"^0.7.3","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"c15d9516fb11a60d2a0d5e3a21cd789f07568a3b","_id":"webpack-sources@3.2.0","_nodeVersion":"16.4.2","_npmVersion":"7.18.1","dist":{"shasum":"b16973bcf844ebcdb3afde32eda1c04d0b90f89d","size":18041,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.2.0.tgz","integrity":"sha512-fahN08Et7P9trej8xz/Z7eRu8ltyiygEo/hnRi9KqBUs80KeDcnf96ZJo++ewWd84fEf3xSX9bp4ZS9hbw0OBw=="},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_3.2.0_1627898280546_0.1906411403048267"},"_hasShrinkwrap":false,"publish_time":1627898280714,"_cnpm_publish_time":1627898280714,"_cnpmcore_publish_time":"2021-12-16T10:12:41.926Z"},"3.1.2":{"name":"webpack-sources","version":"3.1.2","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","lint":"eslint --cache lib test/*.js","cover":"jest --coverage"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","source-map":"^0.7.3","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"cfebf9527440c75ff45bf3ad99afa29a3fdff0e8","_id":"webpack-sources@3.1.2","_nodeVersion":"14.15.1","_npmVersion":"6.14.8","dist":{"shasum":"614c962ac45dfac7f0f482052db8324a6e0dc274","size":18088,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.1.2.tgz","integrity":"sha512-//DeuK5SzM6yFRXNOGK+4tX7QB8PghkL8kFBPyqSlN62oJOUkmby8ptV7+IBGH6BkIuIw5Rjd7OvvwZaoiF4ag=="},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_3.1.2_1627639898730_0.46096201712670126"},"_hasShrinkwrap":false,"publish_time":1627639898853,"_cnpm_publish_time":1627639898853,"_cnpmcore_publish_time":"2021-12-16T10:12:42.322Z"},"3.1.1":{"name":"webpack-sources","version":"3.1.1","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","lint":"eslint --cache lib test","cover":"jest --coverage"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","source-map":"^0.7.3","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"d103b21f883de762132cb665d8444904185ebae3","_id":"webpack-sources@3.1.1","_nodeVersion":"16.4.2","_npmVersion":"7.18.1","dist":{"shasum":"586d15bc9a9723765f6a735f672357d6402f9c57","size":17769,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.1.1.tgz","integrity":"sha512-ztUmIWq0LWaw+1YyR3bXtUPjt8vQedtI9WxGn/q1V1ASHsombnaso7MN9S25lzKS/OuC9Q8lEg3GsZexjDbdlQ=="},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_3.1.1_1627561545584_0.6082941802941475"},"_hasShrinkwrap":false,"publish_time":1627561545747,"_cnpm_publish_time":1627561545747,"_cnpmcore_publish_time":"2021-12-16T10:12:42.604Z"},"3.1.0":{"name":"webpack-sources","version":"3.1.0","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","lint":"eslint --cache lib test","cover":"jest --coverage"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","source-map":"^0.7.3","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"dc042deb92d56cda934b02e2f1bb72d59c2ce2f5","_id":"webpack-sources@3.1.0","_nodeVersion":"16.4.2","_npmVersion":"7.18.1","dist":{"shasum":"e76f64fa033863dedb4870d0cc078587800326a0","size":17769,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.1.0.tgz","integrity":"sha512-9bW1iYAk0XpzI7kdtz7u6NCWB5BhhNrNJ4NhD9Mc8uLs1suTRzfkZhTlElwucNIoNfHr3Un9ifbX0f4sblcUJw=="},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_3.1.0_1627560864806_0.9961857755070878"},"_hasShrinkwrap":false,"publish_time":1627560864971,"_cnpm_publish_time":1627560864971,"_cnpmcore_publish_time":"2021-12-16T10:12:43.348Z"},"3.0.4":{"name":"webpack-sources","version":"3.0.4","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","lint":"eslint --cache lib test","cover":"jest --coverage"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","source-map":"^0.7.3","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"0739bdf198a8ca3db59dd8fa64ccadbd94c1a5f7","_id":"webpack-sources@3.0.4","_nodeVersion":"16.4.2","_npmVersion":"7.18.1","dist":{"shasum":"1690e6e2beb9494c27eb3435ac8b57b729880183","size":17252,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.0.4.tgz","integrity":"sha512-9bF13xKtYl13kHJTK8p63q4ktH9E2utn/sm+JHQGC5cYxo+9v5LRqjgStAsAdD4+Tzob+c4a0eK7LByhMPBrcA=="},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_3.0.4_1627550485940_0.3766519509745956"},"_hasShrinkwrap":false,"publish_time":1627550486089,"_cnpm_publish_time":1627550486089,"_cnpmcore_publish_time":"2021-12-16T10:12:43.672Z"},"3.0.3":{"name":"webpack-sources","version":"3.0.3","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","lint":"eslint --cache lib test","cover":"jest --coverage"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","source-map":"^0.7.3","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"c4d3e28dfba7186d77cbdcb7e7b51086dd9584e9","_id":"webpack-sources@3.0.3","_nodeVersion":"14.15.1","_npmVersion":"6.14.8","dist":{"shasum":"33c478e1f67bf5577d3ec5ced4bded0a06ec88d0","size":17404,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.0.3.tgz","integrity":"sha512-/Qgfp3i1FT2z/tpNj+d/ZeDTbdOWG5V6DdTjIvMLVhrhtpFxmMTZrGnEQEa0J7HF8Plls5kGa7TZ7IsvgnFdtA=="},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_3.0.3_1627482347033_0.3979189877276963"},"_hasShrinkwrap":false,"publish_time":1627482347176,"_cnpm_publish_time":1627482347176,"_cnpmcore_publish_time":"2021-12-16T10:12:43.961Z"},"3.0.2":{"name":"webpack-sources","version":"3.0.2","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","lint":"eslint --cache lib test","cover":"jest --coverage"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","source-map":"^0.7.3","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"5024ff8d42c97b24a32f60b4d0cffa2b5c3a49dd","_id":"webpack-sources@3.0.2","_nodeVersion":"14.15.1","_npmVersion":"6.14.8","dist":{"shasum":"29942415daf201a06278f8e2b92e44e564a9288e","size":17395,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.0.2.tgz","integrity":"sha512-XQ6aGLmqoxZtmpbgwySGhYLNFav1W6+qgMWPGgn6qScxfGrQgMdigkUqZXQ7oB0ydUrvfs9RRyHaSfV153K8Xg=="},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_3.0.2_1627456868338_0.6160292192587054"},"_hasShrinkwrap":false,"publish_time":1627456868535,"_cnpm_publish_time":1627456868535,"_cnpmcore_publish_time":"2021-12-16T10:12:44.212Z"},"3.0.1":{"name":"webpack-sources","version":"3.0.1","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","lint":"eslint --cache lib test","cover":"jest --coverage"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","source-map":"^0.7.3","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"8195523e686d2b4e39cfcc8169554daa793ef74b","_id":"webpack-sources@3.0.1","_nodeVersion":"16.4.2","_npmVersion":"7.18.1","dist":{"shasum":"518cfabdbde3962f75bbecbacd11d88ab3205252","size":17210,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.0.1.tgz","integrity":"sha512-LkBxiXJ3tTuhLaS5gz6D6l77Et8mPWlghAe7bbnmi2PyN1CtkiL/YitR+I0pn9PtBC88Irqgg6F9dBJh8+sJRQ=="},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_3.0.1_1627383558836_0.782149032241402"},"_hasShrinkwrap":false,"publish_time":1627383559017,"_cnpm_publish_time":1627383559017,"_cnpmcore_publish_time":"2021-12-16T10:12:44.483Z"},"3.0.0":{"name":"webpack-sources","version":"3.0.0","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","lint":"eslint --cache lib test","cover":"jest --coverage"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","source-map":"^0.7.3","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"657f0c07e5efefc667b3c55c9d9d8267cff19e7c","_id":"webpack-sources@3.0.0","_nodeVersion":"16.4.2","_npmVersion":"7.18.1","dist":{"shasum":"aa8fbdbc6beee44e4131c3c3fb90dcbccec01631","size":17204,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.0.0.tgz","integrity":"sha512-RGfE5xRC0HIUTj8flXbBJWONiKRndwZGcMX6WgD1VwdT9FJqARhxx1sdZvMiox0e28jAb4jIKLQxFSCVz/mD5A=="},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_3.0.0_1627343174127_0.6508331026679952"},"_hasShrinkwrap":false,"publish_time":1627343174252,"_cnpm_publish_time":1627343174252,"_cnpmcore_publish_time":"2021-12-16T10:12:44.793Z"},"2.3.1":{"name":"webpack-sources","version":"2.3.1","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","travis":"yarn cover","lint":"eslint --cache lib test","precover":"yarn lint","cover":"jest --coverage"},"dependencies":{"source-list-map":"^2.0.1","source-map":"^0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"a23b258c91a7753452114027bd3a1578b6f6d7ad","_id":"webpack-sources@2.3.1","_nodeVersion":"14.15.1","_npmVersion":"6.14.8","dist":{"shasum":"570de0af163949fe272233c2cefe1b56f74511fd","size":13656,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.3.1.tgz","integrity":"sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA=="},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.3.1_1626774553883_0.7945131801599374"},"_hasShrinkwrap":false,"publish_time":1626774554115,"_cnpm_publish_time":1626774554115,"_cnpmcore_publish_time":"2021-12-16T10:12:45.139Z"},"2.3.0":{"name":"webpack-sources","version":"2.3.0","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","travis":"yarn cover","lint":"eslint --cache lib test","precover":"yarn lint","cover":"jest --coverage"},"dependencies":{"source-list-map":"^2.0.1","source-map":"^0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"f943746ba8cd15f263dfe82ad5dc4470752618ab","_id":"webpack-sources@2.3.0","_nodeVersion":"16.2.0","_npmVersion":"7.13.0","dist":{"shasum":"9ed2de69b25143a4c18847586ad9eccb19278cfa","size":13535,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.3.0.tgz","integrity":"sha512-WyOdtwSvOML1kbgtXbTDnEW0jkJ7hZr/bDByIwszhWd/4XX1A3XMkrbFMsuH4+/MfLlZCUzlAdg4r7jaGKEIgQ=="},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.3.0_1622109709999_0.2033264264455399"},"_hasShrinkwrap":false,"publish_time":1622109710301,"_cnpm_publish_time":1622109710301,"_cnpmcore_publish_time":"2021-12-16T10:12:45.402Z"},"2.2.0":{"name":"webpack-sources","version":"2.2.0","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","travis":"yarn cover","lint":"eslint --cache lib test","precover":"yarn lint","cover":"jest --coverage"},"dependencies":{"source-list-map":"^2.0.1","source-map":"^0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"9ec78f2ef3d9169293636c48b7741ebb7b457ac6","_id":"webpack-sources@2.2.0","_nodeVersion":"14.9.0","_npmVersion":"6.14.8","dist":{"shasum":"058926f39e3d443193b6c31547229806ffd02bac","size":13052,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.2.0.tgz","integrity":"sha512-bQsA24JLwcnWGArOKUxYKhX3Mz/nK1Xf6hxullKERyktjNMC4x8koOeaDNTA2fEJ09BdWLbM/iTW0ithREUP0w=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.2.0_1603966900427_0.7132752111300411"},"_hasShrinkwrap":false,"publish_time":1603966900646,"_cnpm_publish_time":1603966900646,"_cnpmcore_publish_time":"2021-12-16T10:12:45.645Z"},"2.1.1":{"name":"webpack-sources","version":"2.1.1","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","travis":"yarn cover","lint":"eslint --cache lib test","precover":"yarn lint","cover":"jest --coverage"},"dependencies":{"source-list-map":"^2.0.1","source-map":"^0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"46ea8bc6b7dec030ce1acb6d15184864f3eff7dd","_id":"webpack-sources@2.1.1","_nodeVersion":"14.9.0","_npmVersion":"6.14.8","dist":{"shasum":"6922dc1bf7f7f95aab56675535b6e20f87b9147f","size":12881,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.1.1.tgz","integrity":"sha512-hraq9n99K564zuZUsE61iATO3jvzxOmGo20UlOe3zgdHOBp8inTJgv7EY4RgvCv7Ywx0/vpQTyYSjnFpv4gNtQ=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.1.1_1603888781445_0.35872761914291096"},"_hasShrinkwrap":false,"publish_time":1603888781613,"_cnpm_publish_time":1603888781613,"_cnpmcore_publish_time":"2021-12-16T10:12:45.911Z"},"2.1.0":{"name":"webpack-sources","version":"2.1.0","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","travis":"yarn cover","lint":"eslint --cache lib test","precover":"yarn lint","cover":"jest --coverage"},"dependencies":{"source-list-map":"^2.0.1","source-map":"^0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"a1e17144ce56fd7222f1a82983700c3198e74ee9","_id":"webpack-sources@2.1.0","_nodeVersion":"14.9.0","_npmVersion":"6.14.8","dist":{"shasum":"0d6d309f5e048e445d34e22c07073a238ca12730","size":12785,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.1.0.tgz","integrity":"sha512-gOlNIlnBzDC4yIqRcguYXscNRfSL4KSd2EXMXxkTPCao56YW8CbjrY+EfW5fqJNOdWhlFMxGTy1ctwJgeprnXg=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.1.0_1603699554917_0.5853037792660696"},"_hasShrinkwrap":false,"publish_time":1603699555075,"_cnpm_publish_time":1603699555075,"_cnpmcore_publish_time":"2021-12-16T10:12:46.133Z"},"2.0.1":{"name":"webpack-sources","version":"2.0.1","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","travis":"yarn cover","lint":"eslint --cache lib test","precover":"yarn lint","cover":"jest --coverage"},"dependencies":{"source-list-map":"^2.0.1","source-map":"^0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"511da963907e8771fa7dd92423e603c689efbc41","_id":"webpack-sources@2.0.1","_nodeVersion":"14.9.0","_npmVersion":"6.14.8","dist":{"shasum":"1467f6e692ddce91e88b8044c44347b1087bbd4f","size":12705,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.0.1.tgz","integrity":"sha512-A9oYz7ANQBK5EN19rUXbvNgfdfZf5U2gP0769OXsj9CvYkCR6OHOsd6OKyEy4H38GGxpsQPKIL83NC64QY6Xmw=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.0.1_1601308211595_0.9999199735382227"},"_hasShrinkwrap":false,"publish_time":1601308211724,"_cnpm_publish_time":1601308211724,"_cnpmcore_publish_time":"2021-12-16T10:12:46.364Z"},"2.0.0":{"name":"webpack-sources","version":"2.0.0","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","travis":"yarn cover","lint":"eslint --cache lib test","precover":"yarn lint","cover":"jest --coverage"},"dependencies":{"source-list-map":"^2.0.1","source-map":"^0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"935731bf2666efd787105d17b1f640f29dd72c75","_id":"webpack-sources@2.0.0","_nodeVersion":"14.9.0","_npmVersion":"6.14.8","dist":{"shasum":"602d4bc7ff2e630ceb753a09ef49f260fa4ae7f0","size":12656,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.0.0.tgz","integrity":"sha512-CpCkDjEKa5vYVRDFDRABBkBomz+82lz9bpXViN1LBc8L/WDXvSyELKcBvBnTeDEiRfMJCGAFG9+04406PLSsIA=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.0.0_1600385611454_0.6049086405021515"},"_hasShrinkwrap":false,"publish_time":1600385611570,"_cnpm_publish_time":1600385611570,"_cnpmcore_publish_time":"2021-12-16T10:12:46.565Z"},"2.0.0-beta.10":{"name":"webpack-sources","version":"2.0.0-beta.10","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","travis":"yarn cover","lint":"eslint --cache lib test","precover":"yarn lint","cover":"jest --coverage"},"dependencies":{"source-list-map":"^2.0.1","source-map":"^0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"readmeFilename":"README.md","gitHead":"2649cb8227f448ed5103ab0a90b636f97b3fef3a","_id":"webpack-sources@2.0.0-beta.10","_nodeVersion":"14.5.0","_npmVersion":"6.14.5","dist":{"shasum":"f603355c5518141976601bfd620a3a5a01ac7b5d","size":12665,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.0.0-beta.10.tgz","integrity":"sha512-HxeYa9Q6nMk3MtSbi5mKUUV+gOxYlGQwujKbeK0JQ+SmLSMgC4cQkZ+xpsWvsUtTvskDwpKvuVLpE9eW7vn0IQ=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.0.0-beta.10_1598284345373_0.6551735511521408"},"_hasShrinkwrap":false,"publish_time":1598284345486,"_cnpm_publish_time":1598284345486,"_cnpmcore_publish_time":"2021-12-16T10:12:46.831Z"},"2.0.0-beta.9":{"name":"webpack-sources","version":"2.0.0-beta.9","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","travis":"yarn cover","lint":"eslint --cache lib test","precover":"yarn lint","cover":"jest --coverage"},"dependencies":{"source-list-map":"^2.0.1","source-map":"^0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"readmeFilename":"README.md","gitHead":"6153bfcaefcd4d0597e50dca253e23dd23c99ec5","_id":"webpack-sources@2.0.0-beta.9","_nodeVersion":"14.5.0","_npmVersion":"6.14.5","dist":{"shasum":"49a504a08c0a8b1c5418c1fdca4ced06b5cb9119","size":12481,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.0.0-beta.9.tgz","integrity":"sha512-q6O+gKGojLye0Fm05vgthtmx5LPbYpAU4FsdMsX8YBgkOZovDbQmBMhjY/CiWhxD9u/0AWeWdXFNbQz17mkdLw=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.0.0-beta.9_1597909446805_0.5586015707814336"},"_hasShrinkwrap":false,"publish_time":1597909446943,"_cnpm_publish_time":1597909446943,"_cnpmcore_publish_time":"2021-12-16T10:12:47.021Z"},"2.0.0-beta.8":{"name":"webpack-sources","version":"2.0.0-beta.8","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"mocha --full-trace --check-leaks","travis":"yarn cover --report lcovonly","lint":"eslint lib test","precover":"yarn lint","cover":"istanbul cover node_modules/mocha/bin/_mocha"},"dependencies":{"source-list-map":"^2.0.1","source-map":"~0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^5.12.0","eslint-config-prettier":"^3.5.0","eslint-plugin-mocha":"^5.2.1","eslint-plugin-node":"^8.0.1","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","mocha":"^5.2.0","prettier":"^1.15.3","should":"^13.2.3","sourcemap-validator":"^1.1.0"},"engines":{"node":">=10.13.0"},"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","readmeFilename":"README.md","gitHead":"29ca74603f6332dd25337d1d9f2a41fc58cd8f14","_id":"webpack-sources@2.0.0-beta.8","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"0fc292239f6767cf4e9b47becfaa340ce6d7ea4f","size":12094,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.0.0-beta.8.tgz","integrity":"sha512-RUaCJu7HYNeuzlY4WYcArcnOzMIj7kHndQ4pBdgP3iiMpG3Ke0BWY5wvb/VEFgsIXp3ZzPGRECwX+4fgpcKFYw=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.0.0-beta.8_1574264170082_0.3259653075687241"},"_hasShrinkwrap":false,"publish_time":1574264170259,"_cnpm_publish_time":1574264170259,"_cnpmcore_publish_time":"2021-12-16T10:12:47.390Z"},"2.0.0-beta.7":{"name":"webpack-sources","version":"2.0.0-beta.7","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"mocha --full-trace --check-leaks","travis":"yarn cover --report lcovonly","lint":"eslint lib test","precover":"yarn lint","cover":"istanbul cover node_modules/mocha/bin/_mocha"},"dependencies":{"source-list-map":"^2.0.1","source-map":"~0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^5.12.0","eslint-config-prettier":"^3.5.0","eslint-plugin-mocha":"^5.2.1","eslint-plugin-node":"^8.0.1","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","mocha":"^5.2.0","prettier":"^1.15.3","should":"^13.2.3","sourcemap-validator":"^1.1.0"},"engines":{"node":">=10.13.0"},"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","readmeFilename":"README.md","gitHead":"78af22b545500d6aab010eb7161ef343bc22e8de","_id":"webpack-sources@2.0.0-beta.7","_nodeVersion":"12.12.0","_npmVersion":"6.11.3","dist":{"shasum":"525b4caaef7371fd7f8bf7e5fffe692880038926","size":12056,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.0.0-beta.7.tgz","integrity":"sha512-jbUJbBcU/PHABhHDtUfXCSU6wD6dYOBMH4oIQnXxyapigyuOSHdkmqENayzV+3OEK8tm45qRQD/ggtyAMxqjAQ=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.0.0-beta.7_1573649891687_0.6142788204135017"},"_hasShrinkwrap":false,"publish_time":1573649891853,"_cnpm_publish_time":1573649891853,"_cnpmcore_publish_time":"2021-12-16T10:12:47.679Z"},"2.0.0-beta.6":{"name":"webpack-sources","version":"2.0.0-beta.6","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"mocha --full-trace --check-leaks","travis":"yarn cover --report lcovonly","lint":"eslint lib test","precover":"yarn lint","cover":"istanbul cover node_modules/mocha/bin/_mocha"},"dependencies":{"source-list-map":"^2.0.1","source-map":"~0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^5.12.0","eslint-config-prettier":"^3.5.0","eslint-plugin-mocha":"^5.2.1","eslint-plugin-node":"^8.0.1","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","mocha":"^5.2.0","prettier":"^1.15.3","should":"^13.2.3","sourcemap-validator":"^1.1.0"},"engines":{"node":">=10.13.0"},"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","readmeFilename":"README.md","gitHead":"6ca4706a4104025494eda4f6e49059842ec000b7","_id":"webpack-sources@2.0.0-beta.6","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"80707d4e417cf734ec634efcb1cdca4c57aa1be8","size":11723,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.0.0-beta.6.tgz","integrity":"sha512-zbYXdCVyNpHFs8vR0O3Tf7kfxmL76RDBGf1kBbeBrW1zlIKAp3msFKBVllwUAfyoMa/5OJ5iQRrqE7zn3eBjbw=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.0.0-beta.6_1573206578766_0.23776116757607757"},"_hasShrinkwrap":false,"publish_time":1573206579502,"_cnpm_publish_time":1573206579502,"_cnpmcore_publish_time":"2021-12-16T10:12:47.878Z"},"2.0.0-beta.5":{"name":"webpack-sources","version":"2.0.0-beta.5","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"mocha --full-trace --check-leaks","travis":"yarn cover --report lcovonly","lint":"eslint lib test","precover":"yarn lint","cover":"istanbul cover node_modules/mocha/bin/_mocha"},"dependencies":{"source-list-map":"^2.0.1","source-map":"~0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^5.12.0","eslint-config-prettier":"^3.5.0","eslint-plugin-mocha":"^5.2.1","eslint-plugin-node":"^8.0.1","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","mocha":"^5.2.0","prettier":"^1.15.3","should":"^13.2.3","sourcemap-validator":"^1.1.0"},"engines":{"node":">=10.13.0"},"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","readmeFilename":"README.md","gitHead":"913329a70ef7f28482e0186faef6831a298a0db2","_id":"webpack-sources@2.0.0-beta.5","_npmVersion":"6.4.1","_nodeVersion":"10.15.3","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"aac603d9fdf04ce96276cf845cd9bb9afd660c4a","size":10502,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.0.0-beta.5.tgz","integrity":"sha512-Y0NWr3nIeJbHzQciKPjWkERbRrmqZPhE4t8K5qOzl4dhJViIdBnvutCCAQ9PKj6MC8lo4Wytu+SZ9Ct8vhX/cQ=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.0.0-beta.5_1571747671817_0.22840850453452033"},"_hasShrinkwrap":false,"publish_time":1571747671973,"_cnpm_publish_time":1571747671973,"_cnpmcore_publish_time":"2021-12-16T10:12:49.159Z"},"2.0.0-beta.4":{"name":"webpack-sources","version":"2.0.0-beta.4","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"mocha --full-trace --check-leaks","travis":"yarn cover --report lcovonly","lint":"eslint lib test","precover":"yarn lint","cover":"istanbul cover node_modules/mocha/bin/_mocha"},"dependencies":{"source-list-map":"^2.0.1","source-map":"~0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^5.12.0","eslint-config-prettier":"^3.5.0","eslint-plugin-mocha":"^5.2.1","eslint-plugin-node":"^8.0.1","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","mocha":"^5.2.0","prettier":"^1.15.3","should":"^13.2.3","sourcemap-validator":"^1.1.0"},"engines":{"node":">=6.11.5"},"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","readmeFilename":"README.md","gitHead":"b18dd96ae5f52a6907dc93e678b20a3fee43d219","_id":"webpack-sources@2.0.0-beta.4","_nodeVersion":"12.8.0","_npmVersion":"6.10.2","dist":{"shasum":"b92f912e16e5c49ebd3c268edf83b13972a3c8ef","size":10369,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.0.0-beta.4.tgz","integrity":"sha512-Xa2Ul5hAlMICQsKN1hjoSTSxJ0UmET4gZXR1e/Sfpos0XNSc2K3fhJHz79CxLyYh0KFEaj6NeoMra9Pp66hRBQ=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.0.0-beta.4_1568302819778_0.33750397726486225"},"_hasShrinkwrap":false,"publish_time":1568302819941,"_cnpm_publish_time":1568302819941,"_cnpmcore_publish_time":"2021-12-16T10:12:49.396Z"},"2.0.0-beta.3":{"name":"webpack-sources","version":"2.0.0-beta.3","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"mocha --full-trace --check-leaks","travis":"yarn cover --report lcovonly","lint":"eslint lib test","precover":"yarn lint","cover":"istanbul cover node_modules/mocha/bin/_mocha"},"dependencies":{"source-list-map":"^2.0.1","source-map":"~0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^5.12.0","eslint-config-prettier":"^3.5.0","eslint-plugin-mocha":"^5.2.1","eslint-plugin-node":"^8.0.1","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","mocha":"^5.2.0","prettier":"^1.15.3","should":"^13.2.3","sourcemap-validator":"^1.1.0"},"engines":{"node":">=6.11.5"},"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","readmeFilename":"README.md","gitHead":"d240fb8092fd0a4e9c1b5ec72bbc3d54d41a338c","_id":"webpack-sources@2.0.0-beta.3","_nodeVersion":"12.4.0","_npmVersion":"6.9.0","dist":{"shasum":"4da69f67f34e3a3d1633a82b6db8a6995f4a7f13","size":10243,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.0.0-beta.3.tgz","integrity":"sha512-ncnvMMP5B/DDkqgPVG8eXTFD+Yk1ch6AKcyRRlvB9B/4DL1exaF1Xh78Y7xcTXwhpVsL2051KSEfl8MkP75yzg=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.0.0-beta.3_1565017305135_0.6160441220609603"},"_hasShrinkwrap":false,"publish_time":1565017305305,"_cnpm_publish_time":1565017305305,"_cnpmcore_publish_time":"2021-12-16T10:12:49.696Z"},"1.4.3":{"name":"webpack-sources","version":"1.4.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-list-map":"^2.0.0","source-map":"~0.6.1"},"devDependencies":{"beautify-lint":"^1.0.3","codecov.io":"^0.1.6","coveralls":"^2.11.6","eslint":"^4.18.2","eslint-plugin-nodeca":"^1.0.3","istanbul":"^0.4.1","js-beautify":"^1.5.10","mocha":"^3.4.2","should":"^11.2.1","sourcemap-validator":"^1.1.0"},"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":"d9117497dfbac940c02aa97a6fe48af633154edc","_id":"webpack-sources@1.4.3","_nodeVersion":"12.4.0","_npmVersion":"6.9.0","dist":{"shasum":"eedd8ec0b928fbf1cbfe994e22d2d890f330a933","size":9612,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-1.4.3.tgz","integrity":"sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_1.4.3_1565017011941_0.3263161823803915"},"_hasShrinkwrap":false,"publish_time":1565017012060,"_cnpm_publish_time":1565017012060,"_cnpmcore_publish_time":"2021-12-16T10:12:49.880Z"},"2.0.0-beta.2":{"name":"webpack-sources","version":"2.0.0-beta.2","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"mocha --full-trace --check-leaks","travis":"yarn cover --report lcovonly","lint":"eslint lib test","precover":"yarn lint","cover":"istanbul cover node_modules/mocha/bin/_mocha"},"dependencies":{"source-list-map":"^2.0.1","source-map":"~0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^5.12.0","eslint-config-prettier":"^3.5.0","eslint-plugin-mocha":"^5.2.1","eslint-plugin-node":"^8.0.1","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","mocha":"^5.2.0","prettier":"^1.15.3","should":"^13.2.3","sourcemap-validator":"^1.1.0"},"engines":{"node":">=6.11.5"},"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","readmeFilename":"README.md","gitHead":"95c52e67c16671e6426a9176d36d8fae3d561c0b","_id":"webpack-sources@2.0.0-beta.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.4","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"9e820680e6fa0d05b228754fe95e27fba63b8521","size":10246,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.0.0-beta.2.tgz","integrity":"sha512-1TtHKmyK/G6F61c78cwJueyexc2A2mHHC7L+oQ7g9j09cM40M4zUDij37IB9+gVvXBC5jGcJ6HQwmwV0skVvVA=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.0.0-beta.2_1565005691693_0.007510184343851867"},"_hasShrinkwrap":false,"publish_time":1565005691786,"_cnpm_publish_time":1565005691786,"_cnpmcore_publish_time":"2021-12-16T10:12:50.143Z"},"1.4.2":{"name":"webpack-sources","version":"1.4.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-list-map":"^2.0.0","source-map":"~0.6.1"},"devDependencies":{"beautify-lint":"^1.0.3","codecov.io":"^0.1.6","coveralls":"^2.11.6","eslint":"^4.18.2","eslint-plugin-nodeca":"^1.0.3","istanbul":"^0.4.1","js-beautify":"^1.5.10","mocha":"^3.4.2","should":"^11.2.1","sourcemap-validator":"^1.1.0"},"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":"741de57fc86867e78e905a4dbc82e4b34873a02d","_id":"webpack-sources@1.4.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.4","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"a688692f5ce53f9db6edef498c0beae73610c9d6","size":9629,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-1.4.2.tgz","integrity":"sha512-V/mHhu5RzLPYVY3Aa+ogcoLqdZU+XdOf0VCLuqSDLJ6oo5lk7Q1n9kG5cySidY/SzXfXwS+CASg4z00q7gIhRQ=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_1.4.2_1565005077597_0.7974915425378057"},"_hasShrinkwrap":false,"publish_time":1565005077718,"_cnpm_publish_time":1565005077718,"_cnpmcore_publish_time":"2021-12-16T10:12:50.364Z"},"1.4.1":{"name":"webpack-sources","version":"1.4.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.6.1"},"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","sourcemap-validator":"^1.1.0"},"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":"47e5f6b7a2dcab49274611ec1f30e40c92b6cea8","_id":"webpack-sources@1.4.1","_nodeVersion":"12.4.0","_npmVersion":"6.9.0","dist":{"shasum":"b91b2c5b1c4e890ff50d1d35b7fa3657040da1da","size":9535,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-1.4.1.tgz","integrity":"sha512-XSz38193PTo/1csJabKaV4b53uRVotlMgqJXm3s3eje0Bu6gQTxYDqpD38CmQfDBA+gN+QqaGjasuC8I/7eW3Q=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_1.4.1_1564579181915_0.2991884361012698"},"_hasShrinkwrap":false,"publish_time":1564579182048,"_cnpm_publish_time":1564579182048,"_cnpmcore_publish_time":"2021-12-16T10:12:50.615Z"},"1.4.0":{"name":"webpack-sources","version":"1.4.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.6.1"},"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","sourcemap-validator":"^1.1.0"},"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":"dd11ce64012927058a87b805b2c0dffd9f6641b4","_id":"webpack-sources@1.4.0","_npmVersion":"6.4.1","_nodeVersion":"8.16.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"be93d629601aa3ea48e8686ee4d78d9c4e706061","size":9527,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-1.4.0.tgz","integrity":"sha512-1e4Cxgqfl8vnDhXMMpegX7JWWP7HwV8Kp8/Oefs6EG52bRtOR9vuOXM1Gl1vy6NwHfUxHeuR6ElD4HamuRPO0A=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_1.4.0_1564566466651_0.10388116617983933"},"_hasShrinkwrap":false,"publish_time":1564566466815,"_cnpm_publish_time":1564566466815,"_cnpmcore_publish_time":"2021-12-16T10:12:50.920Z"},"2.0.0-beta.1":{"name":"webpack-sources","version":"2.0.0-beta.1","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"mocha --full-trace --check-leaks","travis":"yarn cover --report lcovonly","lint":"eslint lib test","precover":"yarn lint","cover":"istanbul cover node_modules/mocha/bin/_mocha"},"dependencies":{"source-list-map":"^2.0.1","source-map":"~0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^5.12.0","eslint-config-prettier":"^3.5.0","eslint-plugin-mocha":"^5.2.1","eslint-plugin-node":"^8.0.1","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","mocha":"^5.2.0","prettier":"^1.15.3","should":"^13.2.3","sourcemap-validator":"^1.1.0"},"engines":{"node":">=6.11.5"},"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","readmeFilename":"README.md","gitHead":"e3fb93fe5b8a7799cc6fcdcbdc271d11effc271a","_id":"webpack-sources@2.0.0-beta.1","_npmVersion":"6.4.1","_nodeVersion":"10.15.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"7502135a42b18e5c6e88f85d706729fef1f9aee9","size":8732,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.0.0-beta.1.tgz","integrity":"sha512-crzDTpRrXVAc5E/PSs3CP4bieKaFUqcKh1fLkul5BGyh9zI/FRK0QCfD4ufmReeEgbWTP7lhmkuSASQeM/dnwQ=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.0.0-beta.1_1547898081677_0.25216097781514524"},"_hasShrinkwrap":false,"publish_time":1547898081817,"_cnpm_publish_time":1547898081817,"_cnpmcore_publish_time":"2021-12-16T10:12:51.152Z"},"2.0.0-beta.0":{"name":"webpack-sources","version":"2.0.0-beta.0","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"mocha --full-trace --check-leaks","travis":"yarn cover --report lcovonly","lint":"eslint lib test","precover":"yarn lint","cover":"istanbul cover node_modules/mocha/bin/_mocha"},"dependencies":{"source-list-map":"^2.0.1","source-map":"~0.6.1"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^5.12.0","eslint-config-prettier":"^3.5.0","eslint-plugin-mocha":"^5.2.1","eslint-plugin-node":"^8.0.1","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","mocha":"^5.2.0","prettier":"^1.15.3","should":"^13.2.3","sourcemap-validator":"^1.1.0"},"engines":{"node":">=6.11.5"},"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","readmeFilename":"README.md","gitHead":"6438e9022885426431f581c8437855d17b6e0e44","_id":"webpack-sources@2.0.0-beta.0","_npmVersion":"6.4.1","_nodeVersion":"10.12.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"f57b7a466f015132c70d8125d6d36993968854d5","size":8642,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-2.0.0-beta.0.tgz","integrity":"sha512-d7mJcjNdNa0hTOzGNdhIM/lVU+Xp1UxTVh42rEjH2/0U/deiaUXJtzj1npqo4TJzEjnXHaIvrMDgWwM/mpiQMw=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_2.0.0-beta.0_1547840615877_0.9774733786111278"},"_hasShrinkwrap":false,"publish_time":1547840615990,"_cnpm_publish_time":1547840615990,"_cnpmcore_publish_time":"2021-12-16T10:12:51.358Z"},"1.3.0":{"name":"webpack-sources","version":"1.3.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.6.1"},"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","sourcemap-validator":"^1.1.0"},"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":"0f9996427a2ee80c908237d917d60e62473a0e2c","_id":"webpack-sources@1.3.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.4","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"2a28dcb9f1f45fe960d8f1493252b5ee6530fa85","size":8016,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-1.3.0.tgz","integrity":"sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_1.3.0_1537434306785_0.2281706249888662"},"_hasShrinkwrap":false,"publish_time":1537434306955,"_cnpm_publish_time":1537434306955,"_cnpmcore_publish_time":"2021-12-16T10:12:51.590Z"},"1.2.0":{"name":"webpack-sources","version":"1.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-list-map":"^2.0.0","source-map":"~0.6.1"},"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"},"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":"30d2a800c36906a0f28e62dac8b8cb239d1403c5","_id":"webpack-sources@1.2.0","_npmVersion":"6.1.0","_nodeVersion":"10.6.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"18181e0d013fce096faf6f8e6d41eeffffdceac2","size":7982,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-1.2.0.tgz","integrity":"sha512-9BZwxR85dNsjWz3blyxdOhTgtnQvv3OEs5xofI0wPYTwu5kaWxS08UuD1oI7WLBLpRO+ylf0ofnXLXWmGb2WMw=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_1.2.0_1535544563641_0.6014773428826166"},"_hasShrinkwrap":false,"publish_time":1535544563738,"_cnpm_publish_time":1535544563738,"_cnpmcore_publish_time":"2021-12-16T10:12:51.912Z"},"1.1.0":{"name":"webpack-sources","version":"1.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-list-map":"^2.0.0","source-map":"~0.6.1"},"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":"b643bfba58c5820f9cf8f00a19979c1208e47692","_id":"webpack-sources@1.1.0","_npmVersion":"5.4.2","_nodeVersion":"8.7.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"a101ebae59d6507354d71d8013950a3a8b7a5a54","size":6989,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-1.1.0.tgz","integrity":"sha512-aqYp18kPphgoO5c/+NaUvEeACtZjMESmDChuD3NBciVpah3XpMEU9VAAtIaB1BsfJWWTSdv8Vv1m3T0aRk2dUw=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources-1.1.0.tgz_1511694386044_0.519901181338355"},"directories":{},"publish_time":1511694386949,"_hasShrinkwrap":false,"_cnpm_publish_time":1511694386949,"_cnpmcore_publish_time":"2021-12-16T10:12:52.132Z"},"1.0.2":{"name":"webpack-sources","version":"1.0.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-list-map":"^2.0.0","source-map":"~0.6.1"},"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":"e1880a046420dd2ebe8aa04f186c59e33c0d3578","_id":"webpack-sources@1.0.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"thelarkinn","email":"sean.larkin@cuw.edu"},"dist":{"shasum":"d0148ec083b3b5ccef1035a6b3ec16442983b27a","size":6722,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-1.0.2.tgz","integrity":"sha512-Y7UddMCv6dGjy81nBv6nuQeFFIt5aalHm7uyDsAsW86nZwfOVPGRr3XMjEQLaT+WKo8rlzhC9qtbJvYKLtAwaw=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources-1.0.2.tgz_1509780058239_0.18867489928379655"},"directories":{},"publish_time":1509780058402,"_hasShrinkwrap":false,"_cnpm_publish_time":1509780058402,"_cnpmcore_publish_time":"2021-12-16T10:12:52.384Z"},"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":{"shasum":"c7356436a4d13123be2e2426a05d1dad9cbe65cf","size":6118,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-1.0.1.tgz","integrity":"sha512-05tMxipUCwHqYaVS8xc7sYPTly8PzXayRCB4dTxLhWTqlKUiwH6ezmEe0OSreL1c30LAuA3Zqmc+uEBUGFJDjw=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources-1.0.1.tgz_1496500323403_0.9926682878285646"},"directories":{},"publish_time":1496500324346,"_hasShrinkwrap":false,"_cnpm_publish_time":1496500324346,"_cnpmcore_publish_time":"2021-12-16T10:12:52.597Z"},"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":{"shasum":"fbbaa2cce01333412281a7e40cbe4b0c9c3344fa","size":6119,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-1.0.0.tgz","integrity":"sha512-yCPXB6Aqbn0w4rp7KqiF8m8bsL6gMRtRyGzd/ZMIS2VPAusZ92gsOCVTIGhEy7faQS1mw//6S5bD10B0zRNa0g=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources-1.0.0.tgz_1496492594647_0.6798736609052867"},"directories":{},"publish_time":1496492595625,"_hasShrinkwrap":false,"_cnpm_publish_time":1496492595625,"_cnpmcore_publish_time":"2021-12-16T10:12:52.819Z"},"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","size":6239,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-0.2.3.tgz","integrity":"sha512-iqanNZjOHLdPn/R0e/nKVn90dm4IsUMxKam0MZD1btWhFub/Cdo1nWdMio6yEqBc0F8mEieOjc+jfBSXwna94Q=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/webpack-sources-0.2.3.tgz_1490398694081_0.5428378875367343"},"directories":{},"publish_time":1490398694635,"_hasShrinkwrap":false,"_cnpm_publish_time":1490398694635,"_cnpmcore_publish_time":"2021-12-16T10:12:53.063Z"},"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","size":6241,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-0.2.2.tgz","integrity":"sha512-ny3XfRo1Tp4Uu7BcA2f47fuubz9jwTFa//Yi5Vc13kz0BoH5+urrnQn2WtpueEx6W/qDjaJH1UwVRcxEpKzdhQ=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-sources-0.2.2.tgz_1490393113183_0.09044172172434628"},"directories":{},"publish_time":1490393115254,"_hasShrinkwrap":false,"_cnpm_publish_time":1490393115254,"_cnpmcore_publish_time":"2021-12-16T10:12:53.320Z"},"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","size":6237,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-0.2.1.tgz","integrity":"sha512-nWtkJTewfvEjkWd98x3XfH4xPDE3rtpxWabKcBHrBrkwx57qXq+plqB1bm99GnC2Qusc0JiU1HoqaGUm2sLKOw=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-sources-0.2.1.tgz_1490389526371_0.09579946473240852"},"directories":{},"publish_time":1490389528371,"_hasShrinkwrap":false,"_cnpm_publish_time":1490389528371,"_cnpmcore_publish_time":"2021-12-16T10:12:53.721Z"},"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","size":6233,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-0.2.0.tgz","integrity":"sha512-ZbWVJmpg5l+nOzBGIAtYVwPU1fo6HnLinwOliJBqt4bhgP1PnBquHBlg6o8iJPmKPlMR+PIcHiouKa75hbLdXQ=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-sources-0.2.0.tgz_1488918763935_0.25536337518133223"},"directories":{},"publish_time":1488918765800,"_hasShrinkwrap":false,"_cnpm_publish_time":1488918765800,"_cnpmcore_publish_time":"2021-12-16T10:12:53.935Z"},"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","size":7610,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-0.1.5.tgz","integrity":"sha512-8CXYfPZkWvY0VWadHDQ3q2hUBqk2IJKTTdDPYb5hwnGVVma8bzqTJEerUDrpWwXnuY9vxZ0mGEnjYD0XLhRHeQ=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/webpack-sources-0.1.5.tgz_1488917506799_0.5009965947829187"},"directories":{},"publish_time":1488917507369,"_hasShrinkwrap":false,"_cnpm_publish_time":1488917507369,"_cnpmcore_publish_time":"2021-12-16T10:12:54.168Z"},"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","size":6063,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-0.1.4.tgz","integrity":"sha512-bl4EhI0mm3a42mpQRAospjtHDbt1KQ33tVdFxVUDWFWeYPJKx6QJ8qwSVPq/xxNfJgYp5Bbeb47Mk1Prsn6ksA=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-sources-0.1.4.tgz_1484494496673_0.4281313957180828"},"directories":{},"publish_time":1484494498888,"_hasShrinkwrap":false,"_cnpm_publish_time":1484494498888,"_cnpmcore_publish_time":"2021-12-16T10:12:54.582Z"},"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","size":7730,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-0.1.3.tgz","integrity":"sha512-Vbl000TZ0unlen1du9H53+o1Hu+3UKb0BCsn6eI+W2AvY6/neZIHrUWMkF3mNQWiUCpoLAottc8c4jY0P1MDdw=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/webpack-sources-0.1.3.tgz_1478966594151_0.9760280998889357"},"directories":{},"publish_time":1478966596077,"_hasShrinkwrap":false,"_cnpm_publish_time":1478966596077,"_cnpmcore_publish_time":"2021-12-16T10:12:54.795Z"},"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","size":7487,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-0.1.2.tgz","integrity":"sha512-gXC8sJPlpheDg/u35g+YlXaxA63dfGPrj2h9FayCCWBCkgAfAFQNY0dMLEmpHn3mLBUzVZYIldF1d9kjHDf8yQ=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/webpack-sources-0.1.2.tgz_1461278357602_0.4156553049106151"},"directories":{},"publish_time":1461278359360,"_hasShrinkwrap":false,"_cnpm_publish_time":1461278359360,"_cnpmcore_publish_time":"2021-12-16T10:12:55.100Z"},"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","size":7495,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-0.1.1.tgz","integrity":"sha512-19dSXxC6TaiXY5v3sZ5KTcU437NbtjS/b0gLM/KIleUOMMiYPWTRrnHO7afgmQfuCUXQgYWEHTK2IsJIgXnKHw=="},"maintainers":[{"name":"jhnns","email":"mail@johannesewald.de"}],"directories":{},"publish_time":1454155801566,"_hasShrinkwrap":false,"_cnpm_publish_time":1454155801566,"_cnpmcore_publish_time":"2021-12-16T10:12:55.344Z"},"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":"jhnns","email":"mail@johannesewald.de"}],"dist":{"shasum":"c814e701c276b83dfd512a19c4fcc3e6052aefde","size":7698,"noattachment":false,"tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-0.1.0.tgz","integrity":"sha512-d7IYAVBGZt3goUEbLbwFp0akcOcWH6cYCQV+FE0T364zAO1ErOYnagToYoEonCL/93w8CMazcuMMDrIJkujRYg=="},"directories":{},"publish_time":1451842170353,"_hasShrinkwrap":false,"_cnpm_publish_time":1451842170353,"_cnpmcore_publish_time":"2021-12-16T10:12:55.688Z"},"3.2.3":{"name":"webpack-sources","version":"3.2.3","description":"Source code handling classes for webpack","main":"./lib/index.js","scripts":{"pretest":"yarn lint","test":"jest","lint":"eslint --cache lib test/*.js","cover":"jest --coverage"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-mocha":"^8.0.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^26.4.0","prettier":"^2.0.5","source-map":"^0.7.3","sourcemap-validator":"^2.1.0"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"gitHead":"9f98066311d53a153fdc7c633422a1d086528027","_id":"webpack-sources@3.2.3","_nodeVersion":"16.13.0","_npmVersion":"7.22.0","dist":{"integrity":"sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==","shasum":"2d4daab8451fd4b240cc27055ff6a0c2ccea0cde","tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.2.3.tgz","fileCount":27,"unpackedSize":91311,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3bR3CRA9TVsSAnZWagAAtckP/0yM8j11TRznurw73j2U\ny5DttuNu4qLbVuyuuDTDmSsHvrXOH03ilnUrnRNqG79J3PE2z9WfO9kMjbFn\n8ZYdKfm4KWpinGodyL9EdeaJGDcZKKzK0F+3rlfRqd+c++ckWh5K8EVVPigq\nQqHaAvloykukpaYK5Tifl2CzYQqWloZ8IjK1CaF8TKNhcSIhf85aJx/evwyx\nDEaAn0VXyZ7D/phWe/Fgb4cCVPQqZDNRDYDcvl0d7yHd+9v+u2NIV0xdQd2d\nfD73RwvAJqmlCXqiIrIFTNaxL4SO3/fmzGVFibDcnbss2g0la1IAC+7Q6j59\nAQIPi0DwI/82QYS6xQqRcSxXxlvCdenCLGDnSMu8bOR7uo5HO/yBD/BA75Q5\nkkHyAM6xiCR64TLToMvu4ICb1mC2BGe3z3PDw67X+DMXVtZuE4+44KmWhUxt\nMogi5L9HGP3jIWWe32pKfKD4oPhjt+2qbwXfnNHpCj1xK3pzDaDCQ3rprZzH\nIb79idgXcKxKbY/LNEl/XGJ/HzWT5aWxRJLkLdh5lAFRozasARSDfxvGX7Uq\nSLK6KeljV7pz7rOqpeSQ6w8z/YVy+CS7dM3fSP6PNHVPgFS/jH+4mTOU3eiE\nNI2E12ZJSGYv0Z5OboKvU2zINAvbD740djbWmHE17NVLFZi8nksjQG2pjiHf\nbSMb\r\n=lvBR\r\n-----END PGP SIGNATURE-----\r\n","size":18436},"_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"directories":{},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/webpack-sources_3.2.3_1641919607417_0.38279536501534106"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-11T16:56:59.916Z"},"3.3.0":{"name":"webpack-sources","version":"3.3.0","description":"Source code handling classes for webpack","main":"lib/index.js","types":"types.d.ts","scripts":{"lint":"yarn lint:code && yarn lint:types && yarn lint:types-test && yarn lint:special","lint:code":"eslint --cache lib/**/*.js test/*.js","lint:special":"node node_modules/tooling/lockfile-lint && node node_modules/tooling/inherit-types && node node_modules/tooling/format-file-header && node node_modules/tooling/generate-types","lint:types":"tsc","lint:types-test":"tsc -p tsconfig.types.test.json","fmt":"yarn fmt:base --loglevel warn --write","fmt:check":"yarn fmt:base --check","fmt:base":"prettier --cache --ignore-unknown .","fix":"yarn fix:code && yarn fix:special","fix:code":"yarn lint:code --fix","fix:special":"node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-file-header --write && node node_modules/tooling/generate-types --write","pretest":"yarn lint","test":"jest","cover":"jest --coverage"},"devDependencies":{"@types/jest":"^27.5.2","coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^27.5.1","prettier":"^2.0.5","source-map":"^0.7.3","sourcemap-validator":"^2.1.0","tooling":"github:webpack/tooling#v1.23.9","typescript":"^5.3.3","webpack":"^5.99.9"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"_id":"webpack-sources@3.3.0","gitHead":"016358f8ec92a8ee055325e133a71e39a6c63f6c","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-77R0RDmJfj9dyv5p3bM5pOHa+X8/ZkO9c7kpDstigkC4nIDobadsfSGCwB4bKhMVxqAok8tajaoR8rirM7+VFQ==","shasum":"8d3449f1ed3f254e722a529a0a344a37d2d17048","tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.3.0.tgz","fileCount":29,"unpackedSize":136590,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIH0yowA3leTdePkVb+LpY2+XUU3tAlEkLNqzRr73XFc2AiEA4HgqIxtw6FmW0pzlwd3Aj6nfSxfJUanZGpmr9RpWPsc="}],"size":25084},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/webpack-sources_3.3.0_1748024648539_0.22221428322802494"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-05-23T18:24:08.785Z","publish_time":1748024648785,"_source_registry_name":"default"},"3.3.1":{"name":"webpack-sources","version":"3.3.1","description":"Source code handling classes for webpack","main":"lib/index.js","types":"types.d.ts","scripts":{"lint":"yarn lint:code && yarn lint:types && yarn lint:types-test && yarn lint:special","lint:code":"eslint --cache lib/**/*.js test/*.js","lint:special":"node node_modules/tooling/lockfile-lint && node node_modules/tooling/inherit-types && node node_modules/tooling/format-file-header && node node_modules/tooling/generate-types","lint:types":"tsc","lint:types-test":"tsc -p tsconfig.types.test.json","fmt":"yarn fmt:base --loglevel warn --write","fmt:check":"yarn fmt:base --check","fmt:base":"prettier --cache --ignore-unknown .","fix":"yarn fix:code && yarn fix:special","fix:code":"yarn lint:code --fix","fix:special":"node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-file-header --write && node node_modules/tooling/generate-types --write","pretest":"yarn lint","test":"jest","cover":"jest --coverage"},"devDependencies":{"@types/jest":"^27.5.2","coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^27.5.1","prettier":"^2.0.5","source-map":"^0.7.3","sourcemap-validator":"^2.1.0","tooling":"github:webpack/tooling#v1.23.9","typescript":"^5.3.3","webpack":"^5.99.9"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"_id":"webpack-sources@3.3.1","gitHead":"60b8628971266198eb4dae5ce0baf0941cfd012a","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-EWzBqw2ZH/hIXIWIdOTvFHij6MuYdDHZVL12bZb921CrmP9UqYhK9+a3OC/onMGeBYrt2aOivHCLy5E+x5wYOA==","shasum":"ad67407c0bcc9a2bd963828ee324da6130945cc2","tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.3.1.tgz","fileCount":29,"unpackedSize":136102,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCgKv6gZZnLuBEH7x1x5PgWl3ZgDHhbgnqOWAgxaTvGwgIgT5m+4bsh75G18PrwfTmFD171C0SEAHFtFkdXdl4AQkE="}],"size":25029},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/webpack-sources_3.3.1_1748876285054_0.22615596513387004"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-06-02T14:58:05.223Z","publish_time":1748876285223,"_source_registry_name":"default"},"3.3.2":{"name":"webpack-sources","version":"3.3.2","description":"Source code handling classes for webpack","main":"lib/index.js","types":"types.d.ts","scripts":{"lint":"yarn lint:code && yarn lint:types && yarn lint:types-test && yarn lint:special","lint:code":"eslint --cache lib/**/*.js test/*.js","lint:special":"node node_modules/tooling/lockfile-lint && node node_modules/tooling/inherit-types && node node_modules/tooling/format-file-header && node node_modules/tooling/generate-types","lint:types":"tsc","lint:types-test":"tsc -p tsconfig.types.test.json","fmt":"yarn fmt:base --loglevel warn --write","fmt:check":"yarn fmt:base --check","fmt:base":"prettier --cache --ignore-unknown .","fix":"yarn fix:code && yarn fix:special","fix:code":"yarn lint:code --fix","fix:special":"node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-file-header --write && node node_modules/tooling/generate-types --write","pretest":"yarn lint","test":"jest","cover":"jest --coverage"},"devDependencies":{"@types/jest":"^27.5.2","coveralls":"^3.0.2","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-jest":"^23.20.0","eslint-plugin-node":"^11.1.0","eslint-plugin-nodeca":"^1.0.3","eslint-plugin-prettier":"^3.0.1","istanbul":"^0.4.1","jest":"^27.5.1","prettier":"^2.0.5","source-map":"^0.7.3","sourcemap-validator":"^2.1.0","tooling":"github:webpack/tooling#v1.23.9","typescript":"^5.3.3","webpack":"^5.99.9"},"engines":{"node":">=10.13.0"},"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","jest":{"forceExit":true,"testMatch":["<rootDir>/test/*.js"],"transformIgnorePatterns":["<rootDir>"],"testEnvironment":"node"},"_id":"webpack-sources@3.3.2","gitHead":"9d63cbcdc1e5878d01876aa85c0fbcc51983f23b","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-ykKKus8lqlgXX/1WjudpIEjqsafjOTcOJqxnAbMLAu/KCsDCJ6GBtvscewvTkrn24HsnvFwrSCbenFrhtcCsAA==","shasum":"0ab55ab0b380ce53c45ca40cb7b33bab3149ea85","tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.3.2.tgz","fileCount":29,"unpackedSize":136258,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQCvv8XXU92fbQ+zYo2UL9Ahzsq8P2zSoioDHf5CyMLqaAIhAOj3Y8S8h7It4un55Aa5Fr468GMDQC4+oQoWUww6r26z"}],"size":25033},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/webpack-sources_3.3.2_1748881110715_0.4164354966518846"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-06-02T16:18:30.889Z","publish_time":1748881110889,"_source_registry_name":"default"},"3.3.3":{"name":"webpack-sources","version":"3.3.3","description":"Source code handling classes for webpack","main":"lib/index.js","types":"types.d.ts","scripts":{"lint":"yarn lint:code && yarn lint:types && yarn lint:types-test && yarn lint:special","lint:code":"eslint --cache .","lint:special":"node node_modules/tooling/lockfile-lint && node node_modules/tooling/inherit-types && node node_modules/tooling/format-file-header && node node_modules/tooling/generate-types","lint:types":"tsc","lint:types-test":"tsc -p tsconfig.types.test.json","fmt":"yarn fmt:base --loglevel warn --write","fmt:check":"yarn fmt:base --check","fmt:base":"prettier --cache --ignore-unknown .","fix":"yarn fix:code && yarn fix:special","fix:code":"yarn lint:code --fix","fix:special":"node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-file-header --write && node node_modules/tooling/generate-types --write","pretest":"yarn lint","test":"jest","cover":"jest --coverage"},"devDependencies":{"@eslint/js":"^9.28.0","@eslint/markdown":"^6.5.0","@stylistic/eslint-plugin":"^4.4.1","@types/jest":"^27.5.2","coveralls":"^3.0.2","globals":"^16.2.0","eslint":"^9.28.0","eslint-config-webpack":"^4.0.8","eslint-config-prettier":"^10.1.5","eslint-plugin-import":"^2.31.0","eslint-plugin-jest":"^28.12.0","eslint-plugin-jsdoc":"^50.7.1","eslint-plugin-n":"^17.19.0","eslint-plugin-prettier":"^5.4.1","eslint-plugin-unicorn":"^59.0.1","istanbul":"^0.4.1","jest":"^27.5.1","prettier":"^3.5.3","prettier-2":"npm:prettier@^2","source-map":"^0.7.3","sourcemap-validator":"^2.1.0","tooling":"github:webpack/tooling#v1.23.10","typescript":"^5.3.3","webpack":"^5.99.9"},"engines":{"node":">=10.13.0"},"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@3.3.3","gitHead":"1b98c0f26810925d66d56088a07dc9a1a43e63cd","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==","shasum":"d4bf7f9909675d7a070ff14d0ef2a4f3c982c723","tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.3.3.tgz","fileCount":29,"unpackedSize":137704,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIDEkChpC9k4yDHbgZ1jqD9uI2y/USwonwu4mMSlRABB1AiEAmzpKZCM/Ei/qSnmi62WXMSjWBCMjN5o1k8EpgkHsmgM="}],"size":25424},"_npmUser":{"name":"evilebottnawi","actor":{"name":"evilebottnawi","type":"user","email":"sheo13666q@gmail.com"},"email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"jhnns","email":"mail@johannesewald.de"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/webpack-sources_3.3.3_1750433221311_0.5717062945807976"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-06-20T15:27:01.499Z","publish_time":1750433221499,"_source_registry_name":"default"},"3.3.4":{"name":"webpack-sources","version":"3.3.4","description":"Source code handling classes for webpack","keywords":["webpack","source-map"],"homepage":"https://github.com/webpack/webpack-sources#readme","bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"license":"MIT","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","types":"types.d.ts","scripts":{"lint":"npm run lint:code && npm run lint:types && npm run lint:types-test && npm run lint:special","lint:code":"eslint --cache .","lint:special":"node node_modules/tooling/inherit-types && node node_modules/tooling/format-file-header && node node_modules/tooling/generate-types","lint:types":"tsc","lint:types-test":"tsc -p tsconfig.types.test.json","fmt":"npm run fmt:base -- --loglevel warn --write","fmt:check":"npm run fmt:base -- --check","fmt:base":"prettier --cache --ignore-unknown .","fix":"npm run fix:code && npm run fix:special","fix:code":"npm run lint:code -- --fix","fix:special":"node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-file-header --write && node node_modules/tooling/generate-types --write","pretest":"npm run lint","test":"jest","cover":"jest --coverage"},"devDependencies":{"@types/jest":"^27.5.2","eslint":"^9.28.0","eslint-config-webpack":"^4.0.8","jest":"^27.5.1","prettier":"^3.5.3","prettier-2":"npm:prettier@^2","source-map":"^0.7.3","sourcemap-validator":"^2.1.0","tooling":"github:webpack/tooling#v1.24.4","typescript":"^5.3.3","webpack":"^5.99.9"},"engines":{"node":">=10.13.0"},"gitHead":"060a560472013188af017254627c66f93bf23b42","_id":"webpack-sources@3.3.4","_nodeVersion":"24.11.1","_npmVersion":"11.6.2","dist":{"integrity":"sha512-7tP1PdV4vF+lYPnkMR0jMY5/la2ub5Fc/8VQrrU+lXkiM6C4TjVfGw7iKfyhnTQOsD+6Q/iKw0eFciziRgD58Q==","shasum":"a338b95eb484ecc75fbb196cbe8a2890618b4891","tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.3.4.tgz","fileCount":29,"unpackedSize":138326,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIARRtyYsxNOrDKZKHkylQ6uWlpPfDaSiXKvOTwp89TRKAiAUw8EmgLL8k1idhfe5BMfnkeGq1Nk5Qn6IyJ6jb/PyKg=="}],"size":25351},"_npmUser":{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"15000621931","email":"784487301@qq.com"},{"name":"ev1stensberg","email":"evenstensberg@gmail.com"},{"name":"__hai","email":"haijie0619@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/webpack-sources_3.3.4_1771174683506_0.24082719533244124"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-02-15T16:58:03.660Z","publish_time":1771174683660,"_source_registry_name":"default"},"3.4.0":{"name":"webpack-sources","version":"3.4.0","description":"Source code handling classes for webpack","keywords":["webpack","source-map"],"homepage":"https://github.com/webpack/webpack-sources#readme","bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"license":"MIT","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","types":"types.d.ts","scripts":{"lint":"npm run lint:code && npm run lint:types && npm run lint:types-test && npm run lint:special","lint:code":"eslint --cache .","lint:special":"node node_modules/tooling/inherit-types && node node_modules/tooling/format-file-header && node node_modules/tooling/generate-types","lint:types":"tsc","lint:types-test":"tsc -p tsconfig.types.test.json","fmt":"npm run fmt:base -- --loglevel warn --write","fmt:check":"npm run fmt:base -- --check","fmt:base":"prettier --cache --ignore-unknown .","fix":"npm run fix:code && npm run fix:special","fix:code":"npm run lint:code -- --fix","fix:special":"node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-file-header --write && node node_modules/tooling/generate-types --write","pretest":"npm run lint","test":"jest","test:coverage":"jest --coverage","benchmark":"node --max-old-space-size=4096 --hash-seed=1 --random-seed=1 --no-opt --predictable --predictable-gc-schedule --interpreted-frames-native-stack --allow-natives-syntax --expose-gc --no-concurrent-sweeping ./benchmark/run.mjs","version":"changeset version","release":"changeset publish"},"devDependencies":{"@changesets/cli":"^2.30.0","@changesets/get-github-info":"^0.8.0","@codspeed/core":"^5.2.0","@types/jest":"^30.0.0","eslint":"^9.28.0","eslint-config-webpack":"^4.0.8","jest":"^30.3.0","prettier":"^3.5.3","prettier-2":"npm:prettier@^2","source-map":"^0.7.3","sourcemap-validator":"^2.1.0","tinybench":"^6.0.0","tooling":"github:webpack/tooling#v1.26.1","typescript":"^6.0.2","webpack":"^5.99.9"},"engines":{"node":">=10.13.0"},"gitHead":"7c520c294a1baa7012909cbbc8b38673501822b5","_id":"webpack-sources@3.4.0","_nodeVersion":"24.15.0","_npmVersion":"11.12.1","dist":{"integrity":"sha512-gHwIe1cgBvvfLeu1Yz/dcFpmHfKDVxxyqI+kzqmuxZED81z2ChxpyqPaWcNqigPywhaEke7AjSGga+kxY55gjQ==","shasum":"67cdfdff349ff1e3e7ca5c1ed6a2802b84cf6cf5","tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.4.0.tgz","fileCount":29,"unpackedSize":146835,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/webpack-sources@3.4.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIDvoCJI9ussqhPqHvcItsgkRvIoklzOd1E2uZNXjhYjtAiAfvk1GI7Pe09vsCWHZespbGmgTxG0kN1iPUjhbmqqdBA=="}],"size":28375},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:705ff66b-3334-40dd-a026-57d03879e87e"}},"directories":{},"maintainers":[{"name":"15000621931","email":"784487301@qq.com"},{"name":"ev1stensberg","email":"evenstensberg@gmail.com"},{"name":"__hai","email":"haijie0619@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"avivkeller","email":"me@aviv.sh"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/webpack-sources_3.4.0_1776945527900_0.8483578079703584"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-04-23T11:58:48.056Z","publish_time":1776945528056,"_source_registry_name":"default"},"3.4.1":{"name":"webpack-sources","version":"3.4.1","description":"Source code handling classes for webpack","keywords":["webpack","source-map"],"homepage":"https://github.com/webpack/webpack-sources#readme","bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"license":"MIT","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","types":"types.d.ts","scripts":{"lint":"npm run lint:code && npm run lint:types && npm run lint:types-test && npm run lint:special","lint:code":"eslint --cache .","lint:special":"node node_modules/tooling/inherit-types && node node_modules/tooling/format-file-header && node node_modules/tooling/generate-types","lint:types":"tsc","lint:types-test":"tsc -p tsconfig.types.test.json","fmt":"npm run fmt:base -- --loglevel warn --write","fmt:check":"npm run fmt:base -- --check","fmt:base":"prettier --cache --ignore-unknown .","fix":"npm run fix:code && npm run fix:special","fix:code":"npm run lint:code -- --fix","fix:special":"node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-file-header --write && node node_modules/tooling/generate-types --write","pretest":"npm run lint","test":"jest","test:coverage":"jest --coverage","benchmark":"node --max-old-space-size=4096 --hash-seed=1 --random-seed=1 --no-opt --predictable --predictable-gc-schedule --interpreted-frames-native-stack --allow-natives-syntax --expose-gc --no-concurrent-sweeping ./benchmark/run.mjs","version":"changeset version","release":"changeset publish"},"devDependencies":{"@changesets/cli":"^2.30.0","@changesets/get-github-info":"^0.8.0","@codspeed/core":"^5.2.0","@types/jest":"^30.0.0","eslint":"^9.28.0","eslint-config-webpack":"^4.0.8","jest":"^30.3.0","prettier":"^3.5.3","prettier-2":"npm:prettier@^2","source-map":"^0.7.3","sourcemap-validator":"^2.1.0","tinybench":"^6.0.0","tooling":"github:webpack/tooling#v1.26.1","typescript":"^6.0.2","webpack":"^5.99.9"},"engines":{"node":">=10.13.0"},"gitHead":"5a0b655a2a8d9c181392c6a40cc076572a6e4938","_id":"webpack-sources@3.4.1","_nodeVersion":"24.14.1","_npmVersion":"11.11.0","dist":{"integrity":"sha512-eACpxRN02yaawnt+uUNIF7Qje6A9zArxBbcAJjK1PK3S9Ycg5jIuJ8pW4q8EMnwNZCEGltcjkRx1QzOxOkKD8A==","shasum":"009d110999ebd9fb3a6fa8d32eec6f84d940e65d","tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.4.1.tgz","fileCount":29,"unpackedSize":149581,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/webpack-sources@3.4.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCGbs204p7pi2Or75yH05Bn66qpmmgm7zpRJHMaiAFOwwIgd7kk9vspI0N+5qXfRlR2rabE8auQaNzsVn+R6bSSBdc="}],"size":29314},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:705ff66b-3334-40dd-a026-57d03879e87e"}},"directories":{},"maintainers":[{"name":"15000621931","email":"784487301@qq.com"},{"name":"ev1stensberg","email":"evenstensberg@gmail.com"},{"name":"__hai","email":"haijie0619@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"avivkeller","email":"me@aviv.sh"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/webpack-sources_3.4.1_1777477772515_0.8126042292615256"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-04-29T15:49:32.645Z","publish_time":1777477772645,"_source_registry_name":"default"},"3.5.0":{"name":"webpack-sources","version":"3.5.0","description":"Source code handling classes for webpack","keywords":["webpack","source-map"],"homepage":"https://github.com/webpack/webpack-sources#readme","bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"license":"MIT","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","types":"types.d.ts","scripts":{"lint":"npm run lint:code && npm run lint:types && npm run lint:types-test && npm run lint:special","lint:code":"eslint --cache .","lint:special":"node node_modules/tooling/inherit-types && node node_modules/tooling/format-file-header && node node_modules/tooling/generate-types","lint:types":"tsc","lint:types-test":"tsc -p tsconfig.types.test.json","fmt":"npm run fmt:base -- --loglevel warn --write","fmt:check":"npm run fmt:base -- --check","fmt:base":"prettier --cache --ignore-unknown .","fix":"npm run fix:code && npm run fix:special","fix:code":"npm run lint:code -- --fix","fix:special":"node node_modules/tooling/inherit-types --write && node node_modules/tooling/format-file-header --write && node node_modules/tooling/generate-types --write","pretest":"npm run lint","test":"jest","test:coverage":"jest --coverage","benchmark":"node --max-old-space-size=4096 --hash-seed=1 --random-seed=1 --no-opt --predictable --predictable-gc-schedule --interpreted-frames-native-stack --allow-natives-syntax --expose-gc --no-concurrent-sweeping ./benchmark/run.mjs","benchmark:memory":"node --expose-gc --max-old-space-size=4096 ./benchmark/run-memory.mjs","version":"changeset version","release":"changeset publish"},"devDependencies":{"@changesets/cli":"^2.30.0","@changesets/get-github-info":"^0.8.0","@codspeed/core":"^5.2.0","@types/jest":"^30.0.0","eslint":"^9.28.0","eslint-config-webpack":"^4.0.8","jest":"^30.3.0","prettier":"^3.5.3","prettier-2":"npm:prettier@^2","source-map":"^0.7.3","sourcemap-validator":"^2.1.0","tinybench":"^6.0.0","tooling":"github:webpack/tooling#v1.26.2","typescript":"^6.0.2","webpack":"^5.99.9"},"engines":{"node":">=10.13.0"},"gitHead":"7ad6559f74ad422109e131a82bcd9dabb95d9116","_id":"webpack-sources@3.5.0","_nodeVersion":"24.15.0","_npmVersion":"11.12.1","dist":{"integrity":"sha512-HPuy+uuoTCaaoEoI1LQ3JN9+vrPBvEesnnX1jADHy728cHSMlq4wUc4afYqahq2B1mhQVZxCXOkNTnXltr+2vQ==","shasum":"87bf7f5801a4e985b1f1c92b64b9620a02f76d08","tarball":"https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.5.0.tgz","fileCount":29,"unpackedSize":164124,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/webpack-sources@3.5.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCICdDxitXhCnjlqHclZFx94lwf2tEUH7in+XM64dD6L/vAiEAl6PP0++VcAnlZiRXptE5EArirGpJPMgiOXmt09RRHeg="}],"size":31719},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:705ff66b-3334-40dd-a026-57d03879e87e"}},"directories":{},"maintainers":[{"name":"15000621931","email":"784487301@qq.com"},{"name":"ev1stensberg","email":"evenstensberg@gmail.com"},{"name":"__hai","email":"haijie0619@gmail.com"},{"name":"sokra","email":"tobias.koppers@googlemail.com"},{"name":"avivkeller","email":"me@aviv.sh"},{"name":"evilebottnawi","email":"sheo13666q@gmail.com"},{"name":"jhnns","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/webpack-sources_3.5.0_1779440213418_0.41611469884425323"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-05-22T08:56:53.561Z","publish_time":1779440213561,"_source_registry_name":"default"}},"bugs":{"url":"https://github.com/webpack/webpack-sources/issues"},"homepage":"https://github.com/webpack/webpack-sources#readme","keywords":["webpack","source-map"],"repository":{"type":"git","url":"git+https://github.com/webpack/webpack-sources.git"},"_source_registry_name":"default"}