{"maintainers":[{"name":"anonymous","email":"yo@contra.io"},{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"keywords":["vinyl","sourcemap","gulp"],"dist-tags":{"latest":"2.0.0"},"author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"https://gulpjs.com/"},"description":"Add/write sourcemaps to/from Vinyl files.","readme":"<p align=\"center\">\n  <a href=\"https://gulpjs.com\">\n    <img height=\"257\" width=\"114\" src=\"https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png\">\n  </a>\n</p>\n\n# vinyl-sourcemap\n\n[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][ci-image]][ci-url] [![Coveralls Status][coveralls-image]][coveralls-url]\n\nAdd/write sourcemaps to/from Vinyl files.\n\n## Usage\n\n```js\nsourcemap.add(file, function (err, updatedFile) {\n  // updatedFile will have a .sourceMap property\n});\n\n// The 2nd argument can be given as a path string\nsourcemap.write(file, './maps', function (err, updatedFile, sourcemapFile) {\n  // sourcemapFile will be a Vinyl file to be written to some location\n  // updatedFile will have the .contents property updated with a sourceMappingURL that resolves to sourcemapFile\n});\n\n// If not defined, the sourcemap is inlined\nsourcemap.write(file, function (err, updatedFile, sourcemapFile) {\n  // sourcemapFile is undefined\n  // updatedFile will have the .contents property updated with a sourceMappingURL that is an inlined sourcemap\n});\n```\n\n## API\n\n### `sourcemap.add(file, callback)`\n\nTakes a [Vinyl][vinyl] `file` object and a `callback` function. It attempts to parse an inline sourcemap or load an external sourcemap for the file. If a valid sourcemap is found, the `sources` & `sourcesContent` properties are resolved to actual files (if possible) and a fully resolved sourcemap is attached as `file.sourceMap`. If a sourcemap is not found, a stub sourcemap is generated for the file and attached as `file.sourceMap`.\n\nOnce all resolution is complete, the `callback(err, updatedFile)` is called with the `updatedFile`. If an error occurs, it will be passed as `err` and `updatedFile` will be undefined. **Note:** The original file is mutated but `updatedFile` is passed to the callback as a convenience.\n\nIf the `file` is not a Vinyl object or the contents are streaming, an Error will be passed to the `callback`.\n\nIf the `file` has a `.sourceMap` property or the contents are null, the `callback` will be called immediately without mutation to the file.\n\nAll filesystem operations are optional & non-fatal so any errors will not be bubbled to the `callback`.\n\n### `sourcemap.write(file, [outputPath,] callback)`\n\nTakes a [Vinyl][vinyl] `file` object, (optionally) an `outputPath` string and a `callback` function.\n\nIf `outputPath` is not passed, an inline sourcemap will be generated from the `file.sourceMap` property and appended to the `file.contents`. Once the inline sourcemap is appended, the `callback(err, updatedFile)` is called with the `updatedFile`. If an error occurs, it will be passed as `err` and `updatedFile` will be undefined. **Note:** The original file is mutated but `updatedFile` is passed to the callback as a convenience.\n\nIf `outputPath` is passed, a new Vinyl file will be generated using `file.cwd` and `file.base` from the original file, the path to the external sourcemap, and the `file.sourceMap` (as contents). The external location will be appended to the `file.contents` of the original file. Once the new file is created and location appended, the `callback(err, updatedFile, sourcemapFile)` is called with the `updatedFile` and the `sourcemapFile`. If an error occurs, it will be passed as `err` and `updatedFile`/`sourcemapFile` will be undefined. **Note:** The original file is mutated but `updatedFile` is passed to the callback as a convenience.\n\nIf the `file` is not a Vinyl object or the contents are streaming, an Error will be passed to the `callback`.\n\nIf the `file` doesn't have a `.sourceMap` property or the contents are null, the `callback` will be called immediately without mutation to the file.\n\n## License\n\nMIT\n\n<!-- prettier-ignore-start -->\n[downloads-image]: https://img.shields.io/npm/dm/vinyl-sourcemap.svg?style=flat-square\n[npm-url]: https://npmjs.com/package/vinyl-sourcemap\n[npm-image]: https://img.shields.io/npm/v/vinyl-sourcemap.svg?style=flat-square\n\n[ci-url]: https://github.com/gulpjs/vinyl-sourcemap/actions?query=workflow:dev\n[ci-image]: https://img.shields.io/github/workflow/status/gulpjs/vinyl-sourcemap/dev?style=flat-square\n\n[coveralls-url]: https://coveralls.io/r/gulpjs/vinyl-sourcemap\n[coveralls-image]: https://img.shields.io/coveralls/gulpjs/vinyl-sourcemap/master.svg?style=flat-square\n<!-- prettier-ignore-end -->\n\n<!-- prettier-ignore-start -->\n[vinyl]: https://github.com/gulpjs/vinyl\n<!-- prettier-ignore-end -->\n","repository":{"type":"git","url":"git+https://github.com/gulpjs/vinyl-sourcemap.git"},"bugs":{"url":"https://github.com/gulpjs/vinyl-sourcemap/issues"},"license":"MIT","versions":{"0.1.0":{"name":"vinyl-sourcemap","version":"0.1.0","description":"Add sourcemaps to vinyl files, extracted from gulp-sourcemaps by Florian Reiterer (https://github.com/floridoo/gulp-sourcemaps)","main":"index.js","scripts":{"test":"mocha --async-only"},"keywords":["vinyl","sourcemap","gulp"],"author":{"name":"Robin Venneman"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/gulpjs/vinyl-sourcemap.git"},"devDependencies":{"eslint":"^1.7.3","eslint-config-gulp":"^2.0.0","expect":"^1.20.2","mocha":"^3.2.0","strip-bom":"^2.0.0","vinyl-fs":"^2.4.3"},"dependencies":{"acorn":"^4.0.3","async":"^2.1.4","convert-source-map":"1.3.0","css":"^2.2.1","detect-newline":"^2.1.0","graceful-fs":"^4.1.6","source-map":"^0.5.6","through2":"^2.0.1","vinyl":"^1.2.0"},"gitHead":"5ca4d06bed1e5680c224cc4ea8c9849fdede9bfe","bugs":{"url":"https://github.com/gulpjs/vinyl-sourcemap/issues"},"homepage":"https://github.com/gulpjs/vinyl-sourcemap#readme","_id":"vinyl-sourcemap@0.1.0","_shasum":"0236daa651ea7a713dbcd50fafc68765013b263a","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"0236daa651ea7a713dbcd50fafc68765013b263a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vinyl-sourcemap/-/vinyl-sourcemap-0.1.0.tgz","integrity":"sha512-kr+/M5uEBqe5+fKKhrUF/oH422n3926SRzcQvWDsEWXRR3hA2kSKfRwgnoNNFuJ/xVnG5UjUqMKQCq1C1EJZDQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDwrjRImsOtegJ97MlisP3v8XNIX9tCZNUliAppL+CdVAIhAJJgULhZcpI1to1N93l7cOvvIk5VhzXu+76VCxXKBzfh"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vinyl-sourcemap-0.1.0.tgz_1489454855615_0.5760775560047477"},"directories":{}},"0.1.1":{"name":"vinyl-sourcemap","version":"0.1.1","description":"Add sourcemaps to vinyl files, extracted from gulp-sourcemaps by Florian Reiterer (https://github.com/floridoo/gulp-sourcemaps)","main":"index.js","scripts":{"test":"mocha --async-only"},"keywords":["vinyl","sourcemap","gulp"],"author":{"name":"Robin Venneman"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/gulpjs/vinyl-sourcemap.git"},"devDependencies":{"eslint":"^1.7.3","eslint-config-gulp":"^2.0.0","expect":"^1.20.2","mocha":"^3.2.0","vinyl-fs":"^2.4.3"},"dependencies":{"acorn":"^4.0.3","async":"^2.1.4","convert-source-map":"1.3.0","css":"^2.2.1","detect-newline":"^2.1.0","graceful-fs":"^4.1.6","source-map":"^0.5.6","strip-bom":"^2.0.0","through2":"^2.0.1","vinyl":"^1.2.0"},"gitHead":"b401aac6b55d6528f8020d64408289783a216f7f","bugs":{"url":"https://github.com/gulpjs/vinyl-sourcemap/issues"},"homepage":"https://github.com/gulpjs/vinyl-sourcemap#readme","_id":"vinyl-sourcemap@0.1.1","_shasum":"acba01ddeed92e37df2aea217335d62352af2f5d","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"acba01ddeed92e37df2aea217335d62352af2f5d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vinyl-sourcemap/-/vinyl-sourcemap-0.1.1.tgz","integrity":"sha512-CF3ylZD+wWaY8g4L4NYpHQEznOZRItpnx+HQ4vXcKQAsoJa3Rqe5ZIaIF9Cl8McJxrpyEDzJav+mN9uw9fA96w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHUSBms7sa9qfYs5W5gR1Z7uW2OVoUtc63J1uhe965hyAiEAyfJghqfl49tB2SJjLP1ZbMoNI7V/M5lTmzKCcHdIBw0="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vinyl-sourcemap-0.1.1.tgz_1489705922588_0.9214664220344275"},"directories":{}},"0.2.0":{"name":"vinyl-sourcemap","version":"0.2.0","description":"Add sourcemaps to vinyl files, extracted from gulp-sourcemaps by Florian Reiterer (https://github.com/floridoo/gulp-sourcemaps)","main":"index.js","scripts":{"test":"mocha --async-only"},"keywords":["vinyl","sourcemap","gulp"],"author":{"name":"Robin Venneman"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/gulpjs/vinyl-sourcemap.git"},"devDependencies":{"eslint":"^1.7.3","eslint-config-gulp":"^2.0.0","expect":"^1.20.2","mocha":"^3.2.0","vinyl-fs":"^2.4.3"},"dependencies":{"acorn":"^4.0.3","async":"^2.1.4","convert-source-map":"1.3.0","css":"^2.2.1","detect-newline":"^2.1.0","graceful-fs":"^4.1.6","source-map":"^0.5.6","strip-bom":"^2.0.0","through2":"^2.0.1","vinyl":"^1.2.0"},"gitHead":"1e136d873a3b3333f9096f18441d0ff6320c7ce9","bugs":{"url":"https://github.com/gulpjs/vinyl-sourcemap/issues"},"homepage":"https://github.com/gulpjs/vinyl-sourcemap#readme","_id":"vinyl-sourcemap@0.2.0","_shasum":"22ab973196ae0ffc83ffc0d5e05d97288a4b9019","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"22ab973196ae0ffc83ffc0d5e05d97288a4b9019","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vinyl-sourcemap/-/vinyl-sourcemap-0.2.0.tgz","integrity":"sha512-cPIFaF84Xjf9oJOnpdc65fxdji9MXBwHb3B5xsIX5EPWbjMzWFQ7JEti29slfFK1j8CJnkL4a953TG/e7LT1cg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD1OlGXWnGThEb9p1HfH209ZPXEQCa3nXyAJ3cbxXS+oAIhAKv5883mi5EpBpuyXPzoEt7JXdDZXSGbUWhmxTOBHAlm"}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vinyl-sourcemap-0.2.0.tgz_1490050873448_0.6290511914994568"},"directories":{}},"0.3.0":{"name":"vinyl-sourcemap","version":"0.3.0","description":"Add sourcemaps to vinyl files, extracted from gulp-sourcemaps by Florian Reiterer (https://github.com/floridoo/gulp-sourcemaps)","main":"index.js","scripts":{"test":"mocha --async-only"},"keywords":["vinyl","sourcemap","gulp"],"author":{"name":"Robin Venneman"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/gulpjs/vinyl-sourcemap.git"},"devDependencies":{"eslint":"^1.7.3","eslint-config-gulp":"^2.0.0","expect":"^1.20.2","mocha":"^3.2.0","vinyl-fs":"^2.4.3"},"dependencies":{"acorn":"^4.0.3","async":"^2.1.4","convert-source-map":"1.3.0","css":"^2.2.1","detect-newline":"^2.1.0","graceful-fs":"^4.1.6","object.defaults":"^1.0.0","source-map":"^0.5.6","strip-bom":"^2.0.0","through2":"^2.0.1","vinyl":"^1.2.0"},"gitHead":"4f9eb00f04024cb834b879d29618aa00b7cf7bcb","bugs":{"url":"https://github.com/gulpjs/vinyl-sourcemap/issues"},"homepage":"https://github.com/gulpjs/vinyl-sourcemap#readme","_id":"vinyl-sourcemap@0.3.0","_shasum":"99d54fbadf26fee99fbe79437f81f1462e511e0c","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"99d54fbadf26fee99fbe79437f81f1462e511e0c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vinyl-sourcemap/-/vinyl-sourcemap-0.3.0.tgz","integrity":"sha512-knNzxUnN0fDKOmiNpcI7OD2bx0GeDhs8OG4m5fw6MHWfECPs9WEx1/oE0vY8yWQQKEeqrRudVRBUttMpzeWhaQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDLcPjweKSb1EzDgvvbxCCyaDZHeirFC/Pbk0fCfSu6xAIhAK012um00bWOaalqhII1zPXg0WA0R+FlZZ313k5zegeZ"}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vinyl-sourcemap-0.3.0.tgz_1490312935591_0.18210251280106604"},"directories":{}},"0.4.0":{"name":"vinyl-sourcemap","version":"0.4.0","description":"Add/write sourcemaps to/from Vinyl files.","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"http://gulpjs.com/"},"contributors":[{"name":"Robin Venneman"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}],"repository":{"type":"git","url":"git+https://github.com/gulpjs/vinyl-sourcemap.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","files":["LICENSE","index.js","lib/"],"scripts":{"lint":"eslint index.js lib/ test/add.js test/write.js && jscs index.js lib/ test/add.js test/write.js","pretest":"npm run lint","test":"mocha --async-only","cover":"istanbul cover _mocha --report lcovonly","coveralls":"npm run cover && istanbul-coveralls"},"dependencies":{"async":"^2.1.4","convert-source-map":"^1.5.0","file-normalize":"^1.1.0","graceful-fs":"^4.1.6","object.defaults":"^1.0.0","vinyl":"^2.0.0"},"devDependencies":{"eslint":"^1.10.3","eslint-config-gulp":"^2.0.0","expect":"^1.20.2","istanbul":"^0.4.3","istanbul-coveralls":"^1.0.3","jscs":"^2.4.0","jscs-preset-gulp":"^1.0.0","mississippi":"^1.3.0","mocha":"^3.2.0"},"keywords":["vinyl","sourcemap","gulp"],"gitHead":"2e74f8890b31ac188fcd93a486c620f6e2e97147","bugs":{"url":"https://github.com/gulpjs/vinyl-sourcemap/issues"},"homepage":"https://github.com/gulpjs/vinyl-sourcemap#readme","_id":"vinyl-sourcemap@0.4.0","_shasum":"fabcbf1eaa578894a4f2a5fef5a38fc6767f59d3","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"fabcbf1eaa578894a4f2a5fef5a38fc6767f59d3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vinyl-sourcemap/-/vinyl-sourcemap-0.4.0.tgz","integrity":"sha512-LFC0cRG5a3avRL19lJR6A2wrx94Ea8cD8GCpIMIqiY2Rz4N3CButnoFLioeBGKIQqqBropoLT76uTmhZ3lkIDw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBOET+H5w8Gueah+hC/smCNsuaWkYpMR3rXc3MzWhyU9AiBezYGHwtIDEGvb6e2Pq3RrBWwYeJTqQgOvu9suQvDiyA=="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vinyl-sourcemap-0.4.0.tgz_1493832046201_0.22730566142126918"},"directories":{}},"1.0.0":{"name":"vinyl-sourcemap","version":"1.0.0","description":"Add/write sourcemaps to/from Vinyl files.","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"http://gulpjs.com/"},"contributors":[{"name":"Robin Venneman"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}],"repository":{"type":"git","url":"git+https://github.com/gulpjs/vinyl-sourcemap.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","files":["LICENSE","index.js","lib/"],"scripts":{"lint":"eslint index.js lib/ test/add.js test/write.js && jscs index.js lib/ test/add.js test/write.js","pretest":"npm run lint","test":"mocha --async-only","cover":"istanbul cover _mocha --report lcovonly","coveralls":"npm run cover && istanbul-coveralls"},"dependencies":{"convert-source-map":"^1.5.0","file-normalize":"^1.1.0","graceful-fs":"^4.1.6","now-and-later":"^2.0.0","vinyl":"^2.0.0"},"devDependencies":{"eslint":"^1.10.3","eslint-config-gulp":"^2.0.0","expect":"^1.20.2","istanbul":"^0.4.3","istanbul-coveralls":"^1.0.3","jscs":"^2.4.0","jscs-preset-gulp":"^1.0.0","mississippi":"^1.3.0","mocha":"^3.2.0"},"keywords":["vinyl","sourcemap","gulp"],"gitHead":"14ddac31b66d2cbd0c4e9b181ad1490fad56611b","bugs":{"url":"https://github.com/gulpjs/vinyl-sourcemap/issues"},"homepage":"https://github.com/gulpjs/vinyl-sourcemap#readme","_id":"vinyl-sourcemap@1.0.0","_shasum":"1dadb75097dc922c4a4aab92bbaa93c8d9c076bc","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"1dadb75097dc922c4a4aab92bbaa93c8d9c076bc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vinyl-sourcemap/-/vinyl-sourcemap-1.0.0.tgz","integrity":"sha512-u/hXmopZTJxJALMj4SwKd+haDm9XBpiwYjeBtCcS231D1ddfh8KhXV6APX7efVRmpnNXuoihIYItCsfMMVqNUA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCkqUKoGFSwGpXcYl8Qqq4vXuXg3Ny8vz843s22uwY2dQIhALSiZFRAf0U0zDwmqMHtJdQJ+xj5a3z2Mhv5BqoAYuaM"}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vinyl-sourcemap-1.0.0.tgz_1497817206550_0.9947819525841624"},"directories":{}},"1.1.0":{"name":"vinyl-sourcemap","version":"1.1.0","description":"Add/write sourcemaps to/from Vinyl files.","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"http://gulpjs.com/"},"contributors":[{"name":"Robin Venneman"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}],"repository":{"type":"git","url":"git+https://github.com/gulpjs/vinyl-sourcemap.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","files":["LICENSE","index.js","lib/"],"scripts":{"lint":"eslint index.js lib/ test/add.js test/write.js && jscs index.js lib/ test/add.js test/write.js","pretest":"npm run lint","test":"mocha --async-only","cover":"istanbul cover _mocha --report lcovonly","coveralls":"npm run cover && istanbul-coveralls"},"dependencies":{"append-buffer":"^1.0.2","convert-source-map":"^1.5.0","graceful-fs":"^4.1.6","normalize-path":"^2.1.1","now-and-later":"^2.0.0","remove-bom-buffer":"^3.0.0","vinyl":"^2.0.0"},"devDependencies":{"eslint":"^1.10.3","eslint-config-gulp":"^2.0.0","expect":"^1.20.2","istanbul":"^0.4.3","istanbul-coveralls":"^1.0.3","jscs":"^2.4.0","jscs-preset-gulp":"^1.0.0","mississippi":"^1.3.0","mocha":"^3.2.0"},"keywords":["vinyl","sourcemap","gulp"],"gitHead":"4121a96458f1f78709411b083655c520a679e49e","bugs":{"url":"https://github.com/gulpjs/vinyl-sourcemap/issues"},"homepage":"https://github.com/gulpjs/vinyl-sourcemap#readme","_id":"vinyl-sourcemap@1.1.0","_shasum":"92a800593a38703a8cdb11d8b300ad4be63b3e16","_from":".","_npmVersion":"2.15.1","_nodeVersion":"0.10.48","_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"92a800593a38703a8cdb11d8b300ad4be63b3e16","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz","npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2/wtCRA9TVsSAnZWagAAYJYP/RJPm2SnFrDPSNw+4hHG\n/wBBVjPLmldGBBV0B8HsBBLaxakLOcBZWFBo66ws3vIyITHMcGvgS8TcbQfj\nSpWUXkEZaGQHfVyXhs4Xaf6UkZVm2jtri92QnLGbWfDlSLDBHzTDJZSTBdsw\nF94okVIJ2fK//ZLDP/MSgCrNZu5BV36v36xofMonWUEjWWCku2Nzy8ndQnZE\nnZ6qxjVjkyKRhaT0ZRWKdVdI86Bht9IPRRAdz7710tfnkV5YTUrsv+enfoXx\nHO6MeljOnOJriQ2sAtBH7q+PASIqCp3kK5dDSI+OyP+gIfgBcgvNy3nn4CE8\nv4gpi6Q6q2QvjbucH0mRVz/pIrWVDADjToHwUDeBPBYXqnelXuogX/FfJ/S2\n1pr9OW8J4ZtJxqwukqVWhhFFZxF/8L4/nSHgnGx08cD1vMgOQNUfsLWcAG9B\nWRNfvhWZoydUzSExdQti4ag57Tc37PZLkDCwXjW34idCXeslURdDfgsYas3G\nW/cQGUogwooWJwlJOsKm0CRfF7eOZnZcgxVXngrZbfiRdzvoNOiT3clA0Et4\nrFODsjp7G4x9VhWNajUnkVuvU6vWv45bnIKn/1NyzhHc9nC01KfPwSIoUNrs\n9U5m+3cF7J19LuBwbaZPB7EduUwp9VNU/O02CAZR9Wn7uA5fxZgTBTM3VK7w\nfN7+\r\n=O088\r\n-----END PGP SIGNATURE-----\r\n","integrity":"sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDBH9rdvkTBW2iIWiHGmr3bEFIFDAa35Nnyqj54+dZtXwIhAP/4oVExJNGhi4lj0cr6a4lu2vLttKt5LfkI2RCCnvl6"}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vinyl-sourcemap-1.1.0.tgz_1501616166889_0.9932172652333975"},"directories":{}},"2.0.0":{"name":"vinyl-sourcemap","version":"2.0.0","description":"Add/write sourcemaps to/from Vinyl files.","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"https://gulpjs.com/"},"contributors":[{"name":"Robin Venneman"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}],"repository":{"type":"git","url":"git+https://github.com/gulpjs/vinyl-sourcemap.git"},"license":"MIT","engines":{"node":">=10.13.0"},"main":"index.js","scripts":{"lint":"eslint .","pretest":"npm run lint","test":"nyc mocha --async-only"},"dependencies":{"convert-source-map":"^2.0.0","graceful-fs":"^4.2.10","now-and-later":"^3.0.0","streamx":"^2.12.5","vinyl":"^3.0.0","vinyl-contents":"^2.0.0"},"devDependencies":{"eslint":"^7.32.0","eslint-config-gulp":"^5.0.1","eslint-plugin-node":"^11.1.0","expect":"^27.5.1","mocha":"^8.4.0","nyc":"^15.1.0","readable-stream":"^3.6.0"},"nyc":{"extension":[".js"],"reporter":["lcov","text-summary"]},"prettier":{"singleQuote":true},"keywords":["vinyl","sourcemap","gulp"],"gitHead":"3b19cd6b418f3f9791cbedf02d65f46ecb634d80","bugs":{"url":"https://github.com/gulpjs/vinyl-sourcemap/issues"},"homepage":"https://github.com/gulpjs/vinyl-sourcemap#readme","_id":"vinyl-sourcemap@2.0.0","_nodeVersion":"16.14.2","_npmVersion":"8.11.0","dist":{"integrity":"sha512-BAEvWxbBUXvlNoFQVFVHpybBbjW1r03WhohJzJDSfgrrK5xVYIDTan6xN14DlyImShgDRv2gl9qhM6irVMsV0Q==","shasum":"422f410a0ea97cb54cebd698d56a06d7a22e0277","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/vinyl-sourcemap/-/vinyl-sourcemap-2.0.0.tgz","fileCount":5,"unpackedSize":16800,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGbL0kxmgrmWPhRVAzT6tOoODGqtD/Uh6UI/PJ1kzl4qAiAmkTn3umPtCQo1EhPPMADRWpsbPfrwR106JnG04gy9NA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjTd90ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoNZQ/8DKeNFs1fHNx5xlKTO+BfsRFMOaWRk3CkPeZOxHuFFXHc1MLs\r\nPA4OTrJKgSWo7ahByjA4khOhN5Np802tH2cpchBFq34d9gFrLxzGQBZM3XVU\r\nOODydhYVYOSL4HB2UjkB7T2fsUlZ2r+o9Xt07YhSC4acJkLqBCoNHVLH5hwC\r\n01rYj3XBaB465RWFhMRYq3Mi1XV9SZk44rN5R5YmcttmEP10ACU/mYiZCX1e\r\n57Ku8nHYYBRxRAjLvoDyXscA2P0H0yR3zn29On4gixhlzdYWwJX+ibE8SFW9\r\nYaOLs06LfoU62jWfVo2XIpo1PMEAEeNWv4T0AfN2KcIlKPwrQC04bDR23mCL\r\nYJia8pbqaMMm3vHRnH7Zeg7CXHJvyC+NY6EZlRxZ09GhUGv4S/LcN1CmHIEb\r\nG6o2c7C10IdI/ZQ6Rv1aVExvPZ7KEYsG8Z2BEjG38iIw9v39sL71zBUiGZvT\r\ntkRHXUWnLlzw7xwxIZ+1OyiEpHZOJ3GzrC+1lCYaJlJXxGP4ShzOGIoJ8Gml\r\n+H6CyOoQXncx9n4hK4+pl+Jw/quNWgfFd1S2O52Il6QQ2+gx8nwzQOH/bBUM\r\ntOXeCe3t5w5qBD9Q93d9H+vSRV8/iZc8iEAzXLYloEXNKMeTNBnF+gkpfKX5\r\nN2c9H/WTm+iulpq/6bLWsRrc3ExyFpDwoaI=\r\n=QbfH\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"yo@contra.io"},{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vinyl-sourcemap_2.0.0_1666047859871_0.25583869588076236"},"_hasShrinkwrap":false}},"name":"vinyl-sourcemap","time":{"modified":"2022-10-17T23:04:20.213Z","created":"2017-03-14T01:27:35.852Z","0.1.0":"2017-03-14T01:27:35.852Z","0.1.1":"2017-03-16T23:12:02.841Z","0.2.0":"2017-03-20T23:01:15.253Z","0.3.0":"2017-03-23T23:48:57.696Z","0.4.0":"2017-05-03T17:20:47.990Z","1.0.0":"2017-06-18T20:20:06.680Z","1.1.0":"2017-08-01T19:36:06.962Z","2.0.0":"2022-10-17T23:04:20.128Z"},"readmeFilename":"README.md","contributors":[{"name":"Robin Venneman"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}],"homepage":"https://github.com/gulpjs/vinyl-sourcemap#readme"}