{"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"keywords":["source-map"],"dist-tags":{"latest":"2.0.0"},"author":{"name":"Tobias Koppers @sokra"},"description":"Fast line to line SourceMap generator.","readme":"# source-list-map\r\n\r\n## API\r\n\r\n### Example\r\n\r\n``` js\r\nvar SourceListMap = require(\"source-list-map\").SourceListMap;\r\n\r\n// Create a new map\r\nvar map = new SourceListMap();\r\n\r\n// Add generated code that is map line to line to some soure\r\nmap.add(\"Generated\\ncode1\\n\", \"source-code.js\", \"Orginal\\nsource\");\r\n\r\n// Add generated code that isn't mapped\r\nmap.add(\"Generated\\ncode2\\n\");\r\n\r\n// Get SourceMap and generated source\r\nmap.toStringWithSourceMap({ file: \"generated-code.js\" });\r\n// {\r\n//   source: 'Generated\\ncode1\\nGenerated\\ncode2\\n',\r\n//   map: {\r\n//      version: 3,\r\n//      file: 'generated-code.js',\r\n//      sources: [ 'source-code.js' ],\r\n//      sourcesContent: [ 'Orginal\\nsource' ],\r\n//      mappings: 'AAAA;AACA;;;'\r\n//    }\r\n// }\r\n\r\n// Convert existing SourceMap into SourceListMap\r\n// (Only the first mapping per line is preserved)\r\nvar fromStringWithSourceMap = require(\"source-list-map\").fromStringWithSourceMap;\r\nvar map = fromStringWithSourceMap(\"Generated\\ncode\", { version: 3, ... });\r\n\r\n```\r\n\r\n### `new SourceListMap()`\r\n\r\n### `SourceListMap.prototype.add`\r\n\r\n``` js\r\nSourceListMap.prototype.add(generatedCode: string)\r\nSourceListMap.prototype.add(generatedCode: string, source: string, originalSource: string)\r\nSourceListMap.prototype.add(sourceListMap: SourceListMap)\r\n```\r\n\r\nAppend some stuff.\r\n\r\n### `SourceListMap.prototype.prepend`\r\n\r\n``` js\r\nSourceListMap.prototype.prepend(generatedCode: string)\r\nSourceListMap.prototype.prepend(generatedCode: string, source: string, originalSource: string)\r\nSourceListMap.prototype.prepend(sourceListMap: SourceListMap)\r\n```\r\n\r\nPrepend some stuff.\r\n\r\n### `SourceListMap.prototype.toString()`\r\n\r\nGet generated code.\r\n\r\n### `SourceListMap.prototype.toStringWithSourceMap`\r\n\r\n``` js\r\nSourceListMap.prototype.toStringWithSourceMap(options: object)\r\n```\r\n\r\nGet generated code and SourceMap. `options` can contains `file` property which defines the `file` property of the SourceMap.\r\n\r\n### `SourceListMap.prototype.mapGeneratedCode`\r\n\r\n``` js\r\nSourceListMap.prototype.mapGeneratedCode(fn: function) : SourceListMap\r\n```\r\n\r\nApplies `fn` to each generated code block (per line). The returned value is set as new generated code. Returns a new SourceListMap.\r\n\r\nRemoving and adding lines is supported. The SourceMap complexity will increase when doing this.\r\n\r\n## Test\r\n\r\n[![Build Status](https://travis-ci.org/webpack/source-list-map.svg)](https://travis-ci.org/webpack/source-list-map)\r\n\r\n## License\r\n\r\nCopyright (c) 2017 JS Foundation\r\n\r\nMIT (http://www.opensource.org/licenses/mit-license.php)","repository":{"type":"git","url":"git+https://github.com/webpack/source-list-map.git"},"bugs":{"url":"https://github.com/webpack/source-list-map/issues"},"license":"MIT","versions":{"0.1.0":{"name":"source-list-map","version":"0.1.0","description":"Fast line to line SourceMap generator.","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"https://github.com/webpack/source-list-map.git"},"keywords":["source-map"],"license":"MIT","bugs":{"url":"https://github.com/webpack/source-list-map/issues"},"homepage":"https://github.com/webpack/source-list-map","devDependencies":{"mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"d49e5ea290226aa12d3e8917ad0769d98c62ea2d","_id":"source-list-map@0.1.0","_shasum":"eeb532ba476d0ee1b49e90968de466a94eab0377","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"eeb532ba476d0ee1b49e90968de466a94eab0377","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/source-list-map/-/source-list-map-0.1.0.tgz"},"directories":{}},"0.1.1":{"name":"source-list-map","version":"0.1.1","description":"Fast line to line SourceMap generator.","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"https://github.com/webpack/source-list-map.git"},"keywords":["source-map"],"license":"MIT","bugs":{"url":"https://github.com/webpack/source-list-map/issues"},"homepage":"https://github.com/webpack/source-list-map","devDependencies":{"mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"d9b7d48a6d7ce81fd39e767644bb9f4cda3e1884","_id":"source-list-map@0.1.1","_shasum":"5ae13a027500644e9cd2c14b5d92c4c6364e0187","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"5ae13a027500644e9cd2c14b5d92c4c6364e0187","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/source-list-map/-/source-list-map-0.1.1.tgz"},"directories":{}},"0.1.2":{"name":"source-list-map","version":"0.1.2","description":"Fast line to line SourceMap generator.","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"https://github.com/webpack/source-list-map.git"},"keywords":["source-map"],"license":"MIT","bugs":{"url":"https://github.com/webpack/source-list-map/issues"},"homepage":"https://github.com/webpack/source-list-map","devDependencies":{"mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"94d22c9ac5605e62c87b6ee4a62a27b01a01658b","_id":"source-list-map@0.1.2","_shasum":"b688e2bd2cb4b6eda6b459230a9fecc63f4b94f1","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"b688e2bd2cb4b6eda6b459230a9fecc63f4b94f1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/source-list-map/-/source-list-map-0.1.2.tgz"},"directories":{}},"0.1.3":{"name":"source-list-map","version":"0.1.3","description":"Fast line to line SourceMap generator.","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"https://github.com/webpack/source-list-map.git"},"keywords":["source-map"],"license":"MIT","bugs":{"url":"https://github.com/webpack/source-list-map/issues"},"homepage":"https://github.com/webpack/source-list-map","devDependencies":{"mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"42211965a76c4153fbc3a0292fb8cac03604a38f","_id":"source-list-map@0.1.3","_shasum":"09de2bc795e2b74f8ddd20ff148679b1148f2f32","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"09de2bc795e2b74f8ddd20ff148679b1148f2f32","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/source-list-map/-/source-list-map-0.1.3.tgz"},"directories":{}},"0.1.4":{"name":"source-list-map","version":"0.1.4","description":"Fast line to line SourceMap generator.","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"https://github.com/webpack/source-list-map.git"},"keywords":["source-map"],"license":"MIT","bugs":{"url":"https://github.com/webpack/source-list-map/issues"},"homepage":"https://github.com/webpack/source-list-map","devDependencies":{"mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"e70f6cbd8d632f61cef6ed945a2ad5e916a98106","_id":"source-list-map@0.1.4","_shasum":"48daaf4e9c020650f09e2c9eee56d78244a1c95e","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"48daaf4e9c020650f09e2c9eee56d78244a1c95e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/source-list-map/-/source-list-map-0.1.4.tgz"},"directories":{}},"0.1.5":{"name":"source-list-map","version":"0.1.5","description":"Fast line to line SourceMap generator.","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"https://github.com/webpack/source-list-map.git"},"keywords":["source-map"],"license":"MIT","bugs":{"url":"https://github.com/webpack/source-list-map/issues"},"homepage":"https://github.com/webpack/source-list-map","devDependencies":{"mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"d65780633d31ecae6a89410984e78640de3624e2","_id":"source-list-map@0.1.5","_shasum":"ddf32f5173faeca3010561dd7e9a682c027f459e","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"ddf32f5173faeca3010561dd7e9a682c027f459e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/source-list-map/-/source-list-map-0.1.5.tgz"},"directories":{}},"0.1.6":{"name":"source-list-map","version":"0.1.6","description":"Fast line to line SourceMap generator.","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+https://github.com/webpack/source-list-map.git"},"keywords":["source-map"],"license":"MIT","bugs":{"url":"https://github.com/webpack/source-list-map/issues"},"homepage":"https://github.com/webpack/source-list-map","devDependencies":{"mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"c8824e41f9052f960e1c5e4a950b3c428a09c2ee","_id":"source-list-map@0.1.6","_shasum":"e1e6f94f0b40c4d28dcf8f5b8766e0e45636877f","_from":".","_npmVersion":"3.3.3","_nodeVersion":"5.4.1","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"e1e6f94f0b40c4d28dcf8f5b8766e0e45636877f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/source-list-map/-/source-list-map-0.1.6.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/source-list-map-0.1.6.tgz_1458846714852_0.1817702252883464"},"directories":{}},"0.1.7":{"name":"source-list-map","version":"0.1.7","description":"Fast line to line SourceMap generator.","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+https://github.com/webpack/source-list-map.git"},"keywords":["source-map"],"license":"MIT","bugs":{"url":"https://github.com/webpack/source-list-map/issues"},"homepage":"https://github.com/webpack/source-list-map","devDependencies":{"mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"948f857ad95485172798528db353232862206f9a","_id":"source-list-map@0.1.7","_shasum":"d4b5ce2a46535c72c7e8527c71a77d250618172e","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"d4b5ce2a46535c72c7e8527c71a77d250618172e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/source-list-map/-/source-list-map-0.1.7.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/source-list-map-0.1.7.tgz_1480640695901_0.6327708079479635"},"directories":{}},"0.1.8":{"name":"source-list-map","version":"0.1.8","description":"Fast line to line SourceMap generator.","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+https://github.com/webpack/source-list-map.git"},"keywords":["source-map"],"files":["lib"],"license":"MIT","bugs":{"url":"https://github.com/webpack/source-list-map/issues"},"homepage":"https://github.com/webpack/source-list-map","devDependencies":{"mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"536858b825d0b3f4d6ba3e7c5becadb78199e309","_id":"source-list-map@0.1.8","_shasum":"c550b2ab5427f6b3f21f5afead88c4f5587b2106","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"c550b2ab5427f6b3f21f5afead88c4f5587b2106","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/source-list-map/-/source-list-map-0.1.8.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/source-list-map-0.1.8.tgz_1484123265459_0.8772335308603942"},"directories":{}},"1.0.0":{"name":"source-list-map","version":"1.0.0","description":"Fast line to line SourceMap generator.","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+https://github.com/webpack/source-list-map.git"},"keywords":["source-map"],"files":["lib"],"license":"MIT","bugs":{"url":"https://github.com/webpack/source-list-map/issues"},"homepage":"https://github.com/webpack/source-list-map","devDependencies":{"mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"88d1d1f3a7f672921b6ee822982e31fd258161d5","_id":"source-list-map@1.0.0","_shasum":"1b7bc7c77d14692f0455bcf38172e546cc6c5f95","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"1b7bc7c77d14692f0455bcf38172e546cc6c5f95","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/source-list-map/-/source-list-map-1.0.0.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/source-list-map-1.0.0.tgz_1488913590108_0.6800991683267057"},"directories":{}},"1.0.1":{"name":"source-list-map","version":"1.0.1","description":"Fast line to line SourceMap generator.","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+https://github.com/webpack/source-list-map.git"},"keywords":["source-map"],"files":["lib"],"license":"MIT","bugs":{"url":"https://github.com/webpack/source-list-map/issues"},"homepage":"https://github.com/webpack/source-list-map","devDependencies":{"mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"3d4e832abc5d8584f8998703f8e7bd940fc1246b","_id":"source-list-map@1.0.1","_shasum":"cc1fc17122ae0a51978024c2cc0f8c35659026b8","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"cc1fc17122ae0a51978024c2cc0f8c35659026b8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/source-list-map/-/source-list-map-1.0.1.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/source-list-map-1.0.1.tgz_1488914752346_0.11908297520130873"},"directories":{}},"1.1.0":{"name":"source-list-map","version":"1.1.0","description":"Fast line to line SourceMap generator.","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+https://github.com/webpack/source-list-map.git"},"keywords":["source-map"],"files":["lib"],"license":"MIT","bugs":{"url":"https://github.com/webpack/source-list-map/issues"},"homepage":"https://github.com/webpack/source-list-map","devDependencies":{"mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"fed961f1685bd205e7f00a2858461fcd3c6828dd","_id":"source-list-map@1.1.0","_shasum":"4974e1266d5a0830e50b5134e8d5c6e239ca61c3","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"4974e1266d5a0830e50b5134e8d5c6e239ca61c3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/source-list-map/-/source-list-map-1.1.0.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/source-list-map-1.1.0.tgz_1490389375482_0.06705938302911818"},"directories":{}},"1.1.1":{"name":"source-list-map","version":"1.1.1","description":"Fast line to line SourceMap generator.","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+https://github.com/webpack/source-list-map.git"},"keywords":["source-map"],"files":["lib"],"license":"MIT","bugs":{"url":"https://github.com/webpack/source-list-map/issues"},"homepage":"https://github.com/webpack/source-list-map","devDependencies":{"mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"8a32dff698df50dd34324208338fb8d526796e65","_id":"source-list-map@1.1.1","_shasum":"1a33ac210ca144d1e561f906ebccab5669ff4cb4","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"1a33ac210ca144d1e561f906ebccab5669ff4cb4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/source-list-map/-/source-list-map-1.1.1.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/source-list-map-1.1.1.tgz_1490398503976_0.7048284611664712"},"directories":{}},"1.1.2":{"name":"source-list-map","version":"1.1.2","description":"Fast line to line SourceMap generator.","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+https://github.com/webpack/source-list-map.git"},"keywords":["source-map"],"files":["lib"],"license":"MIT","bugs":{"url":"https://github.com/webpack/source-list-map/issues"},"homepage":"https://github.com/webpack/source-list-map","devDependencies":{"mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"e6f3e498c946e19823068127a89fa7407455ec7c","_id":"source-list-map@1.1.2","_shasum":"9889019d1024cce55cdc069498337ef6186a11a1","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"shasum":"9889019d1024cce55cdc069498337ef6186a11a1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/source-list-map/-/source-list-map-1.1.2.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/source-list-map-1.1.2.tgz_1493890802743_0.5847808860708028"},"directories":{}},"2.0.0":{"name":"source-list-map","version":"2.0.0","description":"Fast line to line SourceMap generator.","author":{"name":"Tobias Koppers @sokra"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"git+https://github.com/webpack/source-list-map.git"},"keywords":["source-map"],"files":["lib"],"license":"MIT","bugs":{"url":"https://github.com/webpack/source-list-map/issues"},"homepage":"https://github.com/webpack/source-list-map","devDependencies":{"mocha":"^2.2.1","should":"^5.2.0"},"gitHead":"572d5107c710b590bbbf358401dff9bae8adcc1c","_id":"source-list-map@2.0.0","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"sokra","email":"tobias.koppers@googlemail.com"},"dist":{"integrity":"sha512-I2UmuJSRr/T8jisiROLU3A3ltr+swpniSmNPI4Ml3ZCX6tVnDsuZzK7F2hl5jTqbZBWCEKlj5HRQiPExXLgE8A==","shasum":"aaa47403f7b245a92fbc97ea08f250d6087ed085","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/source-list-map/-/source-list-map-2.0.0.tgz"},"maintainers":[{"name":"sokra","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/source-list-map-2.0.0.tgz_1496490051594_0.6906744700390846"},"directories":{}}},"name":"source-list-map","time":{"modified":"2017-06-03T11:40:52.487Z","created":"2015-04-06T22:20:29.036Z","0.1.0":"2015-04-06T22:20:29.036Z","0.1.1":"2015-04-07T11:31:19.293Z","0.1.2":"2015-04-07T12:28:32.242Z","0.1.3":"2015-04-08T06:38:32.269Z","0.1.4":"2015-04-08T12:41:28.364Z","0.1.5":"2015-04-13T18:54:17.920Z","0.1.6":"2016-03-24T19:11:57.177Z","0.1.7":"2016-12-02T01:04:56.606Z","0.1.8":"2017-01-11T08:27:47.591Z","1.0.0":"2017-03-07T19:06:30.809Z","1.0.1":"2017-03-07T19:25:53.067Z","1.1.0":"2017-03-24T21:02:57.392Z","1.1.1":"2017-03-24T23:35:04.534Z","1.1.2":"2017-05-04T09:40:04.578Z","2.0.0":"2017-06-03T11:40:52.487Z"},"readmeFilename":"README.md","homepage":"https://github.com/webpack/source-list-map"}