{"_id":"adjust-sourcemap-loader","maintainers":[{"name":"bholloway","email":"npm@bholloway.com"}],"keywords":["webpack","loader","source-map","sourcemap","sources","resolve","adjust"],"dist-tags":{"next":"2.0.0","latest":"5.0.0"},"author":{"name":"bholloway"},"description":"Webpack loader that adjusts source maps","readme":"# Adjust Source-map Loader\n\n[![NPM](https://nodei.co/npm/adjust-sourcemap-loader.png)](http://github.com/bholloway/adjust-sourcemap-loader)\n\nWebpack loader that adjusts source maps.\n\nUse as a **loader** to debug source-maps or to adjust source-maps between other loaders.\n\nUse as a **module filename template** to ensure the final source-map are to your liking.\n\n## Usage : Loader\n\n``` javascript\nrequire('adjust-sourcemap?format=absolute!babel?sourceMap');\n```\n\n### Source maps required\n\nNote that **source maps** must be enabled on any preceding loader. In the above example we use `babel?sourceMap`.\n\n### Apply via webpack config\n\nIt is preferable to adjust your `webpack.config` so to avoid having to prefix every `require()` statement:\n\n``` javascript\nmodule.exports = {\n  module: {\n    loaders: [\n      {\n        test   : /\\.js/,\n        loaders: ['adjust-sourcemap?format=absolute', 'babel?sourceMap']\n      }\n    ]\n  }\n};\n```\n\n## Usage : Module filename template\n\nSpecifying a certain format as the final step in a loader chain will **not** influence the final source format that Webpack will output. Instead the format is determined by the **module filename template**.\n\nThere are limitations to the filename templating that Webpack provides. This package may also operate as a custom template function that will convert output source-map sources to the desired `format`.\n\nIn the following example we ensure project-relative source-map sources are output.\n\n```javascript\nvar templateFn = require('adjust-sourcemap-loader')\n  .moduleFilenameTemplate({\n    format: 'projectRelative'\n  });\n\nmodule.exports = {\n  output: {\n    ...\n    devtoolModuleFilenameTemplate        : templateFn,\n    devtoolFallbackModuleFilenameTemplate: templateFn\n  }\n};\n```\n\n## Options\n\nAs a loader, options may be set using [query parameters](https://webpack.github.io/docs/using-loaders.html#query-parameters) or by using [programmatic parameters](https://webpack.github.io/docs/how-to-write-a-loader.html#programmable-objects-as-query-option). Programmatic means the following in your `webpack.config`.\n\n```javascript\nmodule.exports = {\n   adjustSourcemapLoader: {\n      ...\n   }\n}\n```\n\nWhere `...` is a hash of any of the following options.\n\n* **`debug`** : `boolean|RegExp` May be used alone (boolean) or with a `RegExp` to match the resource(s) you are interested in debugging.\n\n* **`fail`** : `boolean` Implies an **Error** if a source-map source cannot be decoded.\n\n* **`format`** : `string` Optional output format for source-map `sources`. Must be the name of one of the available `codecs`. Omitting the format will result in **no change** and the outgoing source-map will match the incomming one.\n\n* **`root`** : `boolean` A boolean flag that indices that a `sourceRoot` path sould be included in the output map. This is contingent on a `format` being specified.\n\n* **`codecs`** : `Array.<{name:string, decode:function, encode:function, root:function}>` Optional Array of codecs. There are a number of built-in codecs available. If you specify you own codecs you will loose those that are built-in. However you can include them from the `codec/` directory.\n\nNote that **query** parameters take precedence over **programmatic** parameters.\n\n### Changing the format\n\nBuilt-in codecs that may be specified as a `format` include:\n\n* `absolute`\n* `outputRelative`\n* `projectRelative`\n* `webpackProtocol`\n* `sourceRelative` (works for loader only, **not** Module filename template)\n\n### Specifying codecs\n\nThere are additional built-in codecs that do not support encoding. These are still necessary to decode source-map sources. If you specify your own `options.codecs` then you should **also include the built-in codecs**. Otherwise you will find that some sources cannot be decoded.\n\nThe existing codecs may be found in `/codec`, or on the loader itself:\n\n```javascript\nvar inBuiltCodecs = require('adjust-sourcemap-loader').codecs,\n    myCodecs      = [\n      {\n        name  : 'foo',\n        decode: function(uri) {...},\n        encode: function(absolute) {...},\n        root  : function() {...}\n      },\n      ...\n    ];\n\nmodule.exports = {\n   adjustSourcemapLoader: {\n      codecs: inBuiltCodecs.concat(myCodecs)\n   }\n}\n```\n\nThe codec **order is important**. Those that come first have precedence. Any codec that detects a distinct URI should be foremost so that illegal paths are not encountered by successive codecs.\n\n### Abstract codecs\n\nA codec that detects generated code and cannot `decode()` a URI to an absolute file path.\n\nInstead of implementing `encode()` or `root()` it should instead specify `abstract:true`. Its `decode()` function then may return `boolean` where it detects such generated sources.\n\nFor example, a built-in abstract codec will match the **Webpack bootstrap** code and ensure that its illegal source uri is not encountered by later coders.\n\n## How it works\n\nThe loader will receive a source map as its second parameter, so long as the preceding loader was using source-maps.\n\nThe exception is the **css-loader** where the source-map is in the content, which is **not currently supported** .\n\nThe source-map `sources` are parsed by applying **codec.decode()** functions until one of them returns an absolute path to a file that exists. The exception is abstract codecs, where the source with remain unchanged.\n\nIf a format is specified then the source-map `sources` are recreated by applying the **codec.encode()** function for the stated `format` and (where the `root` option is specified) the **codec.root()** function will set the source-map `sourceRoot`.\n\nIf a codec does not specify **codec.encode()** or **codec.root()** then it may **not** be used as the `format`.\n\n","repository":{"type":"git","url":"git+https://github.com/bholloway/adjust-sourcemap-loader.git"},"bugs":{"url":"https://github.com/bholloway/adjust-sourcemap-loader/issues"},"license":"MIT","versions":{"2.0.0":{"name":"adjust-sourcemap-loader","version":"2.0.0","description":"Webpack loader that adjusts source maps","main":"index.js","repository":{"type":"git","url":"git+https://github.com/bholloway/adjust-sourcemap-loader.git"},"keywords":["webpack","loader","source-map","sourcemap","sources","resolve","adjust"],"author":{"name":"bholloway"},"license":"MIT","bugs":{"url":"https://github.com/bholloway/adjust-sourcemap-loader/issues"},"homepage":"https://github.com/bholloway/adjust-sourcemap-loader","dependencies":{"assert":"1.4.1","camelcase":"5.0.0","loader-utils":"1.2.3","object-path":"0.11.4","regex-parser":"2.2.10"},"devDependencies":{"jshint":"^2.10.1"},"scripts":{"lint":"jshint index.js lib"},"gitHead":"b5781ceed0a5f7287a081ddaa28de455d05262cf","_id":"adjust-sourcemap-loader@2.0.0","_npmVersion":"5.10.0","_nodeVersion":"6.14.4","_npmUser":{"name":"bholloway","email":"npm@bholloway.com"},"dist":{"integrity":"sha512-4hFsTsn58+YjrU9qKzML2JSSDqKvN8mUGQ0nNIrfPi8hmIONT4L3uUaT6MKdMsZ9AjsU6D2xDkZxCkbQPxChrA==","shasum":"6471143af75ec02334b219f54bc7970c52fb29a4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/adjust-sourcemap-loader/-/adjust-sourcemap-loader-2.0.0.tgz","fileCount":29,"unpackedSize":37846,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZoWPCRA9TVsSAnZWagAAlQIQAJuE9dQCgykEOUWRYNig\nykDPy9Y0b1RoESHyIxb+MlFiZQ0Uy1gP29hU2EQQfJZBPkGOnn2nxjl5Sw+o\nXUFPx1wqDVY9mjWGUnoXE9FsmVz8Dx6C5X0799NKVPFIpR0QeF9IgA3+plup\ngizxznWMiTWRZMg3REZBHDDK+lV0RHJTZ0heEBR+gBJjrKPHvViEI1ctgPJg\ng7qujYOFClkItFnYjqb8Z0dAUSvVs8oisWytB9OjD4botFSbJ5XLVBjvxBIN\n40Vl/p2qnPC9boGJsBzYnfoAEuycu88nzZBAX5Qwug9ZZe7JFjF5asZqIYEL\nn8Bs3sMjOCpuFYNcmpzqPTI1pxvoOTf9yTRUipNdZxkfg+cIeOG3+wXJK8WP\n4OJHZrlyIMYEn0zcEW+5AAmaS/FTnfgcnuhAKIy10xdg9yjZsuA+oHEWGa3y\ns7jXlsbJSWAT8/k/YoZFoHHlNEqlWq+vyd7OGOH2ycU0TtE/+d2fnkyLwThU\nTCOhv9XxtFUefaPZRpgwOCDgNEjHLs5Z0Aazyp5Ubo5uaskG/u9wxr+ltsy3\nevRJb+surm65kZKdy53bAdYeYDVsGpO/sFL7ymoIjc+jS/XPe8p/AtQiD19K\ntB1zv2PnjVa6zIXKaIbzePemJjDAjGu7dKCVuoV8SaGuzfnL0sDyi3/RSqCn\nthR1\r\n=4dv0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDWqs1c7R7PUFs6CJv/F77m9YWmju88wujgMTqRHf0hBAiEA5nJuZN04QIX2yPNTn0UQUiGFin346DdMBkzgn5Lss6o="}]},"maintainers":[{"name":"bholloway","email":"npm@bholloway.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/adjust-sourcemap-loader_2.0.0_1550222734827_0.30708624653383154"},"_hasShrinkwrap":false},"3.0.0":{"name":"adjust-sourcemap-loader","version":"3.0.0","description":"Webpack loader that adjusts source maps","main":"index.js","engines":{"node":">=8.9"},"repository":{"type":"git","url":"git+https://github.com/bholloway/adjust-sourcemap-loader.git"},"keywords":["webpack","loader","source-map","sourcemap","sources","resolve","adjust"],"author":{"name":"bholloway"},"license":"MIT","bugs":{"url":"https://github.com/bholloway/adjust-sourcemap-loader/issues"},"homepage":"https://github.com/bholloway/adjust-sourcemap-loader","dependencies":{"loader-utils":"^2.0.0","regex-parser":"^2.2.11"},"devDependencies":{"jshint":"^2.12.0"},"scripts":{"lint":"jshint index.js lib codec"},"gitHead":"59b4c45179b74dd2ec51acbae0d4ef8f338709cc","_id":"adjust-sourcemap-loader@3.0.0","_nodeVersion":"6.17.1","_npmVersion":"6.13.0","dist":{"integrity":"sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==","shasum":"5ae12fb5b7b1c585e80bbb5a63ec163a1a45e61e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz","fileCount":30,"unpackedSize":38691,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfjouOCRA9TVsSAnZWagAAZUAQAJQJF57bHTXEKeHAk/cf\nO5cv+hVpBrbS8H8ih95JQDgpOz4H5xiTDLS0GT9y9P4AZFcNw16kgrF4VWQF\nO5u1I2Uj+Oncu0MP1SKzIihn3SSABp93ANplj/0drGiI3mMoin5P8SBltfXp\nfQ1uAQSw+zfFjDJ51y2i3wUo20ztiY6N+8ayICpfqrZNOfxgBuLaoBHcQ3H6\nHgOWWycf0wcmL1wZveDC7AZwL6tI4eLSFFitKcFHCtVcL05MNuyzDyLu0doc\nIjsjWeAEZq3z4UtdrJFCrNWIvOY2TtwK9wsvHchxCuJz7s3l6R6de1QRTZoL\nMjEnY0EZo1bAIMF09fjBbng0nBG7D+Vgq4bcQhoUFETXDEsig37NabAO3YTn\nNGCjG9Yg+Ycx2It2Fa2O8+bCW3pxFmWJN42I2YEDEsVMv/ogWbL4eLceGx/I\nOUmYuTgHoqjLTBcMieAiFwmsywUcULx0+GvI3vPV6D2S/Ova3Wju9voOv3ra\n8uqK6mQ4SJuPxHwkVMAMO4iUZXT1mo3bBYAke1zKUYJ+dcNLNtuBn10zztVc\nch3lqL9ZdROBSPhQfy3VoUFNq7esMYnR6ygx5fEZhIQLabqG11+x5npYE25j\nFHT7BPOXSwwfocMGdSUgpA1ENQo/wothw0kuR/kW2Bw8+O03/KoPspsAnrRd\nWVcq\r\n=EeSu\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA/1rzTiEKjE4MM1AbubC5xcrt4Za9KozobCd30+qb7RAiBCnkGnYilIfpQz/vOziPN4uzi2h8APuh4qnbVkrj98Qw=="}]},"maintainers":[{"name":"bholloway","email":"npm@bholloway.com"}],"_npmUser":{"name":"bholloway","email":"npm@bholloway.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/adjust-sourcemap-loader_3.0.0_1603177358516_0.2509559481261536"},"_hasShrinkwrap":false},"2.0.0-alpha.1":{"name":"adjust-sourcemap-loader","version":"2.0.0-alpha.1","description":"Webpack loader that adjusts source maps","main":"index.js","repository":{"type":"git","url":"git+https://github.com/bholloway/adjust-sourcemap-loader.git"},"keywords":["webpack","loader","source-map","sourcemap","sources","resolve","adjust"],"author":{"name":"bholloway"},"license":"MIT","bugs":{"url":"https://github.com/bholloway/adjust-sourcemap-loader/issues"},"homepage":"https://github.com/bholloway/adjust-sourcemap-loader","dependencies":{"assert":"^1.3.0","camelcase":"^1.2.1","loader-utils":"^1.1.0","lodash.assign":"^4.0.1","lodash.defaults":"^3.1.2","object-path":"^0.9.2","regex-parser":"^2.2.9"},"devDependencies":{"jshint":"^2.9.5"},"scripts":{"lint":"jshint index.js lib"},"readme":"# Adjust Source-map Loader\n\n[![NPM](https://nodei.co/npm/adjust-sourcemap-loader.png)](http://github.com/bholloway/adjust-sourcemap-loader)\n\nWebpack loader that adjusts source maps.\n\nUse as a **loader** to debug source-maps or to adjust source-maps between other loaders.\n\nUse as a **module filename template** to ensure the final source-map are to your liking.\n\n## Usage : Loader\n\n``` javascript\nrequire('adjust-sourcemap?format=absolute!babel?sourceMap');\n```\n\n### Source maps required\n\nNote that **source maps** must be enabled on any preceding loader. In the above example we use `babel?sourceMap`.\n\n### Apply via webpack config\n\nIt is preferable to adjust your `webpack.config` so to avoid having to prefix every `require()` statement:\n\n``` javascript\nmodule.exports = {\n  module: {\n    loaders: [\n      {\n        test   : /\\.js/,\n        loaders: ['adjust-sourcemap?format=absolute', 'babel?sourceMap']\n      }\n    ]\n  }\n};\n```\n\n## Usage : Module filename template\n\nSpecifying a certain format as the final step in a loader chain will **not** influence the final source format that Webpack will output. Instead the format is determined by the **module filename template**.\n\nThere are limitations to the filename templating that Webpack provides. This package may also operate as a custom template function that will convert output source-map sources to the desired `format`.\n\nIn the following example we ensure project-relative source-map sources are output.\n\n```javascript\nvar templateFn = require('adjust-sourcemap-loader')\n  .moduleFilenameTemplate({\n    format: 'projectRelative'\n  });\n\nmodule.exports = {\n  output: {\n    ...\n    devtoolModuleFilenameTemplate        : templateFn,\n    devtoolFallbackModuleFilenameTemplate: templateFn\n  }\n};\n```\n\n## Options\n\nAs a loader, options may be set using [query parameters](https://webpack.github.io/docs/using-loaders.html#query-parameters) or by using [programmatic parameters](https://webpack.github.io/docs/how-to-write-a-loader.html#programmable-objects-as-query-option). Programmatic means the following in your `webpack.config`.\n\n```javascript\nmodule.exports = {\n   adjustSourcemapLoader: {\n      ...\n   }\n}\n```\n\nWhere `...` is a hash of any of the following options.\n\n* **`debug`** : `boolean|RegExp` May be used alone (boolean) or with a `RegExp` to match the resource(s) you are interested in debugging.\n\n* **`fail`** : `boolean` Implies an **Error** if a source-map source cannot be decoded.\n\n* **`format`** : `string` Optional output format for source-map `sources`. Must be the camel-case name of one of the available `codecs`. Omitting the format will result in **no change** and the outgoing source-map will match the incomming one.\n\n* **`root`** : `boolean` A boolean flag that indices that a `sourceRoot` path sould be included in the output map. This is contingent on a `format` being specified.\n\n* **`codecs`** : `Array.<{name:string, decode:function, encode:function, root:function}>` Optional Array of codecs. There are a number of built-in codecs available. If you specify you own codecs you will loose those that are built-in. However you can include them from the `codec/` directory.\n\nNote that **query** parameters take precedence over **programmatic** parameters.\n\n### Changing the format\n\nBuilt-in codecs that may be specified as a `format` include:\n\n* `absolute`\n* `outputRelative`\n* `projectRelative`\n* `webpackProtocol`\n* `sourceRelative` (works for loader only, **not** Module filename template)\n\n### Specifying codecs\n\nThere are additional built-in codecs that do not support encoding. These are still necessary to decode source-map sources. If you specify your own `options.codecs` then you should **also include the built-in codecs**. Otherwise you will find that some sources cannot be decoded.\n\nThe existing codecs may be found in `/codec`, or on the loader itself:\n\n```javascript\nvar inBuiltCodecs = require('adjust-sourcemap-loader').codecs,\n    myCodecs      = [\n      {\n        name  : 'foo',\n        decode: function(uri) {...},\n        encode: function(absolute) {...},\n        root  : function() {...}\n      },\n      ...\n    ];\n\nmodule.exports = {\n   adjustSourcemapLoader: {\n      codecs: inBuiltCodecs.concat(myCodecs)\n   }\n}\n```\n\nThe codec **order is important**. Those that come first have precedence. Any codec that detects a distinct URI should be foremost so that illegal paths are not encountered by successive codecs.\n\n### Abstract codecs\n\nA codec that detects generated code and cannot `decode()` a URI to an absolute file path.\n\nInstead of implementing `encode()` or `root()` it should instead specify `abstract:true`. Its `decode()` function then may return `boolean` where it detects such generated sources.\n\nFor example, a built-in abstract codec will match the **Webpack bootstrap** code and ensure that its illegal source uri is not encountered by later coders.\n\n## How it works\n\nThe loader will receive a source map as its second parameter, so long as the preceding loader was using source-maps.\n\nThe exception is the **css-loader** where the source-map is in the content, which is **not currently supported** .\n\nThe source-map `sources` are parsed by applying **codec.decode()** functions until one of them returns an absolute path to a file that exists. The exception is abstract codecs, where the source with remain unchanged.\n\nIf a format is specified then the source-map `sources` are recreated by applying the **codec.encode()** function for the stated `format` and (where the `root` option is specified) the **codec.root()** function will set the source-map `sourceRoot`.\n\nIf a codec does not specify **codec.encode()** or **codec.root()** then it may **not** be used as the `format`.\n\n","readmeFilename":"readme.md","gitHead":"080db0e683905f4b61ddb0073596e65051c8d889","_id":"adjust-sourcemap-loader@2.0.0-alpha.1","_npmVersion":"5.4.2","_nodeVersion":"8.7.0","_npmUser":{"name":"bholloway","email":"npm@bholloway.com"},"dist":{"integrity":"sha512-PzyFXT7o7k43Rd7uZocJLGUPEEki8GGvAGlTufgAK1e/nivIMGWbDemM1d1zW4MBpkM/2WADB85hE5hhPxt6eQ==","shasum":"8b2d712e568cd01f595ef49c8a0c297f93fbe394","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/adjust-sourcemap-loader/-/adjust-sourcemap-loader-2.0.0-alpha.1.tgz","fileCount":28,"unpackedSize":38057,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhh+pCRA9TVsSAnZWagAABpsP/ib+Q2jdV/PEeWTcph9S\nrxyN6Mn33Xp8oGUwwSKN46mfA9PfU6iKnw9sYcfFaWoCfc3dB12vCvs/NaDf\nFJuFy7LFX6ZsoXvCVETS3+atXOShsH4RS9DMhGhLi14zheOXOzonkYR1UPT/\nW/bIedtEqaNBzhZpN6Iv03HgW5onI/rkzBBy4u4CJip7g3SLc/IExyllhjx2\nTOy54LCp0RXCB4krmE+B6vLi05m39AZc9145RprdlUMC1FXoHbi0W3AQhqD5\nA7EFkgolcCFZiGAhVUxqCNIF51RHfxlf4W5+ZuyocPCBtd2KIxOs6BBLwSmL\nR4WQotmOIP7K/ytgEw526dA0f/2AYCd2HOR7wAiJKKxK6Q5vuAr+iayRTZml\nWZbPrfNhRH1c1yFoa6bS1CeF5tZc7t37CQa6GDnAOQ/i9SX8evF+pcnK1uEG\nkUidL1Q99uXcya/XjBg0Xtb+/aTFv97s2qAVxtuXcQOuR5WNsdIQgcix11IW\nMMtQPWauE1NCaeIpPpp57tEgTGFGdApZLc0C4/hccD/+HHATIBPqIA+exLCk\nFSttcpucPZfHksIzuyrkj1plG9IAnPDQ2l1oZEmtNtNycc/ca38hcjEbETB5\nKnz19egjb7Ktkf9T7/+WLLAM1mnqYRgUAnDA5xVXu56uHwArh6kct7rI+dmw\nDv/q\r\n=na9h\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDlpVUgLa0WJQCF+SNXzAsY8kPcl/TXpEvyYWCLBYzAFAIhAIhmqIyWvYjN03PJt9n3vPTV8IVog+fupE+eQ1LXTExR"}]},"maintainers":[{"name":"bholloway","email":"npm@bholloway.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/adjust-sourcemap-loader_2.0.0-alpha.1_1535516585371_0.13917585687130773"},"_hasShrinkwrap":false},"5.0.0":{"name":"adjust-sourcemap-loader","version":"5.0.0","description":"Webpack loader that adjusts source maps","main":"index.js","engines":{"node":">=12"},"repository":{"type":"git","url":"git+https://github.com/bholloway/adjust-sourcemap-loader.git"},"keywords":["webpack","loader","source-map","sourcemap","sources","resolve","adjust"],"author":{"name":"bholloway"},"license":"MIT","bugs":{"url":"https://github.com/bholloway/adjust-sourcemap-loader/issues"},"homepage":"https://github.com/bholloway/adjust-sourcemap-loader","dependencies":{"loader-utils":"^3.2.0","regex-parser":"^2.2.11"},"devDependencies":{"jshint":"^2.13.5"},"scripts":{"lint":"jshint index.js lib codec"},"gitHead":"b4280b7d38dcc073d17c617dc813af81f08b4e40","_id":"adjust-sourcemap-loader@5.0.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"bholloway","email":"npm@bholloway.com"},"dist":{"integrity":"sha512-wtrCI9uKl7FWAj4F5pLHjMpHMg3k28UONiS0oMML97DBt06xvJ8Z3NDAY6HNmsUj8yxB4GMGLUbIoaJ2YhLwTQ==","shasum":"3bd5557f25ee730295cfa451dd330a41b49ad662","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/adjust-sourcemap-loader/-/adjust-sourcemap-loader-5.0.0.tgz","fileCount":33,"unpackedSize":41995,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCY36/bISJlGiGw1kNiyhor558Z3hWqUOJzrVGWwt0l3AIgY+uC6x446F943w3pUUs+MRHKViPesPXW2lySaxwSWfA="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjSLGbACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrMVw//c5R35TQQ055GlZ1PV0E1HGR/jPzjpf32NXdBLeKCzhk9spKf\r\nBmEc+W9+OJYRAw+k54HdLYVHdGw4POTmrAvvRJmZ/FoxCSObyC15pozYyxL7\r\nACvapVuA2O0Rsg+FxbjTEDU1GUuxqdHwJETECCd1DaTiOXV2tSkCpgDsWCOV\r\nvoCMKnNZpJ3GCCY0xNVHyeHXVO04GrqpfO+lryPlspcVb/gydpkvV9CF301j\r\nSlPSXzcPB5f3wAtpP4J38UsapZRIo5TwkzA4p9rQ8t2KjUwk/3rIiNZVU8xV\r\nR6f1I2rnEqtM8xwt3R2oy6D9YUjuIL4QMdl4WE9rxJf680BF6LtjVuAAvyPk\r\npjdAZ7MQL675L4JI+Eom8Lutroiw74kF4hmqhmhEYn7+Mnc7MrkwgMxC1hWn\r\n8Ml/1Rwy39I3BPN8yxJphoYEb8gwnjMkKmIASHizKwapBRUC4Y1kgMP6YnEe\r\nnCaaqJ2wMYkL+x/2kEI9n1vyS1/4gJuCd3XyuU0WkxyQpmOgslF4HBiXWEVD\r\ngcR7bnyXi65C1gI3xHJYxbhZV6zA0LQLPEroz3F7tr9XZN4pAuBWZ1Fdq3Ds\r\nvJ/U7/+LHWntWQOi0abBANE23H6JXtOO7jlgcusR40Ax9NyNsu9kKwpsn09a\r\nTcktXmrYLD0tWLfTSQl8P37bWWlVKpzfRLg=\r\n=MeAY\r\n-----END PGP SIGNATURE-----\r\n"},"directories":{},"maintainers":[{"name":"bholloway","email":"npm@bholloway.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/adjust-sourcemap-loader_5.0.0_1665708442842_0.8936593589817787"},"_hasShrinkwrap":false},"4.0.0":{"name":"adjust-sourcemap-loader","version":"4.0.0","description":"Webpack loader that adjusts source maps","main":"index.js","engines":{"node":">=8.9"},"repository":{"type":"git","url":"git+https://github.com/bholloway/adjust-sourcemap-loader.git"},"keywords":["webpack","loader","source-map","sourcemap","sources","resolve","adjust"],"author":{"name":"bholloway"},"license":"MIT","bugs":{"url":"https://github.com/bholloway/adjust-sourcemap-loader/issues"},"homepage":"https://github.com/bholloway/adjust-sourcemap-loader","dependencies":{"loader-utils":"^2.0.0","regex-parser":"^2.2.11"},"devDependencies":{"jshint":"^2.12.0"},"scripts":{"lint":"jshint index.js lib codec"},"gitHead":"5f173eef0c2ba39bdafa142669b3916ab69019c6","_id":"adjust-sourcemap-loader@4.0.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"bholloway","email":"npm@bholloway.com"},"dist":{"integrity":"sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==","shasum":"fc4a0fd080f7d10471f30a7320f25560ade28c99","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz","fileCount":33,"unpackedSize":41996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfloajCRA9TVsSAnZWagAAInQP/0Zya0bWTfAaOY7LBoJo\nmCUWnejP6QZJrK7/73DqdZZ0qacjEZy0BYYOT7iTznZyOQNKFaolQQLD3aUo\nK3iemJibkeRsoswWcTiAw6YL2uRlfcRq+28e/XwYPkViMxWnIfapLE/j/uFO\nZ334zlbzjMnepAkUkH3hNwr/68Maq6QOpUID8ZnUZnJa4DWf5tNRSmuH4tqV\nh8CVre3JrxJc3bTDfxCoSV+bohYQtDNDVBdM6pewpKB5jeaKDTEDvsghvuqw\ngtbGJMzYx/9bxNW1M6Dlb4yKNi6R+I3Cvne2IcVXnbyAramfDK4v7vAVjd0r\ns2yZmaQbx588/xp4NBUiW96G2lWB9FyuNJsSkT6BQPyuhSMgCLjD7/dnIVYy\n328EZXpiN++SpyOAVUxgVFrSBE3fRJN2AskQuhIRporgEz0a9jN3ymIa9hSZ\nqixQJzUd/XYPHTs0G/D9bQchHwEPe8VpdCWxpiLRo5iD1z1XFwXzb6ikf0ox\n9Pz01n6eOn/kBsXzIc5E7+mOzI5+xpKzdfFF4NGO1UJLa0O34PydL34167H8\nD6J0AhThzV6jVua2/igz8clcmSHVA4ZRafgDg7+LweE7OMenOFYwUeQboiC7\nRCAxTCUkJBf2e35jMKdrxy1c+g48gcYLZqOQYnZKOW3VPOgL/dkQCRkjXd8q\nbPNr\r\n=HwbD\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFFj93STf1+w26vG+yzyQBZd4i7mhpY9hyB3Pcd+kxcYAiEAgHVtqr7dgacg5gn8XO8HuJzVH0eF9i9ozqd/kzLdKNw="}]},"maintainers":[{"name":"bholloway","email":"npm@bholloway.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/adjust-sourcemap-loader_4.0.0_1603700387185_0.7493998276148721"},"_hasShrinkwrap":false},"0.1.1":{"name":"adjust-sourcemap-loader","version":"0.1.1","description":"Webpack loader that adjusts source maps","main":"index.js","repository":{"type":"git","url":"git+https://github.com/bholloway/adjust-sourcemap-loader.git"},"keywords":["webpack","loader","source-map","sourcemap","sources","resolve","adjust"],"author":{"name":"bholloway"},"license":"MIT","bugs":{"url":"https://github.com/bholloway/adjust-sourcemap-loader/issues"},"homepage":"https://github.com/bholloway/adjust-sourcemap-loader","dependencies":{"assert":"^1.3.0","camelcase":"^1.2.1","loader-utils":"^0.2.12","lodash.assign":"^4.0.1","lodash.defaults":"^3.1.2","object-path":"^0.9.2","regex-parser":"^2.2.1"},"gitHead":"f033b0e4ad630a4ac08f72af5ac2c502987b35cc","_id":"adjust-sourcemap-loader@0.1.1","scripts":{},"_shasum":"0204c9b379e74e9e530d125be906b3ff254abf0a","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.0.0","_npmUser":{"name":"bholloway","email":"npm@bholloway.com"},"maintainers":[{"name":"bholloway","email":"npm@bholloway.com"}],"dist":{"shasum":"0204c9b379e74e9e530d125be906b3ff254abf0a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/adjust-sourcemap-loader/-/adjust-sourcemap-loader-0.1.1.tgz","integrity":"sha512-VbnYKOtMziPfSuPAVwoD3ZjUDuCUBJRjMRVlL5iIArdlLnxOVAU9T4MfbHCljhjt7KYO1kwTvCzzWTVtmUjYDA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHVnk3crGGRAoBY/F31msK5gU36MsvQuDpHnlwgvX+bJAiEAp7hA3lX9ifwsBdRJ69A03rdA2r4T0aNdOrtGsMFf5a0="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/adjust-sourcemap-loader-0.1.1.tgz_1459226807177_0.7966661693062633"},"directories":{}},"1.0.0":{"name":"adjust-sourcemap-loader","version":"1.0.0","description":"Webpack loader that adjusts source maps","main":"index.js","repository":{"type":"git","url":"git+https://github.com/bholloway/adjust-sourcemap-loader.git"},"keywords":["webpack","loader","source-map","sourcemap","sources","resolve","adjust"],"author":{"name":"bholloway"},"license":"MIT","bugs":{"url":"https://github.com/bholloway/adjust-sourcemap-loader/issues"},"homepage":"https://github.com/bholloway/adjust-sourcemap-loader","dependencies":{"assert":"^1.3.0","camelcase":"^1.2.1","loader-utils":"^0.2.12","lodash.assign":"^4.0.1","lodash.defaults":"^3.1.2","object-path":"^0.9.2","regex-parser":"^2.2.1"},"gitHead":"864526aa0351b4efb40458c18fb23902045e6328","_id":"adjust-sourcemap-loader@1.0.0","scripts":{},"_shasum":"3ddf04201b8f8ca3ee8e7b7fb4c7dbc5ebf7dd74","_from":".","_npmVersion":"3.8.6","_nodeVersion":"4.4.0","_npmUser":{"name":"bholloway","email":"npm@bholloway.com"},"maintainers":[{"name":"bholloway","email":"npm@bholloway.com"}],"dist":{"shasum":"3ddf04201b8f8ca3ee8e7b7fb4c7dbc5ebf7dd74","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/adjust-sourcemap-loader/-/adjust-sourcemap-loader-1.0.0.tgz","integrity":"sha512-0kSNifiAJ2CbKiXENdYRCiJb0WCrKdvwPwa4jjVgN+ywdmNwURBRZFuIwOktppgWcj2fOMiHgylgQFOr7buNOA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD8HgE7YvYBT4NOp/A8ijz1x90MkVTD4tHKItDqkEFRzgIgToSdFn9eonmumUgKzUs5tdUBe23fc3vaXhZ4GX2SCUk="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/adjust-sourcemap-loader-1.0.0.tgz_1463452701632_0.7745762479025871"},"directories":{}},"1.1.0":{"name":"adjust-sourcemap-loader","version":"1.1.0","description":"Webpack loader that adjusts source maps","main":"index.js","repository":{"type":"git","url":"git+https://github.com/bholloway/adjust-sourcemap-loader.git"},"keywords":["webpack","loader","source-map","sourcemap","sources","resolve","adjust"],"author":{"name":"bholloway"},"license":"MIT","bugs":{"url":"https://github.com/bholloway/adjust-sourcemap-loader/issues"},"homepage":"https://github.com/bholloway/adjust-sourcemap-loader","dependencies":{"assert":"^1.3.0","camelcase":"^1.2.1","loader-utils":"^1.0.2","lodash.assign":"^4.0.1","lodash.defaults":"^3.1.2","object-path":"^0.9.2","regex-parser":"^2.2.1"},"gitHead":"cbf9f99dc81d2ba8ae029b231db29b6f59daddf2","_id":"adjust-sourcemap-loader@1.1.0","scripts":{},"_shasum":"412d92404eb61e4113635012cba53a33d008e0e2","_from":".","_npmVersion":"3.10.9","_nodeVersion":"4.4.7","_npmUser":{"name":"bholloway","email":"npm@bholloway.com"},"dist":{"shasum":"412d92404eb61e4113635012cba53a33d008e0e2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/adjust-sourcemap-loader/-/adjust-sourcemap-loader-1.1.0.tgz","integrity":"sha512-FpsXZY0+AI+1rmEEoMr469iAk+IybfxbitbQ7FyDJJIJt5d/LZtgm1l8v/R7GQU/IMWf4COLp4kdIfcozkLwfg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHqGlnDy/Qdzy9RM18A0vPBcIGgQHUMbYwHcx4xlyI80AiEArkS+6gXRD4Lh/MEUIrlzGLzQktqIvO2bIkr51eLz+rI="}]},"maintainers":[{"name":"bholloway","email":"npm@bholloway.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/adjust-sourcemap-loader-1.1.0.tgz_1488520991934_0.09003386180847883"},"directories":{}},"0.0.1":{"name":"adjust-sourcemap-loader","version":"0.0.1","description":"Webpack loader that adjusts source maps","main":"index.js","repository":{"type":"git","url":"git+https://github.com/bholloway/adjust-sourcemap-loader.git"},"keywords":["webpack","loader","source-map","sourcemap","sources","resolve","adjust"],"author":{"name":"bholloway"},"license":"MIT","bugs":{"url":"https://github.com/bholloway/adjust-sourcemap-loader/issues"},"homepage":"https://github.com/bholloway/adjust-sourcemap-loader","dependencies":{"assert":"^1.3.0","camelcase":"^1.2.1","loader-utils":"^0.2.11","lodash.assign":"^4.0.1","lodash.defaults":"^3.1.2","regex-parser":"^2.2.1"},"gitHead":"470e36aaaebc4ccb80d5ac1679c40493f2478b57","_id":"adjust-sourcemap-loader@0.0.1","scripts":{},"_shasum":"861c277f347b7a7e37be1aacc9c68ad78ec38df8","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.0.0","_npmUser":{"name":"bholloway","email":"npm@bholloway.com"},"maintainers":[{"name":"bholloway","email":"npm@bholloway.com"}],"dist":{"shasum":"861c277f347b7a7e37be1aacc9c68ad78ec38df8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/adjust-sourcemap-loader/-/adjust-sourcemap-loader-0.0.1.tgz","integrity":"sha512-fr7TAmw4aMlu9FoZA6wsvps+L+P9iP/kQxhx3DnJ+0C+82ABpn5dW0sNg6QqikPQXe/2VP59Lt1VJ4B44r1vog==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF1DgqmXIV8ZJY6bYJnqzOTXZD/00oUXLeFQaiFYb+NoAiEA2pTy/fohvy/58gryWNsacWBGy7C2+7tnrOVaTrlR8hw="}]},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/adjust-sourcemap-loader-0.0.1.tgz_1454659131191_0.9717527297325432"},"directories":{}},"0.1.0":{"name":"adjust-sourcemap-loader","version":"0.1.0","description":"Webpack loader that adjusts source maps","main":"index.js","repository":{"type":"git","url":"git+https://github.com/bholloway/adjust-sourcemap-loader.git"},"keywords":["webpack","loader","source-map","sourcemap","sources","resolve","adjust"],"author":{"name":"bholloway"},"license":"MIT","bugs":{"url":"https://github.com/bholloway/adjust-sourcemap-loader/issues"},"homepage":"https://github.com/bholloway/adjust-sourcemap-loader","dependencies":{"assert":"^1.3.0","camelcase":"^1.2.1","loader-utils":"^0.2.12","lodash.assign":"^4.0.1","lodash.defaults":"^3.1.2","object-path":"^0.9.2","regex-parser":"^2.2.1"},"gitHead":"5358169a82a5f18cc859e57b3e43205bf3843331","_id":"adjust-sourcemap-loader@0.1.0","scripts":{},"_shasum":"778c36adea0d6cfffbd9213749955c79d4c6eb8a","_from":".","_npmVersion":"3.5.2","_nodeVersion":"4.0.0","_npmUser":{"name":"bholloway","email":"npm@bholloway.com"},"maintainers":[{"name":"bholloway","email":"npm@bholloway.com"}],"dist":{"shasum":"778c36adea0d6cfffbd9213749955c79d4c6eb8a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/adjust-sourcemap-loader/-/adjust-sourcemap-loader-0.1.0.tgz","integrity":"sha512-Pr8czh60DUeAvpbantXbK+lAddDEwcCN8M0jGw3YLF/hSCNanyFRHLREOvrqt62wjj3wBTAP3nHvvujgi6Etqw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGozwF3z98Wv7oAfwOKs5ddhEaBQ+I3xBiUMOp8d7hRXAiEAwUiQAAulGdCwIoEkxpF9JAQuFL7aHqyWkRF61Ea9tDo="}]},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/adjust-sourcemap-loader-0.1.0.tgz_1455758628824_0.5492376829497516"},"directories":{}},"1.2.0":{"name":"adjust-sourcemap-loader","version":"1.2.0","description":"Webpack loader that adjusts source maps","main":"index.js","repository":{"type":"git","url":"git+https://github.com/bholloway/adjust-sourcemap-loader.git"},"keywords":["webpack","loader","source-map","sourcemap","sources","resolve","adjust"],"author":{"name":"bholloway"},"license":"MIT","bugs":{"url":"https://github.com/bholloway/adjust-sourcemap-loader/issues"},"homepage":"https://github.com/bholloway/adjust-sourcemap-loader","dependencies":{"assert":"^1.3.0","camelcase":"^1.2.1","loader-utils":"^1.1.0","lodash.assign":"^4.0.1","lodash.defaults":"^3.1.2","object-path":"^0.9.2","regex-parser":"^2.2.9"},"devDependencies":{"jshint":"^2.9.5"},"scripts":{"lint":"jshint index.js lib"},"gitHead":"b2c8bf26a0ebefb071a2bda8dd882b5d095d31eb","_id":"adjust-sourcemap-loader@1.2.0","_npmVersion":"5.5.1","_nodeVersion":"9.3.0","_npmUser":{"name":"bholloway","email":"npm@bholloway.com"},"dist":{"integrity":"sha512-958oaHHVEXMvsY7v7cC5gEkNIcoaAVIhZ4mBReYVZJOTP9IgKmzLjIOhTtzpLMu+qriXvLsVjJ155EeInp45IQ==","shasum":"e33fde95e50db9f2a802e3647e311d2fc5000c69","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/adjust-sourcemap-loader/-/adjust-sourcemap-loader-1.2.0.tgz","fileCount":28,"unpackedSize":38303,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBT5/X9t/X/owODZk8rNoQc7CzPAW5TTL/VP0DfkP/UtAiAvm07L6ghUGWmaVsNmTJmIuH0WGFhKOFyfVPMgPEeaIw=="}]},"maintainers":[{"name":"bholloway","email":"npm@bholloway.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/adjust-sourcemap-loader_1.2.0_1520248076569_0.488558562946227"},"_hasShrinkwrap":false}},"name":"adjust-sourcemap-loader","time":{"2.0.0":"2019-02-15T09:25:34.970Z","created":"2016-02-05T07:58:51.774Z","2.0.0-alpha.1":"2018-08-29T04:23:05.495Z","4.0.0":"2020-10-26T08:19:47.303Z","0.1.1":"2016-03-29T04:46:47.602Z","0.0.1":"2016-02-05T07:58:51.774Z","0.1.0":"2016-02-18T01:23:50.952Z","3.0.0":"2020-10-20T07:02:38.658Z","modified":"2025-05-13T17:19:44.560Z","5.0.0":"2022-10-14T00:47:23.079Z","1.0.0":"2016-05-17T02:38:25.334Z","1.1.0":"2017-03-03T06:03:12.157Z","1.2.0":"2018-03-05T11:07:56.706Z"},"readmeFilename":"readme.md","homepage":"https://github.com/bholloway/adjust-sourcemap-loader"}