{"maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"keywords":["rollup","rollup-plugin"],"dist-tags":{"previous":"1.0.1","latest":"3.7.1"},"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"description":"Rollup plugin to add license banner to the final bundle and output third party licenses","readme":"# rollup-plugin-license\n\n[![Greenkeeper badge](https://badges.greenkeeper.io/mjeanroy/rollup-plugin-license.svg)](https://greenkeeper.io/)\n[![Build Status](https://travis-ci.org/mjeanroy/rollup-plugin-license.svg?branch=master)](https://travis-ci.org/mjeanroy/rollup-plugin-license)\n[![Npm version](https://badge.fury.io/js/rollup-plugin-license.svg)](https://badge.fury.io/js/rollup-plugin-license)\n\nRollup plugin that can be used to:\n- Prepend a banner from a file.\n- Create a file containing all third-parties used in the bundle (and display the license of each dependency).\n\n## How to use\n\nInstall the plugin with NPM:\n\n```npm install --save-dev rollup-plugin-license```\n\nThen add it to your rollup configuration:\n\n```javascript\nconst path = require('path');\nconst license = require('rollup-plugin-license');\n\nmodule.exports = {\n  plugins: [\n    license({\n      sourceMap: true,\n      cwd: '.', // Default is process.cwd()\n\n      banner: {\n        file: path.join(__dirname, 'LICENSE'),\n        encoding: 'utf-8', // Default is utf-8\n\n        // Optional, may be an object or a function returning an object.\n        data() {\n          return {\n            foo: 'foo',\n          };\n        },\n      },\n\n      thirdParty: {\n        output: path.join(__dirname, 'dist', 'dependencies.txt'),\n        includePrivate: true, // Default is false.\n        encoding: 'utf-8', // Default is utf-8.\n      },\n    }),\n  ],\n}\n```\n\nSince version 0.3.0, `banner` can be a simple string that will be used directly:\n\n```javascript\nconst path = require('path');\nconst license = require('rollup-plugin-license');\n\nmodule.exports = {\n  plugins: [\n    license({\n      banner: `Copyright <%= moment().format('YYYY') %>`,\n    }),\n  ],\n}\n```\n\n## Banner file\n\nThe banner file can be a text file and it will be converted to a block comment automatically if needed.\n\nNote that the content will be translated to a lodash template with the following data model:\n- `pkg`: The content of the project `package.json`.\n- `dependencies`: An array of all the dependencies included in the bundle.\n- `moment`: The `moment` object.\n- `_`: The lodash object.\n- `data` A custom data object, defined in banner options.\n\nHere is a valid banner:\n\n```text\nBundle of <%= pkg.name %>\nGenerated: <%= moment().format('YYYY-MM-DD') %>\nVersion: <%= pkg.version %>\nDependencies:\n<% _.forEach(dependencies, function (dependency) { %>\n  <%= dependency.name %> -- <%= dependency.version %>\n<% }) %>\n```\n\n## Dependencies output\n\nA file containing a summary of all dependencies can be generated automatically using the following options:\n\n```javascript\nlicense({\n  thirdParty: {\n    output: path.join(__dirname, 'dist', 'dependencies.txt'),\n    includePrivate: true, // Default is false.\n  },\n})\n```\n\n## Changelogs\n\n- 0.6.0\n  - Add `cwd` option to specify custom working directory (optional option).\n  - Add a way to specify custom data object when rendering banner.\n  - Upgrade dependencies.\n- 0.5.0\n  - Feat: Sourcemap is now enable by default to ensure compatibility with other rollup plugins.\n  - Fix: Add compatibility with rollup >= 0.48.0 (the new `sourcemap` option).\n  - Fix: Ensure plugin `sourcemp` is used instead of the \"global\" one in rollup options.\n  - Chore: dependency updates.\n- 0.4.0\n  - Dependency update (`moment`).\n  - Dependency update (`magic-string`).\n- 0.3.0\n  - Add encoding option for banner and third-party output file.\n  - Banner can be a simple string.\n\n## License\n\nMIT License (MIT)\n\n## Contributing\n\nIf you find a bug or think about enhancement, feel free to contribute and submit an issue or a pull request.\n","repository":{"type":"git","url":"git+https://github.com/mjeanroy/rollup-plugin-license.git"},"users":{"flumpus-dev":true},"bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"license":"MIT","versions":{"0.1.0":{"name":"rollup-plugin-license","version":"0.1.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","main":"dist/index.js","scripts":{"lint":"gulp lint","clean":"gulp clean","build":"gulp build","test":"gulp test","release":"gulp release:minor","release:patch":"gulp release:patch","release:minor":"gulp release:minor","release:major":"gulp release:major"},"keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","dependencies":{"lodash":"4.17.2","magic-string":"0.17.0","moment":"2.17.0"},"devDependencies":{"babel":"6.5.2","babel-preset-es2015":"6.18.0","del":"2.2.2","eslint":"3.10.2","eslint-config-google":"0.7.0","gulp":"3.9.1","gulp-babel":"6.1.2","gulp-bump":"2.5.1","gulp-eslint":"3.0.1","gulp-git":"1.12.0","gulp-jasmine":"2.4.2","gulp-util":"3.0.7","jasmine-core":"2.5.2","run-sequence":"1.2.2","tmp":"0.0.31"},"gitHead":"f1207d1c32b2843f1cc317c7fc11742e9ce62223","_id":"rollup-plugin-license@0.1.0","_shasum":"562cb978a20351291188c52f4c96179492de6568","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.2.0","_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"dist":{"shasum":"562cb978a20351291188c52f4c96179492de6568","size":8862,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.1.0.tgz"},"maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rollup-plugin-license-0.1.0.tgz_1480112162391_0.5632652470376343"},"directories":{},"publish_time":1480112162952,"_cnpm_publish_time":1480112162952,"_hasShrinkwrap":false},"0.1.1":{"name":"rollup-plugin-license","version":"0.1.1","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","main":"dist/index.js","scripts":{"lint":"gulp lint","clean":"gulp clean","build":"gulp build","test":"gulp test","release":"gulp release:minor","release:patch":"gulp release:patch","release:minor":"gulp release:minor","release:major":"gulp release:major"},"keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","dependencies":{"lodash":"4.17.2","magic-string":"0.17.0","mkdirp":"0.5.1","moment":"2.17.0"},"devDependencies":{"babel":"6.5.2","babel-preset-es2015":"6.18.0","del":"2.2.2","eslint":"3.10.2","eslint-config-google":"0.7.0","gulp":"3.9.1","gulp-babel":"6.1.2","gulp-bump":"2.5.1","gulp-eslint":"3.0.1","gulp-git":"1.12.0","gulp-jasmine":"2.4.2","gulp-util":"3.0.7","jasmine-core":"2.5.2","run-sequence":"1.2.2","tmp":"0.0.31"},"gitHead":"21c73554651e59d8f421e38bfe36b4c7b7bd47d8","_id":"rollup-plugin-license@0.1.1","_shasum":"1fe0b525fcf4a8f81fd72c4d585136cf6b30acfd","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.1","_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"dist":{"shasum":"1fe0b525fcf4a8f81fd72c4d585136cf6b30acfd","size":8991,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.1.1.tgz"},"maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rollup-plugin-license-0.1.1.tgz_1480324978004_0.9419388668611646"},"directories":{},"publish_time":1480324979905,"_cnpm_publish_time":1480324979905,"_hasShrinkwrap":false},"0.1.2":{"name":"rollup-plugin-license","version":"0.1.2","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","main":"dist/index.js","scripts":{"lint":"gulp lint","clean":"gulp clean","build":"gulp build","test":"gulp test","release":"gulp release:minor","release:patch":"gulp release:patch","release:minor":"gulp release:minor","release:major":"gulp release:major"},"keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"repository":{"type":"git","url":"git+https://github.com/mjeanroy/rollup-plugin-license.git"},"dependencies":{"lodash":"4.17.2","magic-string":"0.17.0","mkdirp":"0.5.1","moment":"2.17.0"},"devDependencies":{"babel":"6.5.2","babel-preset-es2015":"6.18.0","del":"2.2.2","eslint":"3.10.2","eslint-config-google":"0.7.0","gulp":"3.9.1","gulp-babel":"6.1.2","gulp-bump":"2.5.1","gulp-eslint":"3.0.1","gulp-git":"1.12.0","gulp-jasmine":"2.4.2","gulp-util":"3.0.7","jasmine-core":"2.5.2","run-sequence":"1.2.2","tmp":"0.0.31"},"gitHead":"27b410f7598d21588c93fe64fd1d0a76e9691dff","_id":"rollup-plugin-license@0.1.2","_shasum":"d77d27b6b70e8169f672c27e3d57fbdef157e925","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.1","_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"dist":{"shasum":"d77d27b6b70e8169f672c27e3d57fbdef157e925","size":9051,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.1.2.tgz"},"maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rollup-plugin-license-0.1.2.tgz_1480325713844_0.9354960219934583"},"directories":{},"publish_time":1480325715946,"_cnpm_publish_time":1480325715946,"_hasShrinkwrap":false},"0.2.0":{"name":"rollup-plugin-license","version":"0.2.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","main":"dist/index.js","scripts":{"lint":"gulp lint","clean":"gulp clean","build":"gulp build","test":"gulp test","release":"gulp release:minor","release:patch":"gulp release:patch","release:minor":"gulp release:minor","release:major":"gulp release:major"},"keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"repository":{"type":"git","url":"git+https://github.com/mjeanroy/rollup-plugin-license.git"},"dependencies":{"lodash":"4.17.2","magic-string":"0.17.0","mkdirp":"0.5.1","moment":"2.17.0"},"devDependencies":{"babel":"6.5.2","babel-preset-es2015":"6.18.0","del":"2.2.2","eslint":"3.10.2","eslint-config-google":"0.7.0","gulp":"3.9.1","gulp-babel":"6.1.2","gulp-bump":"2.5.1","gulp-eslint":"3.0.1","gulp-git":"1.12.0","gulp-jasmine":"2.4.2","gulp-util":"3.0.7","jasmine-core":"2.5.2","run-sequence":"1.2.2","tmp":"0.0.31"},"gitHead":"2d7d3517df2f7093910396eca6f209667388b39e","_id":"rollup-plugin-license@0.2.0","_shasum":"aa141f4309e4e03b9c65c80fb7d7c4ad1fdc5292","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"dist":{"shasum":"aa141f4309e4e03b9c65c80fb7d7c4ad1fdc5292","size":9471,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.2.0.tgz"},"maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rollup-plugin-license-0.2.0.tgz_1480787623724_0.15823166887275875"},"directories":{},"publish_time":1480787625539,"_cnpm_publish_time":1480787625539,"_hasShrinkwrap":false},"0.3.0":{"name":"rollup-plugin-license","version":"0.3.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","main":"dist/index.js","scripts":{"lint":"gulp lint","clean":"gulp clean","build":"gulp build","test":"gulp test","release":"gulp release:minor","release:patch":"gulp release:patch","release:minor":"gulp release:minor","release:major":"gulp release:major"},"keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"repository":{"type":"git","url":"git+https://github.com/mjeanroy/rollup-plugin-license.git"},"dependencies":{"commenting":"1.0.3","lodash":"4.17.4","magic-string":"0.19.0","mkdirp":"0.5.1","moment":"2.17.1"},"devDependencies":{"babel":"6.23.0","babel-preset-es2015":"6.22.0","del":"2.2.2","eslint":"3.16.1","eslint-config-google":"0.7.1","gulp":"3.9.1","gulp-babel":"6.1.2","gulp-bump":"2.7.0","gulp-eslint":"3.0.1","gulp-git":"2.0.0","gulp-jasmine":"2.4.2","gulp-util":"3.0.8","jasmine-core":"2.5.2","run-sequence":"1.2.2","tmp":"0.0.31"},"gitHead":"640a02ef5c3da35107572abd401c0677292dd1cb","_id":"rollup-plugin-license@0.3.0","_shasum":"3728af6ce72525a4ebea7a7fbb173a11b4828a44","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"dist":{"shasum":"3728af6ce72525a4ebea7a7fbb173a11b4828a44","size":7059,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.3.0.tgz"},"maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rollup-plugin-license-0.3.0.tgz_1488459021929_0.8403347518760711"},"directories":{},"publish_time":1488459022580,"_cnpm_publish_time":1488459022580,"_hasShrinkwrap":false},"0.4.0":{"name":"rollup-plugin-license","version":"0.4.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","main":"dist/index.js","scripts":{"lint":"gulp lint","clean":"gulp clean","build":"gulp build","test":"gulp test","release":"gulp release:minor","release:patch":"gulp release:patch","release:minor":"gulp release:minor","release:major":"gulp release:major"},"keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"repository":{"type":"git","url":"git+https://github.com/mjeanroy/rollup-plugin-license.git"},"dependencies":{"commenting":"1.0.3","lodash":"4.17.4","magic-string":"0.19.1","mkdirp":"0.5.1","moment":"2.18.1"},"devDependencies":{"babel-core":"6.24.1","babel-preset-es2015":"6.24.1","del":"2.2.2","eslint":"3.19.0","eslint-config-google":"0.7.1","gulp":"3.9.1","gulp-babel":"6.1.2","gulp-bump":"2.7.0","gulp-eslint":"3.0.1","gulp-git":"2.2.0","gulp-jasmine":"2.4.2","gulp-util":"3.0.8","jasmine-core":"2.6.1","run-sequence":"1.2.2","tmp":"0.0.31"},"gitHead":"4c4a2df00548db2813e003c010b767c882825c8b","_id":"rollup-plugin-license@0.4.0","_shasum":"7247553463f682adef7f6804650262644f6771bd","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"dist":{"shasum":"7247553463f682adef7f6804650262644f6771bd","size":7194,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.4.0.tgz"},"maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rollup-plugin-license-0.4.0.tgz_1494432629567_0.6757215459365398"},"directories":{},"publish_time":1494432630403,"_hasShrinkwrap":false,"_cnpm_publish_time":1494432630403},"0.5.0":{"name":"rollup-plugin-license","version":"0.5.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","main":"dist/index.js","scripts":{"lint":"gulp lint","clean":"gulp clean","build":"gulp build","test":"gulp test","changelog":"gulp changelog","release":"gulp release:minor","release:patch":"gulp release:patch","release:minor":"gulp release:minor","release:major":"gulp release:major"},"keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"repository":{"type":"git","url":"git+https://github.com/mjeanroy/rollup-plugin-license.git"},"dependencies":{"commenting":"1.0.4","lodash":"4.17.4","magic-string":"0.22.4","mkdirp":"0.5.1","moment":"2.18.1"},"devDependencies":{"babel-core":"6.26.0","babel-preset-es2015":"6.24.1","del":"3.0.0","eslint":"4.5.0","eslint-config-google":"0.9.1","gulp":"3.9.1","gulp-babel":"7.0.0","gulp-bump":"2.7.0","gulp-conventional-changelog":"1.1.4","gulp-eslint":"4.0.0","gulp-git":"2.4.2","gulp-jasmine":"2.4.2","gulp-util":"3.0.8","jasmine-core":"2.7.0","rollup":"0.48.2","rollup-plugin-commonjs":"8.1.0","rollup-plugin-node-resolve":"3.0.0","run-sequence":"2.1.0","tmp":"0.0.33"},"gitHead":"0eefc58f2dd4cd5395a777aa03980f290f3ca687","_id":"rollup-plugin-license@0.5.0","_shasum":"5e707375fb58d29575253a0d28e97e41882682f7","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.2","_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"dist":{"shasum":"5e707375fb58d29575253a0d28e97e41882682f7","size":9270,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.5.0.tgz"},"maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rollup-plugin-license-0.5.0.tgz_1503348008439_0.8524206110741943"},"directories":{},"publish_time":1503348009400,"_hasShrinkwrap":false,"_cnpm_publish_time":1503348009400},"0.6.0":{"name":"rollup-plugin-license","version":"0.6.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","main":"dist/index.js","scripts":{"lint":"gulp lint","clean":"gulp clean","build":"gulp build","test":"gulp test","changelog":"gulp changelog","release":"gulp release:minor","release:patch":"gulp release:patch","release:minor":"gulp release:minor","release:major":"gulp release:major"},"keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"repository":{"type":"git","url":"git+https://github.com/mjeanroy/rollup-plugin-license.git"},"dependencies":{"commenting":"1.0.5","lodash":"4.17.5","magic-string":"0.22.4","mkdirp":"0.5.1","moment":"2.21.0"},"devDependencies":{"babel-core":"6.26.0","babel-preset-env":"1.6.1","del":"3.0.0","eslint":"4.18.2","eslint-config-google":"0.9.1","fancy-log":"1.3.2","gulp":"3.9.1","gulp-babel":"7.0.1","gulp-bump":"3.1.0","gulp-conventional-changelog":"1.1.18","gulp-eslint":"4.0.2","gulp-git":"2.5.2","gulp-jasmine":"3.0.0","jasmine-core":"3.1.0","rollup":"0.56.4","rollup-plugin-commonjs":"9.0.0","rollup-plugin-node-resolve":"3.0.3","run-sequence":"2.2.1","tmp":"0.0.33"},"gitHead":"45de694b3bfe1b187623ab6944fcd4a253f1bbd1","_id":"rollup-plugin-license@0.6.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"dist":{"shasum":"d8e5e75ac0fcb5a7af7c5d89a644ef42f05f48a4","size":10204,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.6.0.tgz"},"maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rollup-plugin-license_0.6.0_1520328880153_0.79420268959678"},"_hasShrinkwrap":false,"publish_time":1520328880226,"_cnpm_publish_time":1520328880226},"0.7.0":{"name":"rollup-plugin-license","version":"0.7.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","main":"dist/index.js","scripts":{"lint":"gulp lint","clean":"gulp clean","build":"gulp build","test":"gulp test","changelog":"gulp changelog","release":"gulp release:minor","release:patch":"gulp release:patch","release:minor":"gulp release:minor","release:major":"gulp release:major"},"keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"repository":{"type":"git","url":"git+https://github.com/mjeanroy/rollup-plugin-license.git"},"dependencies":{"commenting":"1.0.5","lodash":"4.17.9","magic-string":"0.25.0","mkdirp":"0.5.1","moment":"2.22.2"},"devDependencies":{"babel-core":"6.26.0","babel-preset-env":"1.6.1","del":"3.0.0","eslint":"5.0.1","eslint-config-google":"0.9.1","fancy-log":"1.3.2","gulp":"3.9.1","gulp-babel":"7.0.1","gulp-bump":"3.1.1","gulp-conventional-changelog":"2.0.1","gulp-eslint":"4.0.2","gulp-git":"2.7.0","gulp-jasmine":"4.0.0","jasmine-core":"3.1.0","rollup":"0.62.0","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","run-sequence":"2.2.1","tmp":"0.0.33"},"gitHead":"103583481d137b8119e76e978c877e1c3b932324","_id":"rollup-plugin-license@0.7.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"dist":{"shasum":"908101f56d2c1e6311aa2d422eb41732063d5389","size":10410,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.7.0.tgz"},"maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rollup-plugin-license_0.7.0_1530714368292_0.4765918539587375"},"_hasShrinkwrap":false,"publish_time":1530714368404,"_cnpm_publish_time":1530714368404},"0.8.0":{"name":"rollup-plugin-license","version":"0.8.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@0.8.0","maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"a7e4bf9a64ad68668aaa4bd1c46e7608473194b3","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.8.0.tgz","fileCount":12,"integrity":"sha512-yzdKIi6gCSQag8TEGf3hNkhJ8rGXafi2md7pguTGsq0VKE4wps9BF8z8D5MaQO5qJ8ESlrLP+m59S+K7LZy2rw==","signatures":[{"sig":"MEUCIQCkt2LzEa+Cetll2CVmjZIa1N/ntLZC29Z0gYn4Q6uMTAIgDTr/MvVuQ2ym4H3JyYA8BSuLhUr3pAfn/1Wexq8aTss=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54657,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPR4dCRA9TVsSAnZWagAAd40P/i8RM5wkE5NAwOiGR5cZ\ny+XVVk8euygqHECcV6ELdWmwgkQJulDKU+7A/Nm1d++HcorRr0hdn9H+nE6b\n2eTy3JPF0+7J+qq10l5jjBElewP8ZPbHsKkdGTaIqO0a344Ckb1Ke6nHHuB3\nw8zfSDw9WGjRG+zqkeHkaj0xohoU2/+L9bSMLFT7BtX1oitUBpTD9pyQMDmc\nkCuRfK+tjtuahtRfLiPXKMZgj7/cbBanGOmUaXPDhf57G08W2GD9Cd7+4Mp0\nWbGhRjBiSePgRxJVGvP6Oempq92QKMVndv0kzReeUkd1zKvJ2BzIn/yPezLx\nitZTuNMy1bZ6ymWfFuX74OvS5ciQMF7uxIDmcF0XW212O1XxtA/MdRAj/gqe\nJ4tvJUXQlzM1fjQLDuyYeBfhR3prgGNl8wY7QI4FCemwgLgef7RlkM0aZAN2\nKBQZV/FxC/A8yYvGm9Gpc64QAUH1uWxz5nThAIKgso5c5TXjr/njXYzjBspn\ng+jPSHFqD2keRAudYD1iwv9w8k8bTpP88bH8bn5x/mD8jPRjIVlJAJYiSEc0\n+1zV2/RicMAdvU/AtVRj3zluTBAodk1TqpyWgPUXXZfOyVToIN6sTu75d1fl\nCbzvh0ATjmyPgZ04DEyedVw0Knoy68PQfZS3sXd7zmBc7M5/lY4VT52g2P7k\nqJgU\r\n=Hgrx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","gitHead":"1441012075a2870ea2e346fd2bc5641e3cc1941d","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"5.6.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"8.11.2","dependencies":{"lodash":"4.17.11","mkdirp":"0.5.1","moment":"2.23.0","commenting":"1.0.5","magic-string":"0.25.1"},"_hasShrinkwrap":false,"devDependencies":{"del":"3.0.0","tmp":"0.0.33","gulp":"4.0.0","eslint":"5.11.0","rollup":"1.1.0","fs-extra":"7.0.1","gulp-git":"2.8.1","fancy-log":"1.3.3","gulp-bump":"3.1.3","gulp-babel":"8.0.0","@babel/core":"7.2.2","gulp-eslint":"5.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.3.0","@babel/preset-env":"7.2.3","eslint-config-google":"0.11.0","rollup-plugin-commonjs":"9.2.0","rollup-plugin-node-resolve":"4.0.0","gulp-conventional-changelog":"2.0.9"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_0.8.0_1547509276411_0.5034737550736847","host":"s3://npm-registry-packages"}},"0.8.1":{"name":"rollup-plugin-license","version":"0.8.1","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@0.8.1","maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"cdcfee2a32f27790e5019a2a7abd9234476ac589","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.8.1.tgz","fileCount":12,"integrity":"sha512-UeDVawklIv/rb4/M8AqHHtt03L+gDNfCVjQJqgUaQKiNTmUk+peAzkaLYeC6kfQm7i77kGYEzkbPZ0Dd9NEbCQ==","signatures":[{"sig":"MEUCIQDaVtDQy2475gk1ac82nCDZk8de98HaBKpjpZx/7L+QxgIgBTGZqblv0vWd/44r/oLpWBapGRUM6z6o+Q24QNxLtfs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":86844,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcQEsJCRA9TVsSAnZWagAAY/UQAJ96zkLhozAHmqvWaKWB\nLORvT8P3DXU5gnFTaZQddCLowt31k0TAjhuqv+iYcYeSDCfJc6g/StTDEyQY\n6q/TAw5Rc8fEpWh18cFWCbAXdnhagNeOZ4XucFEI7g6LuKfmnkw3mf2YFchR\nHN0ZPNY87mDoPdBbsc89TYuF0+YsEfspx+2gPg0znRsxv5VvOdsQ7rO1kpSC\nzv3z/NVbOx6GT96GUSNsSJMPFgxnCQN7czpwF+vsV6JQnuuHyJ/nlijdMA7h\nrba0i3I3kddRz2mRcuC4Zo7/cnGcKsNd35tbyECEMH8P9VNfTyrzKriORVZo\nGCRppmKxhQqsI43y/+WDwrxH+c5tzgn4rXRTrnREck2fjv3LJg+TSdngHdES\nhnps11yBFU5xjxPDgY44eQXJKIyuDniF8bMyZcwnQB82YpMVxFLLNqKtOgiy\nQEbwnFPVu1FoRntVZSXuhyoJlNGVQJj0Xglx7QAoDtyKR/2Ry5ZWRPpiKzP5\nyNbJaIjky9R07ZlX0o0JivF72vNiIHSw1+djScSeBq6+7RiUnh27H0xJEXlj\n3ujhmx6uBGvTZ5D0YGpADNjh38wXw6w/trt569WTU3rxiqgQrBkBH/Svwb1L\npT8VfXiulQk8d1MDUaRxaa/1ii1xsuyJVWIvTvuvZ/tyaiKFz36QyI/oyepP\nETB1\r\n=S+Rf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","gitHead":"e74c19ba374b695a922f836d1aa9c2012964ef7d","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"5.6.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"8.11.2","dependencies":{"lodash":"4.17.11","mkdirp":"0.5.1","moment":"2.23.0","commenting":"1.0.5","magic-string":"0.25.1"},"_hasShrinkwrap":false,"devDependencies":{"del":"3.0.0","tmp":"0.0.33","gulp":"4.0.0","eslint":"5.12.0","rollup":"1.1.0","fs-extra":"7.0.1","gulp-git":"2.8.1","fancy-log":"1.3.3","gulp-bump":"3.1.3","gulp-babel":"8.0.0","@babel/core":"7.2.2","gulp-eslint":"5.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.3.0","@babel/preset-env":"7.2.3","eslint-config-google":"0.11.0","rollup-plugin-commonjs":"9.2.0","rollup-plugin-node-resolve":"4.0.0","gulp-conventional-changelog":"2.0.9"},"peerDependencies":{"rollup":"< 2"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_0.8.1_1547717384975_0.30482885947361615","host":"s3://npm-registry-packages"}},"0.9.0":{"name":"rollup-plugin-license","version":"0.9.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@0.9.0","maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"58660e424fe80223b5398cc06d22b95342508ad3","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.9.0.tgz","fileCount":12,"integrity":"sha512-/1PW3C1+xIeUsaSQdvRsMFu7Oqmou6ArLBy5vDfem1Yv8wEBGlJ4+izYTZn61Lq39srT+6bndK+zfYTz0CrXQQ==","signatures":[{"sig":"MEQCIHgEyBTI9Cb1LgQVkAq8iy5L4GZ1CQIA8rDzAKilzeTpAiA2GoAjRryv0Yr0ek1O9hC8OamBvmd4NPWb8/U6Wcx/lw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":88232,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc9hzTCRA9TVsSAnZWagAAStsP/1JoHgiPdiIqu58MBxC+\nuBKMk5o4gjTk3+pHYz9T1X4QE5cZAFFa61gD+vasqTt8KWQ/K1kxyhIExYqu\nMF3cOvd/cl9FV0PFItN3CktMYcp/E3/5ywfyTC1t+glVndJvgC3XEAkeSVGL\nYqSzUNNk33yIwZpaftTe0EMibEGu61XfnSzJ4muK3XmCeAZW/WzvVVwS340Q\nYzEk7pOC1plaLYcmq8XRI3LIz7DT5mIsk5pobMIrFTDGcLaVeYTElHdeCans\nJLk0kwdzxNz1RcqKMDGfwYf/uDJ2NDzrC3nlTuWtxcpzdsGK+n49mEiA2OX/\nagqLKYVVZIAHaiqELJRa29h0AtRpfAlSskmSxYALpkF9s9G6OyewUZUqwxay\nmAyUGFI8izPHd+846XXtI83l54etXlG4nPh++D5Ny3l0Tj+NoH8QBujnZJrJ\n2qvnsSXDBlN40NGPqS5Cf8AhYGTbdPTZ5jhOpthjpJFfuOavrJJZ+V/F1kev\nFrwW0ZDkbiwIA39qorlSjE3YnRItMBLKFuNCi1hUDFsIZcKL3KcL6Q+8vPfd\nD0NP6S41DbO5Wo7Z3NfXE3kw5ttGPomsV6SLIxbdFquY4vrFOPcffjhnMkGu\n+ZRKOs4dx/Ohso3DDTFZDfworI1h+RZV4BB2WZKEa2brEtdFC11C0pdla0DJ\nXz4o\r\n=t0X8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","gitHead":"b017395c960e305604642bb211da9bf6c3161b46","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"5.6.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"8.10.0","dependencies":{"lodash":"4.17.11","mkdirp":"0.5.1","moment":"2.24.0","commenting":"1.1.0","magic-string":"0.25.2"},"_hasShrinkwrap":false,"devDependencies":{"del":"4.1.1","tmp":"0.1.0","gulp":"4.0.2","eslint":"5.16.0","rollup":"1.13.1","fs-extra":"8.0.1","gulp-git":"2.9.0","fancy-log":"1.3.3","gulp-bump":"3.1.3","gulp-babel":"8.0.0","@babel/core":"7.4.5","gulp-eslint":"5.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.4.0","@babel/preset-env":"7.4.5","eslint-config-google":"0.13.0","rollup-plugin-commonjs":"10.0.0","rollup-plugin-node-resolve":"5.0.1","gulp-conventional-changelog":"2.0.19"},"peerDependencies":{"rollup":"< 2"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_0.9.0_1559633107254_0.4027774433872957","host":"s3://npm-registry-packages"}},"0.10.0":{"name":"rollup-plugin-license","version":"0.10.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@0.10.0","maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"2060e31938cfbb3ce7db0a74a4dee57946d5a7fb","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.10.0.tgz","fileCount":12,"integrity":"sha512-DjoT3eQbTfTbRn1iobWjXZjDGpSGLQRXUNgxiIg5HZ4WvH4Z9eX4dR40k/Y2uHO/MJAebYh0QaZiyqHQyYHSJg==","signatures":[{"sig":"MEQCIC9vIzcEA9h91/uhf8IyO3pB2p7Wwdp5TU9B15oVByu+AiB6U6Fh+rvh5H3iTbz6X9UYjwzs1C3GUng4JO8OgXwzYQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":92288,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQyKnCRA9TVsSAnZWagAAZtEQAKLju1WzPKVEsZc696CH\nYtxwG1bVDyfQq/DNVWFvEzWn03kWHYQoJSoJbcOrqLM+eX7QoixRHUBxnjg9\nhUV50wKyKR1OMH7V5l3yoLiY9GuewurTlxIkpdSYzJnKbU57OJ1ByxsCFTGG\nrLvTs2fPvCf1UNvt96LBXQR+v7QC4aVIe0QwStH6e8SsWKO6Aa+pGKeWKGUV\nDeb6dpbIJTBNO2rhK4KUsDO03GtTV+wCNpjZdWZC5XsnbHspJS50trjV38Lr\nnUJpLkuDwxmeUMJALNcMXwTuCZjmp3oHt4eW/s3Igv3CYC3IKlEySRq6e+ZV\nn6dpELTXWqJczLpZxW+0xiiEOTrPGosBRk0t1igmIqpKeurmKlgR1Caqg+Dd\n6wfG58ceDNSsDK7/Pi6pJmQasOAAA3sWy3MwKhXw3vokPkFcIsTm0aZCNGiA\n4IHTiQ5BZKeLaYmhkljS8TW9zj2LVGYxuMXSwg4F7h+iy6CP0JYoAsWSiPyK\nsfupNsvIMlxm1ugosywRpJ6U8EeZyZSNXcqXxOn3DU/kFk86/auLjmB+DRO7\nyipSRx8L3QY0bn+iLawqWu33pme3YqshfJnxD4awzLwfPx0oNyI5YnsrrYRh\nN3eKvKWb2u8AFTAQw/I6yMhjiJh2B2qLd50yq8UBHjf4eelX9X5m1GpR/vsC\nLf5V\r\n=cBaP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","gitHead":"786ee0c5ac9f900ab03f1e2cc7425e0feb03324a","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"5.6.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"8.10.0","dependencies":{"lodash":"4.17.15","mkdirp":"0.5.1","moment":"2.24.0","commenting":"1.1.0","magic-string":"0.25.3"},"_hasShrinkwrap":false,"devDependencies":{"del":"5.0.0","tmp":"0.1.0","gulp":"4.0.2","eslint":"6.1.0","rollup":"1.18.0","fs-extra":"8.1.0","gulp-git":"2.9.0","fancy-log":"1.3.3","gulp-bump":"3.1.3","gulp-babel":"8.0.0","@babel/core":"7.5.5","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.4.0","@babel/preset-env":"7.5.5","eslint-config-google":"0.13.0","rollup-plugin-commonjs":"10.0.1","rollup-plugin-node-resolve":"5.2.0","gulp-conventional-changelog":"2.0.19"},"peerDependencies":{"rollup":"< 2"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_0.10.0_1564680871059_0.8683949013044145","host":"s3://npm-registry-packages"}},"0.11.0":{"name":"rollup-plugin-license","version":"0.11.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@0.11.0","maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"51a5ae68bb05ebf182c87ef205af002d2e3bf42f","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.11.0.tgz","fileCount":12,"integrity":"sha512-0HcvWhCSJ6G5SQg8BOdLS/ic/51hz2XIUHb1fR8z/kqbbCpJUAZcZoq2EXIghfyccvtOak7rRxlh9VA4i6/lHA==","signatures":[{"sig":"MEYCIQCXaE2xWd8WHMSXdHYZBNn9WvMA3YW4rNLiwSZmObYrfQIhAJ7NJZ8Z7qYJfbA000fklKlc6GwsQJyC7GXSzz3Ujof1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":114884,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSvzPCRA9TVsSAnZWagAAvi4P/01idUBwR8HhL2ctId+Z\nsC61FmVuw1AN/OKiGAzrNk3ACbj4islSgX347KcZmWgZjhAv5Vg9tYJFkG1t\nZABjbt4J5H6BjUHObMTjHYBijKADyU3dRQ3rU0mCvc+2IlclRO6IJ5+Ml/Gh\nsc0AoFFYosR1Z0h6yxC1c+Nh218BMuozd2UQzw9mq1fH1KkmMtkVwQdL7XD+\noPagjhVngQ10ARaWOu2IhY8SGyBqpNCGjmSacdVXp6y5yq/EDEl48Sb1lJIW\nTQ65UVTFbNcB3GRhbuuJDVa2Q9mjG89DLuw7wbhbS++WtndrDMLCHJQhZXSC\nupD2fCAY+wB4akxFQq+wxiQEkBwwpEmSC5bSNxwRtsdMxW6GYXLxx4MDgIFL\nnUEriTGo8UafOBBC/5AmQL2SLuSwCAipqUtM6EMHIWBfTHDYVysQD/TucSaG\n8sA4IotYLFLz5FaRm7jUbEOsYFswb6RXZjmnmUQXRyjFRMzphBpJQcMMvl0O\nld9V14PzZ5mDyTUQCYSqkHvw2MHCwR/slVLyv28FKOzC2aGqRXiSf0kjHtn2\n2kg/SQtS1EHe+yyBoQXG2L5tV/qPg/kwnJlP5/8aqdymeeG7VAWA4suqx4zD\nLiisQwdnW1HEzwgibTpK7qzI0WIMgALTPPlmm9tbm28+yic0kAybqObT8n8i\njm3/\r\n=eJcT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","gitHead":"852f99e757460d5fed320ace5b89e37431d31ca3","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"6.9.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"10.16.0","dependencies":{"lodash":"4.17.15","mkdirp":"0.5.1","moment":"2.24.0","commenting":"1.1.0","magic-string":"0.25.3"},"_hasShrinkwrap":false,"devDependencies":{"del":"5.0.0","tmp":"0.1.0","gulp":"4.0.2","eslint":"6.1.0","rollup":"1.19.4","fs-extra":"8.1.0","gulp-git":"2.9.0","fancy-log":"1.3.3","gulp-bump":"3.1.3","gulp-babel":"8.0.0","@babel/core":"7.5.5","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.4.0","@babel/preset-env":"7.5.5","eslint-config-google":"0.13.0","rollup-plugin-commonjs":"10.0.2","rollup-plugin-node-resolve":"5.2.0","gulp-conventional-changelog":"2.0.19"},"peerDependencies":{"rollup":"< 2"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_0.11.0_1565195471011_0.7971787013231832","host":"s3://npm-registry-packages"}},"0.12.0":{"name":"rollup-plugin-license","version":"0.12.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@0.12.0","maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"eb8a707a4e53eb2248ba915d902cec8e296e5f0d","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.12.0.tgz","fileCount":14,"integrity":"sha512-Wo+3FB37+CzSB2AdZb/Flk7gHnUZNJhBkGSYFL6v56/nNHJ76SgsxpgiFaUUlLBZ6vvIb3xA4xUZgp6ghhiAWQ==","signatures":[{"sig":"MEQCIFOrXYQ43/cIqFnmlG4toSQF87RCHdwsCGIx0jobeAUQAiAbBtcNn/XvBdCBGM82lhxBtxaSYeI/F0bcGEue92uWKg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":125313,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdUcvpCRA9TVsSAnZWagAAuCsP/AhSvK3yaM4biZsua4Q5\n8DcR8s0QHTyTxheOA4n0KdMdHsNMI3cQh8jqjGenIlGGMILz9dnyvqdaRNNR\nI+Ts4yEkSKwltLgxbcZbng9aS2kzVfHmXlFu9QbDZydlRSHb8spq+iA9iirl\nb0zFmYMGBr9/53uXv+jZs4eiCk4zbJHMisYS2Nb3WBlD+L5gvnEzl9aPYrLn\nV/rZ0zzL03gxRZfIgFq7og+UhhwpYvxRlMucuwIGnlkfIw6sMi10WSijpc6n\nVgTBiFXNhbDRxyQYbYfQHKT9BWmFXLMLauIQNVeRjd6PLI05EhaaCA6/dzu6\nuQSXN/GYr8NcVze8XdXGvH+cG63kVKJiuMFTyzsLXBoqG4L+udvRAgKGQ2zm\nOJOKCpd7F4Nd/HKrViTogwWJJflFt2ZEmPQQxu/cB8YxWpq2yLr+wiKgJ4KW\nac9J9RT1rUjUqGw+KVzVJSaQDznfMORCRlyOrNj6sgIMGDOQjYlxcVC/4vfc\nFxC4HaQqj/asEi8hlzW8W3FKcREpbN4ExZlLWkOVOJKHTIQ55N3iiORMJZzX\nJKEbxtOdMlhakA13QE5eN4uYPGeVp4XTnDC3xJjljXIr+szVDZ5efBJgLt9P\nqkFuMcv0r8dFNhiTBi3+d/Gmyk+7TLXR0AYHXej4AhFMTXovdUGXMQ0f5wGn\nOgrb\r\n=junC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","gitHead":"32915657fe0e639852aef6cf12c861234ef96711","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"6.9.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"10.16.0","dependencies":{"glob":"7.1.4","lodash":"4.17.15","mkdirp":"0.5.1","moment":"2.24.0","@hapi/joi":"15.1.0","commenting":"1.1.0","magic-string":"0.25.3"},"_hasShrinkwrap":false,"devDependencies":{"del":"5.0.0","tmp":"0.1.0","gulp":"4.0.2","eslint":"6.1.0","rollup":"1.19.4","fs-extra":"8.1.0","gulp-git":"2.9.0","fancy-log":"1.3.3","gulp-bump":"3.1.3","gulp-babel":"8.0.0","@babel/core":"7.5.5","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.4.0","@babel/preset-env":"7.5.5","eslint-config-google":"0.13.0","rollup-plugin-commonjs":"10.0.2","rollup-plugin-node-resolve":"5.2.0","gulp-conventional-changelog":"2.0.19"},"peerDependencies":{"rollup":"< 2"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_0.12.0_1565641704600_0.30223958139478846","host":"s3://npm-registry-packages"}},"0.12.1":{"name":"rollup-plugin-license","version":"0.12.1","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@0.12.1","maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"7e74b76f1167ab10a3f86870c97c0762b86187a6","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.12.1.tgz","fileCount":14,"integrity":"sha512-zT8UO+Tc+DAVQHM5qeX4jnuHzTtDUYJ/8AHzUgVgqYrx5Wj5kHlvoZNaQqg7hOQbjSuHuJFlQGZmxxSQq2WMqA==","signatures":[{"sig":"MEUCIQCBlp/fZPA/lDgKLbkxRkqg6Hd1xSn4VYRULKDZGj810wIgCflP8GWrN06PEYjP9VbABj8Iti6iXMcS7bRDK/o7XUc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":128508,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdWVMRCRA9TVsSAnZWagAAZqgP/1nu+Gpnyt3bXHOk0SqN\nmFCgU1hFazJunbCKBk522fK+yrck5kafWsS4H2ERD3vINgale686kqMH6/zB\ntuuAXAc60jDbRHsZvbjEjg/AyQLcNUyTR8v2esySx7S4gqMtnAkOE4FnOiIe\n5zl5nvqEW6yYvErKKj/fcJsJCfxk76BJJ4Ezq8ksTyDCslZFj145AAm78Vp0\n1108A1q11iolZdtk4oEbMVfecWJ6ScSMx9oHMIfHPy6241fta2vEbwm7YOxu\np6fK8XxkX0esbex7noxPIbaKvuVty8+YL/qC5zkEZXoGlEuqNxS/25A1wtz8\ng2XDG0vSQnvbyQPAqv0EsOCN3KcB8VuL3Y3+/UxjS1AAEt6o2FhVQX3qKi9D\nyRffdasFhx0lZx/4Rd6LPm2H3hfxY2jaKndl4ewjBvDWqwWAHPqfyyTcfiff\nGph/CajfjLN7g7Eo7JfqiMv9U4wg5DXHTdRIfpGqxixrdhUK/MDcVrAV4sg1\n51jPzdyt+1+etB6M1+9scOa/l/ScwNrIsONMCykWZiDcNa0vLnEwh7KcZ7+p\n6Dh2Ytnbfp24+Ww4H0mKCws6/FSETYIY6wnnllzJZGlNvxu/yONbuGHRdFQC\n8yCAP0Esv95YSKa3z+n42PLBxLF8/5rBilKwJ8OqVdKtOc28h1P803AEd/Jc\ngBTy\r\n=SqTw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","gitHead":"2818c9f6b0eb541b454ca1baf354b57c020a0c79","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"6.9.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"10.16.0","dependencies":{"glob":"7.1.4","lodash":"4.17.15","mkdirp":"0.5.1","moment":"2.24.0","commenting":"1.1.0","magic-string":"0.25.3"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.1.0","gulp":"4.0.2","eslint":"6.1.0","rimraf":"3.0.0","rollup":"1.19.4","fs-extra":"8.1.0","gulp-git":"2.9.0","fancy-log":"1.3.3","gulp-bump":"3.1.3","gulp-babel":"8.0.0","@babel/core":"7.5.5","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.4.0","@babel/preset-env":"7.5.5","eslint-config-google":"0.13.0","rollup-plugin-commonjs":"10.0.2","rollup-plugin-node-resolve":"5.2.0","gulp-conventional-changelog":"2.0.19"},"peerDependencies":{"rollup":"< 2"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_0.12.1_1566135057357_0.2581568080802268","host":"s3://npm-registry-packages"}},"0.13.0":{"name":"rollup-plugin-license","version":"0.13.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@0.13.0","maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"ee9f000a2e2a95db7934b1a7584651f23e8da8b4","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.13.0.tgz","fileCount":18,"integrity":"sha512-K1At1InQufYagn1zNTikWG6NorVjdBBoKtJdHqbyV/Z1ksM3wHtWlR/4rqdKxyZjTXNTDzM7mxn7j/HERexLFw==","signatures":[{"sig":"MEQCIDemv6eZFJHgz5wsqamMoLVscm8AaxQYWxHNrDGkW84lAiB+eoUC3hBe7926tulbg2qkURybRRUDvSAbnJ/ay8EVPA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":148263,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd48jSCRA9TVsSAnZWagAAZqAP/iobsNIb3PFXXuf5K8Cd\n7RO3BVWxWwrnJ3E1vaL8nFqKIQVxBHLjbr+7pGtK/HUHmPUgi566MMJd8580\n6HOesDDC0mAv/KCXRmRmX00xLbYcayiMGTKX27xgqBkDfr6ou15e5VA1oz/Z\n98CY19KasSQteKtDbPoT9eR/JvCSthYMwtz0s8HMdA2wwCOIOMpElwrRZ01t\n2WoQuz9Me61FFfGctYIkMQ6rFInRq9XzM4CnWc8TrRwqxVDoRmXtQKJ+sf4c\naXVBe/Q8D6mdCPw6EaFJdUNH0l5/ou0acAT2bpa/mh3uClbA6oPXZ9Q225/w\nOQPcUq8E3ZkaDNvXxtpqxZ4LeXRhGvpzoebUts9/0c6Wt6LjGWntxsPPjnR+\nlq0EIJvuEaH/9pxJcwVl6iclj7MCr5lapWC/y6WoO1ZQ/DvxePKxAl1zRtyJ\nqeJA4l5GeqELgtx4ByQev14/u14+a+GmDJaOsWBsPjJWkDlsw/UC8myu7F+1\nTs/VpN+xZwQV2K80/Qs/c90kA4pjCdiFlqEmo1JxVnugpG6Ay4ZosDbowX5s\nnQKzCTN2KvfYBpk5rzcJeiUW5a0CU4YKcTy+ALqMkTgXwoM5jfMu1cI81HO2\n6VhlCxskr5ihveNjjlDwGWl/lNzxMtsIdBncBfH3dAiFV3dgZDyLIPfDXKfo\ncQMK\r\n=2vX8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","gitHead":"4a5a2374a011ffab6b8803869d3344eec860754a","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"6.4.1","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"8.16.0","dependencies":{"glob":"7.1.6","lodash":"4.17.15","mkdirp":"0.5.1","moment":"2.24.0","commenting":"1.1.0","magic-string":"0.25.4","spdx-satisfies":"5.0.0","spdx-expression-validate":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.1.0","gulp":"4.0.2","eslint":"6.7.2","rimraf":"3.0.0","rollup":"1.27.6","fs-extra":"8.1.0","gulp-git":"2.9.0","fancy-log":"1.3.3","gulp-bump":"3.1.3","gulp-babel":"8.0.0","@babel/core":"7.7.4","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.5.0","@babel/preset-env":"7.7.4","eslint-config-google":"0.14.0","rollup-plugin-commonjs":"10.1.0","rollup-plugin-node-resolve":"5.2.0","gulp-conventional-changelog":"2.0.26"},"peerDependencies":{"rollup":"< 2"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_0.13.0_1575209169847_0.09520251535520274","host":"s3://npm-registry-packages"}},"0.14.0":{"name":"rollup-plugin-license","version":"0.14.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@0.14.0","maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"623e5b6306b1521d7b89927d0a28d0f99ac52915","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-0.14.0.tgz","fileCount":5,"integrity":"sha512-+MCcBBQF9j3PHPus+3Qgk8NfiRT569HBfBAk0UP3hEo3T3buY3lMZUXuTkE+VpTq1HSritCboJ6RxBhm6CEsdA==","signatures":[{"sig":"MEUCIDMh7lbp5uVMjnkTDQkWex3lLfQA5eMVUCEcwMyJ1SbCAiEAhmkCfv8y7KZ4Wy4cDhgHBpnkQnMqdg2fYtGV5/BukJE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":144976,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeijhWCRA9TVsSAnZWagAAe6cP/3rcsdUiqjYeLO0XjTRG\nvydhAp9eRsxR6zhQP66cGwtJZQI6jfNimZg0/AI5LfmeELbSx7gUGUDQy84T\n4/HLaWgDVwaGeS1g9A18CERI9ZvJLUODjreF00IdVoubAsxSnh+lAFKJ9uKZ\nRpFS6StlYt9JHfosGeui/P1QWHHVvq/Lbv21+OjSyrshC5P3yoZo7bh7KLU1\nbhaWFic3BLLFIhtt8S8srMu8oik/5t6oDKW5+NyCfOYiB5UibACPt+1drPdm\nOquQ6gZ8FWqGBKyP3WK0WPySnAQIpi80aO8zlFcudL9hTlXTXEmWfFyJwkU1\n7yYHXKp6ngb+0ynllwFMxy29FAb4cT93DQws7kVc/jaqy1CNhrb8/9S1yNWQ\nTCAuZhT1hl0LQY3+JB1rLkpSNCfXWpqiZhMdJoMxsHOEYpfYLFspzmAuLnWv\n33XMUlzDaYjPzheYs8z8mSD3EAC3JaGKTKXRmR/icKGzpYsLzxRqDk3V4TuC\n9xGJ+CJqa0fOnGLy8B48nHqjc+YvueU91ZJoOOmPAtV+z+zeBBe923YrWQVY\nlQ4VlGqOZ1gVX5GHPQU0i37Qmrc98uepu6EAnZbbvpK/SQy+NE4iaYuazYJz\njyG9iO5lMDwq5eTtUtSZwiwAanvMAPVa3iNXF1OzKRybFPc5pLvLT3UOXIWe\nB5ap\r\n=jikT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","gitHead":"1ad9b682bc3593afe51a1ba0b1a5ce865cda2fd2","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"6.13.4","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"10.19.0","dependencies":{"glob":"7.1.6","lodash":"4.17.15","mkdirp":"0.5.1","moment":"2.24.0","commenting":"1.1.0","magic-string":"0.25.7","spdx-satisfies":"5.0.0","spdx-expression-validate":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.1.0","gulp":"4.0.2","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.32.1","fs-extra":"9.0.0","gulp-git":"2.10.1","fancy-log":"1.3.3","gulp-bump":"3.1.3","@babel/core":"7.9.0","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.5.0","@babel/register":"7.9.0","@babel/preset-env":"7.9.0","rollup-plugin-babel":"4.4.0","eslint-config-google":"0.14.0","rollup-plugin-commonjs":"10.1.0","rollup-plugin-prettier":"0.6.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-strip-banner":"1.2.0","gulp-conventional-changelog":"2.0.29","babel-plugin-add-module-exports":"^1.0.2"},"peerDependencies":{"rollup":"< 3"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_0.14.0_1586116693609_0.031116511592518714","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"rollup-plugin-license","version":"1.0.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@1.0.0","maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"7ef1329e6d2f42fcb435a146e3ed8b6a94728b8e","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-1.0.0.tgz","fileCount":5,"integrity":"sha512-cshLjQX3Lhzl0GkCdYn5sPitJMX5PInyexXecpFz2Jh/UvO8f8x9IPegieAYnzMgl9otF8ieHSR1uvFyg5g6iA==","signatures":[{"sig":"MEUCIGgNM6idm/WC0JU5HrNaMpqjKTlXDIL9enrGwuMJCW2VAiEA+9M9F7gekTBr8d4xiA8SdL51hH35tiAcNHEQYKJhQPI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":137976,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeij9KCRA9TVsSAnZWagAATbIQAJHluD5jpBbL6OxMETOx\nrC0U9g80if0i9gPeHNI16XoABvXR7sW8h2EZA2ERZ1w1B8zTbwbzd0yWKclh\nCvLkG6jqsRw8mpzYq5RPPzDfSZURLl1+fHlOdv8/WDOrzXkF2qBsxECjld8w\nnz3pC2/bDoWpbaYDox4LSAZm9uVTPyqsXzxlrBYWj9Rdp6u3Euv4BsWInrDM\nzrwYp5L+XyiynPUel8TRkOh0Yw9p3plyL4Qlka0hDkHhj1z8SbQ7gvtfqgAO\nq55r8QIn7I8yeHCU3+SOvtndr9IzVet70/wKn8vILaRyQ9kh4gWNzDxldCse\nOBiIdBnQsHd1cELDFdZ8kSsmhI7InrDTi+cvEKAYoPa/D9T4P1Q24rvJpYB2\nrgu+f8KvrMZJUKjEfTV8qy/jB1E5qItIgiPbeaAk1PSkEo/IBvd84Q69Nx3Q\nWA6841AxhQne+1XQgPlgu4ZLzPafExAw9h7XlQ+mm5b3pKo0/jzoxfHaW0Ch\niKf5WJmSSTrpxhOcX3pDFtAut/LLHFa5uQw7HIEI6vVJwf7Lpcw2gv2ZBsbF\nOcw4dA4qP3rR/JSxK+SNk2LY8ki5roSdWHTdiaLgd1qlJSXS6HoRksQadltS\nyLpyU3NG8Xo96QMD3KzWm5JxWRsATkMX8VMJRtQnbJppjooL5KlvKi+MsZcE\nbr5Z\r\n=tRDY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":">=6.0.0"},"gitHead":"c193784e3922f74584c765ade31153cf83dc3599","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"6.13.4","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"10.19.0","dependencies":{"glob":"7.1.6","lodash":"4.17.15","mkdirp":"0.5.1","moment":"2.24.0","commenting":"1.1.0","magic-string":"0.25.7","spdx-satisfies":"5.0.0","spdx-expression-validate":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.1.0","gulp":"4.0.2","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.32.1","fs-extra":"9.0.0","gulp-git":"2.10.1","fancy-log":"1.3.3","gulp-bump":"3.1.3","@babel/core":"7.9.0","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.5.0","@babel/register":"7.9.0","@babel/preset-env":"7.9.0","rollup-plugin-babel":"4.4.0","eslint-config-google":"0.14.0","rollup-plugin-commonjs":"10.1.0","rollup-plugin-prettier":"0.6.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-strip-banner":"1.2.0","gulp-conventional-changelog":"2.0.29","babel-plugin-add-module-exports":"^1.0.2"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_1.0.0_1586118473684_0.09716595691434304","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"rollup-plugin-license","version":"2.0.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@2.0.0","maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"970f42d99dec95d1f1436be16f37e323b5d4d2b3","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-2.0.0.tgz","fileCount":5,"integrity":"sha512-xeCtHPluNFUJPuTdCFJrdNfCR/3yEX2M65s/i47SmEblmJxdxea2m9yodiIKtfVoWUMbosfHTcALgZk+utbrhA==","signatures":[{"sig":"MEQCICH34hIV8Qp+cwi4jUaWdmBX1c9D7yWEsAM68xHY2zNnAiBo/AX/LmSfoNEtQQ94j09E5ctLCSGLOgU1CjJiaxKSHw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":137977,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeikKhCRA9TVsSAnZWagAACj8P/R7IP8Smg6MN/G/nL+Iu\nbIIYVT1ZCRQtk0mo/TEEtYvlW/2cePJqFm4NFkf2+DYkZ6hAg4mpas+qZ4HU\nFmVS3EjJtzeU2j9q8v3wyiQpEURsXbq+jgDyHjC0HSAjdT7L/c7aXzMl7ps5\nASpdTVh1hz3AZ/2vgON1HNRy7OwTjRX4DEabtZtajFcErmWAE4T0B6p+XKNE\nTQpx3s2dqGLDlkPCBe3Z0lAAiUvCKhtJM47LHMFEUISwGa4jfytqiE2K2sFq\nbR22dR17/dMxBG0J4Sf8yCsFiIpPBlU77WPYsLTy1DX4OWXLr2PEJCWq6sNq\n4IKGN89lsZoCONsss03kFgwSp0ymqXYmzsw5j3bX1zAa2dIbfvBNvYh3HMsA\njsmilMtrxhEc+d+yH2hhztVmjn0m0Zg5n8NL3XxC4j7Wzn6IvNdMm7IJSa1F\nU+yRpKtnBMn3Cfz0JybngG18SnV/GDoetOhIIDfdcnFG+WxERjaXzsx9hXje\ncFjuJXXQ2d+tRNUvAcmGspx/FmBgbU1ERRmVLWYPTeRuSC8w1vNvqYW5ul7E\nnQs4vMk2BdQPCj5Wu5Hw63tkYIn47mrg5jySFrNaHddg8wjsE666QmvJWhpT\nE4uoa+0H3LHiA3feHc9e2KCRpq5Bz4DSb4wtvJJD7SOO5S+8d0SWHUvFZkVm\n+BsE\r\n=tt3B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":">=10.0.0"},"gitHead":"b9bb6d7dcf24691657c096b7ad2eb46a481a4f7b","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"6.13.4","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"10.19.0","dependencies":{"glob":"7.1.6","lodash":"4.17.15","mkdirp":"1.0.4","moment":"2.24.0","commenting":"1.1.0","magic-string":"0.25.7","spdx-satisfies":"5.0.0","spdx-expression-validate":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.1.0","gulp":"4.0.2","eslint":"6.8.0","rimraf":"3.0.2","rollup":"2.3.3","fs-extra":"9.0.0","gulp-git":"2.10.1","fancy-log":"1.3.3","gulp-bump":"3.1.3","@babel/core":"7.9.0","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.5.0","@babel/register":"7.9.0","@babel/preset-env":"7.9.0","rollup-plugin-babel":"4.4.0","eslint-config-google":"0.14.0","rollup-plugin-prettier":"0.6.0","@rollup/plugin-commonjs":"11.0.2","rollup-plugin-strip-banner":"2.0.0","@rollup/plugin-node-resolve":"7.1.1","gulp-conventional-changelog":"2.0.29","babel-plugin-add-module-exports":"1.0.2"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_2.0.0_1586119329102_0.793417999220652","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"rollup-plugin-license","version":"1.0.1","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@1.0.1","maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"7ae8559a97522c0f692306e8f86dd17d1acc28a8","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-1.0.1.tgz","fileCount":5,"integrity":"sha512-+IUGQijv6NqtcFvuCvnsyZMkwLUtk/+DtP/w1TwTiiAHtBJmIj7v3BEgxGa16SjL3X7J/g5z5LiEIrv4UKHNyA==","signatures":[{"sig":"MEYCIQC9ctKSveH7sNDK43rxzO/P2uTY0J+SluooVRjOG7mIMAIhAOkWW22yC1zr9ALwmMVZZv86qUQVS98EOcfGCW62Rv20","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":138407,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJevvEKCRA9TVsSAnZWagAA6lkP+weWresgJ54cB7VmLVoX\ngJCbQH5HMR5l0oN30RYtVUlQLaWGkJ0mmRNwvZEtK7W8G/xOEIR5G+3clcF4\nBzaQycwOZDbufjz9iBpZBqNZTQ/B58VaOJbmsdUo7qOLP9uWG9IGJBD43sA0\nFpi5iFSb3Zx4iRXh9k/mSPuhNJ7hvB4x0ovjm9MJlidgvhaKNMWldBA+D1UT\nLlxBAbFncsj64JPtDz2iRHm5jBqFMlic+NV7BcokGcUSXS78EdNazLVbaa+G\na585fh3uLj+6SvoaRJHP1gaZF1kX6dgeVBzEzCHCL0YXW0jc1NhyOodVLc56\n3zXq9SkjgVgPbvhdeolKd6To/yxDpvQoYXbG/JIjC9cmWJvWMzNIIdKhBSIH\nQRKaMZZkuGTrc4Ghh76Z05c5lhydAWKh1VcD1eVDwRllcSPfgxkFfCFmF/Q8\nXvRwGg80E9gzybahbXiE7+SPsBf7W8+OvxqJtOwN5JmfqkUH5WCnzcRaPAXU\nhd8GozFMbc55Q1OkbzIjvfMC1PFwD052c9VrfhvBZOE7gM3opcmi8kmztl8N\nheMOb0e0BT+Xkc0Dxi553F7f5Z1jHdZdAoVxTAVUihCjXoBV7cy5k5cD/7rv\nkOZCVML4cNYNf4aRkyPQrWlRnueqmRhyLDpAtGAF+T+dTHHQd4yzSqMxX7An\nbLeL\r\n=jZZr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":">=6.0.0"},"gitHead":"70d2af8e1a8e7c76eee60614a88e328c7ca8c77f","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"6.13.4","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"12.16.0","dependencies":{"glob":"7.1.6","lodash":"4.17.15","mkdirp":"0.5.1","moment":"2.24.0","commenting":"1.1.0","magic-string":"0.25.7","spdx-satisfies":"5.0.0","spdx-expression-validate":"2.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"tmp":"0.1.0","gulp":"4.0.2","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.32.1","fs-extra":"9.0.0","gulp-git":"2.10.1","fancy-log":"1.3.3","gulp-bump":"3.1.3","@babel/core":"7.9.0","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.5.0","@babel/register":"7.9.0","@babel/preset-env":"7.9.0","rollup-plugin-babel":"4.4.0","eslint-config-google":"0.14.0","rollup-plugin-commonjs":"10.1.0","rollup-plugin-prettier":"0.6.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-strip-banner":"1.2.0","gulp-conventional-changelog":"2.0.29","babel-plugin-add-module-exports":"^1.0.2"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_1.0.1_1589571849578_0.8177534274696217","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"rollup-plugin-license","version":"2.0.1","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@2.0.1","maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"ec471ea63e3f819a8e4169593185b59dc9f7ac56","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-2.0.1.tgz","fileCount":5,"integrity":"sha512-w+9JIMj3rHKsI0rYDpFtzAyYZsMCDL5KLDyeb4LXGWtahcgcPbr/XwMD0yozWf4X50AbImYDTdmCHiZS3rUl0A==","signatures":[{"sig":"MEQCIBHjFNP3WsC1CBKjVRuG2BHb+PanBO56S8UBolS/oGoZAiApqa4R7CRGfOznFaHRyS9ZcGwLvspOXZlPcXFT21FRwg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140345,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJevvLqCRA9TVsSAnZWagAAfzYP/1IoVx8hk3iEVk2OxJRb\nK4bQrKPg/VX3f7cizjSGh7PhLGhRzrdqrfTLrBjajsLyuwEx8SPykT165VZV\nUTBx34HK+BXGu0Sa16uTHCIdhHcDjESwmv70hZI99viSJtHSq3irtEtV0rQV\nq3sigs62eTuueQGt3tPQ7rm7ytHaRx3eGaI8K1VIWGj6+crj/WPjw9Y0eJOX\nlOVbDZ0+Ezyjdx4T8uhsrRBPBg9v/GbWE1NQRDPAdJ6oaWxaIj3Z9Ivxls+6\nVLpisvB2PlPxaP+BDcrQkAlVLi06LnnH127H+hE7gckMf67Fx19zsljQG8LB\nN0SLrUGz7iAjTA9sFh9+CCyn2uSs61tB5+b5bSgY/K3nqGiLlZUD0qAKAFG0\ncW4H2IQCbejb2Z9QLdQcojPxpji/s0kHI5ORr0pDNZo0tsWXu91HGIFBBHf7\nlxJEvKmih0N3D0w0JLQsficRpiGrbjuPOQSLMHpQNmZjKRTRjzgrkTHrqm3h\n/mf7B4/AeyUop4ukU1RPFj5anBd/8zqmpy6MN6uvgdm4+QPtLQmBb0RHBxy5\nicly/WOfIR4MKBc3s9SxaOPL4KABuyLosgINPI6WL69nwvpmI7aq+Mb6AYMN\nX8fiQe4+tR3AwwG1c96X/UUd6C6c0e48NaOGeYRhvwQl45xBkma4rqrqx3N/\n5sDu\r\n=WBG7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":">=10.0.0"},"gitHead":"e1fcb952494d5ed705b68a7d4ddbfcf9d15d84ec","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"6.13.4","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"12.16.0","dependencies":{"glob":"7.1.6","lodash":"4.17.15","mkdirp":"1.0.4","moment":"2.25.1","commenting":"1.1.0","magic-string":"0.25.7","spdx-satisfies":"5.0.0","spdx-expression-validate":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"6.8.0","rimraf":"3.0.2","rollup":"2.10.2","fs-extra":"9.0.0","gulp-git":"2.10.1","prettier":"2.0.5","fancy-log":"1.3.3","gulp-bump":"3.1.3","@babel/core":"7.9.6","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.5.0","@babel/register":"7.9.0","@babel/preset-env":"7.9.6","@rollup/plugin-babel":"5.0.0","eslint-config-google":"0.14.0","rollup-plugin-prettier":"2.0.0","@rollup/plugin-commonjs":"11.1.0","rollup-plugin-strip-banner":"2.0.0","@rollup/plugin-node-resolve":"7.1.3","gulp-conventional-changelog":"2.0.32","babel-plugin-add-module-exports":"1.0.2"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_2.0.1_1589572329924_0.331911646614242","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"rollup-plugin-license","version":"1.1.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@1.1.0","maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"93b9c532706f96eae8a148a5742cc551ddcc0a8d","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-1.1.0.tgz","fileCount":5,"integrity":"sha512-s4jiYD0N0JyPC8w/qp4veZPIsV13OoiHUkC1/+hJtaX3Jqgv3nh/5vIGjy9y+GRHddPAr0OMJvGqfHjLb9PkiA==","signatures":[{"sig":"MEQCIAiVCB7PwZdJUlyMHvLRNWGm+Bns4RQAlY/NK8ZDEC7PAiB3KIa+dsaKsy2CBET8YVRA3sWVHf27gWKtKQjHES9+aA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":138760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJex+OQCRA9TVsSAnZWagAARoUP/3f4nepONK7bqla5k7Nx\nWCoxKUfZ9ttRUT2ZEPpShQpAoxvSilx74Qi4lf43O0h2pOn5Tw18fzEK2zkb\nR+lpEz62T539a5N+CyEXSkT/S2jtskouXkfze5sNWOtpwzAJRh7c5qjXj/RC\nMFk2MJtDU6wGhOcQ7zNZhsjeSMJctursQ7yWZAnJ258Y00vhspcCLrrf+TXu\n+3rbn2VEU+287Je69X8sGJiarE/Rmh1vwydjLZ4ZBDXco33e0hNM6BDKzL/0\nZZ8uyQaN2R0SV1VX9iB2aiW39yZeU8mvNGB/wfU5waK1/iTbme1RjdoJgy9F\nfQPaX1U9I1BqW++SbwMuvau27sbvZRMmqcH2AdcUnWXAXOoMkZUbOHZgV2k5\nLT/zajb/hYk+wKp4zwEGrzotQKpAXpasahWJ7+dxQZynGZjLJ0nAfvCdW6zS\ntfD9cYgy3U5MW4Dh4er37qbhQvh1apl+Ociho9RFHCkJJpwUIvV7ZBUkWFJS\nWKoklYg6IRker16axj/Hw6P4L0uM/z74r/M4998osAbJCmvqNRAz7B3TO1T3\nf668WywhDjWtKFKxGThHdAgIVrt1QnNUKWuYeBSHX9bScqb5hXGeKDViHCAt\nGqZeLdtryVhPKU4dBE8jBFOZkPS8R5obcaZpsLDKKKPHdqGzC+71iF01qAcU\nwyX2\r\n=rKdy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":">=6.0.0"},"gitHead":"7aae619ceb14805d4f958d4306048b71ffc402ea","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"6.13.4","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"12.16.0","dependencies":{"glob":"7.1.6","lodash":"4.17.15","mkdirp":"0.5.1","moment":"2.24.0","commenting":"1.1.0","magic-string":"0.25.7","spdx-satisfies":"5.0.0","package-name-regex":"1.0.8","spdx-expression-validate":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.1.0","gulp":"4.0.2","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.32.1","fs-extra":"9.0.0","gulp-git":"2.10.1","fancy-log":"1.3.3","gulp-bump":"3.1.3","@babel/core":"7.9.0","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.5.0","@babel/register":"7.9.0","@babel/preset-env":"7.9.0","rollup-plugin-babel":"4.4.0","eslint-config-google":"0.14.0","rollup-plugin-commonjs":"10.1.0","rollup-plugin-prettier":"0.6.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-strip-banner":"1.2.0","gulp-conventional-changelog":"2.0.29","babel-plugin-add-module-exports":"^1.0.2"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_1.1.0_1590158223760_0.4394286005608239","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"rollup-plugin-license","version":"2.1.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@2.1.0","maintainers":[{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"f372f2ec4defbab34ccaca51a76c2c836a2e860d","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-2.1.0.tgz","fileCount":5,"integrity":"sha512-HvwwqCbG+//hAwGxOce+XadsEooq79SqDu3z2GTwU2y1rFQ/uqT5JbCzcmauFII+nKZ0/N2BzG76ZuP7OdfU7A==","signatures":[{"sig":"MEUCIELjvTGrma2ZL4/JjSZzSvHope+KxuuHc7RTIZKsvCORAiEA4Pf1IkAFO/oqVVBplbPgDlAe/9et2qumO/qaxr124RQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140698,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJex+TUCRA9TVsSAnZWagAApaYQAJuVn6OoSLjsoTRPHwek\nuw0G605K5YKuMRniRauu8DHhNi0+HcdiVWidlQyC3/4+l4D6bXehM34ueAHn\nXKfYAR3vTXVc4nZ+yv0RA9Bb2XEp4AXGD7zW7zAcxAtQgAbbUmSTJ13YzlFv\n5OrAmJHtzfda3lmqKSD7m2Zs4GP8lh73CwFs1c0EgELmyZEDclYkc3W3TtOx\nxI/VkCOLA+XY11avQkrax4XIH/0Kpy2sjTScMgVGPZ6jXn2OeJ8dsXhFoc6J\nDA4wD+hMXorDh7saIIFNo7hRCd0PF2GYt5+/at5dxOldNtCx8x6Mj9Ws5HMI\nx6lcj2hBmdA2dFLe/Tss2PDoXhbzyaAmRseYe6sKG2Gt66NVnDgNWI5jJa5+\n/sNLaCJWiDMFhNcRRNLsOhrJqt9opdwcGy0vZUjI1zXusevf+bAMbX8gFdmT\nfjB0jFtjtq9ql1x5CAaty/Rn1qmr/Jss3nkyHOVX5vH60aBLWwSz/L/UpEgQ\nLMQ/2zcgZox75QMYRK+9w0vycBjOUCD9CaJd/Ej51F7BHGsjjsfezTbsa+k1\n/fwpSTvy3JIOe0vreDTKxjmp5RLPL7dsySxBTxj+pNk9PwxkH9VDJEnbggpO\ncWDGGfUs5JHbvKa4HOaCYkjlQjEDzcchk5GnyzAjidKSBlHb2rfOwAubgP/d\nzl8B\r\n=gUYf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":">=10.0.0"},"gitHead":"0b432fcc4ce2bfbfcd3017bd60f0c1e791b01b3a","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mjeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"6.13.4","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"12.16.0","dependencies":{"glob":"7.1.6","lodash":"4.17.15","mkdirp":"1.0.4","moment":"2.25.1","commenting":"1.1.0","magic-string":"0.25.7","spdx-satisfies":"5.0.0","package-name-regex":"1.0.8","spdx-expression-validate":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"6.8.0","rimraf":"3.0.2","rollup":"2.10.7","fs-extra":"9.0.0","gulp-git":"2.10.1","prettier":"2.0.5","fancy-log":"1.3.3","gulp-bump":"3.1.3","@babel/core":"7.9.6","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.5.0","@babel/register":"7.9.0","@babel/preset-env":"7.9.6","@rollup/plugin-babel":"5.0.2","eslint-config-google":"0.14.0","rollup-plugin-prettier":"2.0.0","@rollup/plugin-commonjs":"12.0.0","rollup-plugin-strip-banner":"2.0.0","@rollup/plugin-node-resolve":"8.0.0","gulp-conventional-changelog":"2.0.32","babel-plugin-add-module-exports":"1.0.2"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_2.1.0_1590158548173_0.14918884694119017","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"rollup-plugin-license","version":"2.2.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@2.2.0","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"0d19139bbe44dda500fbf15530af07c91949e348","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-2.2.0.tgz","fileCount":5,"integrity":"sha512-xXb1vviEwlJMX+VGUSsglcMA/Rh9d2QzEm94awy4FlnsPqGrXoTYYGOR3UXR6gYIxiJFkr7qmkKF/NXfre/y8g==","signatures":[{"sig":"MEUCIBG3fu5NY7Y9RVo6/NiU3Kc6W4s/ibcEazAnwZjpFBPwAiEAwfaH1bXKe/0oKX2kDs0/iqCeNXhEJXhHyVaE/PKmYY4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140701,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfLUj6CRA9TVsSAnZWagAAqr4P/j49i5OYPqGJIUBWb0aL\n+I6oyckORaHcyb6+r81S9Z1hLdYWRooc3htJJe1UClWqPzjw2X3mDA5bASC3\nZXmzpLqOuK5jxMKdWM2Mdw/CGvfN0H5cnVNVccXtuohNEVSpyBkTT51xKktq\nXzntQPBTedvYbvyFwPtzj6kZBVvqYtVCIYOhEDAgNw7/CiryYSmNFyjeDOGc\n3Ul377kezYtjIoQf4iyCToCbfa3LrKccWiILyRYux9ETblOIyh2YgSgOJJ6b\niYV+yuUBbKWqFJKmDC3NWp/HtQM7vzMJILp7Sfm1aCR+dYAOw4pn5IwlIXds\nw0XY6q1LjyCqiLA/XKRS/3hxdIvrE7y0JLtq59MIW5w54qC8CSZzc6a6bmfW\nPOtxiDmQyNfr17Cg4qO/o4xWt+QBphblVPKGvhumXnwLOGX2UxBn8f90bF3/\nW33BFRv7u5JxsCF74TW91FQiqRhLeGVE1n3kjBSzeQu/Hwjn18RtqpOAIZ68\nx5kABOKkfUWWAAFsdILrWrrVwu+CywCn9oi7GSBwO5siXJ8HpVs5Zzo4h4Aj\neET2EBYvsoMFpZ9UjB/aEIAp05l1ulMOTwybLXMSG450HUMKOydE7X9DKwev\nREzqddfLXEs89F+5I6oscGW9gkE77mOqegvDqkyNT8vSk/ZoexjjUV+9KFLl\ngAnv\r\n=WZXx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":">=10.0.0"},"gitHead":"f246cdf57ed5443f0d72b52086542528b37855f1","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"6.13.4","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"12.14.1","dependencies":{"glob":"7.1.6","lodash":"4.17.19","mkdirp":"1.0.4","moment":"2.27.0","commenting":"1.1.0","magic-string":"0.25.7","spdx-satisfies":"5.0.0","package-name-regex":"1.0.8","spdx-expression-validate":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"7.6.0","rimraf":"3.0.2","rollup":"2.23.0","fs-extra":"9.0.1","gulp-git":"2.10.1","prettier":"2.0.5","fancy-log":"1.3.3","gulp-bump":"3.2.0","@babel/core":"7.11.1","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.6.0","@babel/register":"7.10.5","@babel/preset-env":"7.11.0","@rollup/plugin-babel":"5.1.0","eslint-config-google":"0.14.0","rollup-plugin-prettier":"2.1.0","@rollup/plugin-commonjs":"14.0.0","rollup-plugin-strip-banner":"2.0.0","@rollup/plugin-node-resolve":"8.4.0","gulp-conventional-changelog":"2.0.32","babel-plugin-add-module-exports":"1.0.2"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_2.2.0_1596803321773_0.49836265209794695","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"rollup-plugin-license","version":"2.3.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@2.3.0","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"fc8711c5e0f5850bda2908751c718f45b0315bee","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-2.3.0.tgz","fileCount":5,"integrity":"sha512-oi8pL59fVTwXCkLUsZ8dVGVJjO7Hcc5UT0chJvKd0MktPgeYHSadkaicAYUemdYHHpjb0D3DyvedZAEPt+2r8w==","signatures":[{"sig":"MEQCIG+yQzl3KTtGRDBSyciTIpnyDs5qY42YTT8P5MiyP2DkAiBNvsibyjBHh/VVRtEK8KiCL70BtqTlgISapi6QwVMF/g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":143463,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgQfeXCRA9TVsSAnZWagAA80IP/itRWGb+aXeaDzNmGBV0\n3KbZP7VkyoW5IsokimeaRqYpDru7AfSTuoXkcZ5P/iWogJ+wEB/iu4fwvTxY\neu/24HxetPIF2/I3AGL8ueI4/ozf3TD2nNDBuGdFFWNQ34879q6FfL32c9/Z\nB7kQ0vajBAlOrx3eXEwCXNwkahnTdJQTeYZHpDxBWJbyJRjBhstcbYa+JjS/\nWHnvc6uUfZwBRHUkoLFQJY7r2m+Ki41i6RY0P9EtzRpa+qqne9FfSZWhviVA\nreTnUZ9F9Yw6PItLoQZKdCWTV6cRkQbpxYVPOTmrr9VDKsQaYLD1XmfrN5UE\nRmDO8FPGXfzj08AqQuOW4F3XlCU6AkZhkDN9v0Rp6KOHDTBK0t9FiOP/JG4U\n3JHGzC0RSh3yPTDll5Oq6G2CjEXS7lXtj0JCoty/rFF50YfSunqdTNf6YPpl\nP/11NZzM113Oeydl4vDo7MJcVneXDZO1ak+3zpnl4NnyBB1EFySSb5Npr45X\nm+L98ZpT+xrdtsrLAyF8eiM45x2LZrMU0ipGFcYAdFj8305wU6Lb1f1hG9vU\nxt2nFk94viijQ6cMJ1vE6+FxbSZbWkPMhOtcmkzFoPLGIRXeBj/6kNI25udb\njBCv55VTRZVEE41gZqHQZvML9CzaXJoWPFjCbHdSrV0MjTKjUxKIL7uK7WIq\ny2cz\r\n=vajV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","engines":{"node":">=10.0.0"},"gitHead":"dd4d325a4b4c9a963281c1b7187e0e14ced8f9cd","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"6.14.8","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"12.14.1","dependencies":{"glob":"7.1.6","lodash":"4.17.21","mkdirp":"1.0.4","moment":"2.29.1","commenting":"1.1.0","magic-string":"0.25.7","spdx-satisfies":"5.0.0","package-name-regex":"1.0.9","spdx-expression-validate":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"7.21.0","rimraf":"3.0.2","rollup":"2.40.0","fs-extra":"9.1.0","gulp-git":"2.10.1","prettier":"2.2.1","fancy-log":"1.3.3","gulp-bump":"3.2.0","@babel/core":"7.13.8","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.6.0","@babel/register":"7.13.8","@babel/preset-env":"7.13.9","@rollup/plugin-babel":"5.3.0","eslint-config-google":"0.14.0","rollup-plugin-prettier":"2.1.0","@rollup/plugin-commonjs":"17.1.0","rollup-plugin-strip-banner":"2.0.0","@rollup/plugin-node-resolve":"11.2.0","gulp-conventional-changelog":"2.0.35","babel-plugin-add-module-exports":"1.0.4"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_2.3.0_1614935958546_0.8836275493453785","host":"s3://npm-registry-packages"}},"2.4.0":{"name":"rollup-plugin-license","version":"2.4.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@2.4.0","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"3bafb432b28d6b5b05f9a801f28eb7cb0d81e914","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-2.4.0.tgz","fileCount":6,"integrity":"sha512-hZ+usKNrAthT9bHBpSPQHs9wSI2zISso96t/ypdOpkCftpydZ6Yf5pkPD50vw1aFH+TSV0N+v+/nqGYiTAsL4Q==","signatures":[{"sig":"MEQCICHlXK5Rq+GsYUegfaFwdWMCfpia59uBkKOAkmUi43G9AiAdUDjcJKkeX7UMEUg+lLJlv/ONgk0VJpITs0uTsi6z+g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":151095,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgtWz+CRA9TVsSAnZWagAAM/IQAJ42dk2wT14hPB8Hqf4C\noloAW4xOCyILY7XvQB+BvLz/Kk1wlpcNMnTq6q/A9bmReDTWMsPrTSW+JUT5\n7/qWRKXRS/7l5oQ41R4Jjozpv0AUSmY45lD8MGW9VaD/jUN+vh6OFi9ydelM\n4c6WXgeTNMUCtTnjr/PWcAO23dfH4LkTrCYPLfhIlToOQ86BiGn2jC7uK4K9\n1vnHabuhVQTlR/WSVY+A/xgChAHopZPouFIYmQm7icUn9a7EMMHjUcR/jrP9\nZmTE02BDmBY7wgJOfUQkiKjDMV9ujQCutaVUzBIYhFjad2Igmw3ai8djSvyw\nVsHANsh5R3dHOkn/D7+FWas0xLWKPlSJjRiPWDY3KoOdPTbF8uNPORY5LYR+\n8jdEFYRWSTa0efudr2vep8xy7w7CzC6RNioL21VxiAv99EY1eQ/QO0slSOn0\nQOaVLT42icxjfdf9I36rQX4Pq/x5KMvYYKO6NzVr8LnkLwLvsx+gAEsO0si2\nU0PfwsBDJu767tvU2HcTC+yXRdqUbyaHi/B8BHg+UQg4+J6hMb/xnaGwudwC\n+ybbqhfFZ2sD1glht6sCOeRx+RZyHodeL9PxGy6Xzs/G6tV+G4VKp03nyvIe\nS4GlMv2hDDpQJMBl3f8+KlC2X5ydwVzpzF+1ZaI621xBQHfuHDWoiS57pwmF\nRUhX\r\n=hd3t\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=10.0.0"},"gitHead":"51dc643f4227716c27456bf5c23be37e72d4137a","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"6.14.12","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"14.16.1","dependencies":{"glob":"7.1.7","lodash":"4.17.21","mkdirp":"1.0.4","moment":"2.29.1","commenting":"1.1.0","magic-string":"0.25.7","spdx-satisfies":"5.0.1","package-name-regex":"2.0.1","spdx-expression-validate":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"7.27.0","rimraf":"3.0.2","rollup":"2.50.5","fs-extra":"10.0.0","gulp-git":"2.10.1","prettier":"2.3.0","fancy-log":"1.3.3","gulp-bump":"3.2.0","globalthis":"1.0.2","typescript":"4.3.2","@babel/core":"7.14.3","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.7.1","@babel/register":"7.13.16","@babel/preset-env":"7.14.4","@rollup/plugin-babel":"5.3.0","eslint-config-google":"0.14.0","rollup-plugin-prettier":"2.1.0","@rollup/plugin-commonjs":"19.0.0","@typescript-eslint/parser":"4.26.0","rollup-plugin-strip-banner":"2.0.0","@rollup/plugin-node-resolve":"13.0.0","gulp-conventional-changelog":"2.0.35","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"4.26.0"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_2.4.0_1622502654007_0.11592517439595817","host":"s3://npm-registry-packages"}},"2.5.0":{"name":"rollup-plugin-license","version":"2.5.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@2.5.0","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"9c0ba9b3562564c555b48142c420af80a9909f32","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-2.5.0.tgz","fileCount":6,"integrity":"sha512-HUjGV+i1tRxi/zL4WpeNCLJZfEJBbCcDmwGJCjKBvcLDIK6VNW1JmYKjSJJOqJjNqRIvKt6/BLSQB9RwNDLtQw==","signatures":[{"sig":"MEUCID4PThIiHhBCKfhNeGFsBrJfsau9ah085RvGHqDThHR+AiEAuQ4hs8WTIYi9fN5bzyfSq55P50SddSkeq7HhEaTeo3I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":196722,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgvMn9CRA9TVsSAnZWagAARmIP/A8ACtuWaBgiR7xIe4eA\nVWiwfgAcmGmAlOv7qFUX0wM3gC1s2HiTxfnFZXDCkzop37P3rYlhYthpz7hN\nX5Mg1rT6gOihLLMZz0c1HSXEZB2YN+jY7iaOTGWueN/mkEh63T7OzghE9Wtd\nKpI5bio4SdNkshL/UuphNLZjj5QAdSCArigmtgVCgykxJCwoWVG908Bkvsjs\nijPahAPPrVWqLGpiAkGH8H8FNnGLeLhRu4XjN3uwVvCnJ4J/IhAs+mN+2ngF\nnkZqqMPBIfSzx64OxXNA4zfhsUwUJfQCEqauGfof8hMxtqtTGmHfGKKOavkI\n/J+u2couFwWEhHUN4pMpysVsnRZE8SWxpBwGBWtIO+1Osp59hpgFxf8EQpWm\ngqstytEP803UWkulcOzvUPTIVZKzyU5WghawLB7WiCITY9JTSiVHTBU5USsI\nN/nDY2HAXFpvK8EU28ulrj/XZzVAtttOQYB7HofGp5Zf/w5RGXREORfmrj5k\n0jUhQdOZoX2LUVfKM3k2LmMgCZTBN1ZoswhHpY3MUnAVsesyMheqUYTadgUj\nlySgzmoPaZDOMhgxsZYtXs9atQpLnMfOdHm441JPLX44gY0gN0euKwnMwds+\nJm+fqy04rO7hmzkDs+koUJYSANolzEkP+6b7aZfm3z739+MQCjTj0mC15Ek3\nO1V/\r\n=rc9C\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=10.0.0"},"gitHead":"542ae577af2eb3927d2557b706ce7d0cb08fb6b5","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"6.14.12","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"14.16.1","dependencies":{"glob":"7.1.7","lodash":"4.17.21","mkdirp":"1.0.4","moment":"2.29.1","commenting":"1.1.0","magic-string":"0.25.7","spdx-satisfies":"5.0.1","package-name-regex":"2.0.1","spdx-expression-validate":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"7.27.0","rimraf":"3.0.2","rollup":"2.50.5","fs-extra":"10.0.0","gulp-git":"2.10.1","prettier":"2.3.0","fancy-log":"1.3.3","gulp-bump":"3.2.0","globalthis":"1.0.2","typescript":"4.3.2","@babel/core":"7.14.3","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.7.1","@babel/register":"7.13.16","@babel/preset-env":"7.14.4","@rollup/plugin-babel":"5.3.0","eslint-config-google":"0.14.0","rollup-plugin-prettier":"2.1.0","@rollup/plugin-commonjs":"19.0.0","@typescript-eslint/parser":"4.26.0","rollup-plugin-strip-banner":"2.0.0","@rollup/plugin-node-resolve":"13.0.0","gulp-conventional-changelog":"2.0.35","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"4.26.0"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_2.5.0_1622985212934_0.4854178944630694","host":"s3://npm-registry-packages"}},"2.6.0":{"name":"rollup-plugin-license","version":"2.6.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@2.6.0","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"363a15bf2f86753942cb4936bbd65234696956f0","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-2.6.0.tgz","fileCount":6,"integrity":"sha512-ilM+sb9xCvP+23tmzsCqJSm33877nIFeO6lMDGbckxc1jq2nW6WtU1nFD4cfOrKYl0cw1dkz4rC3VMAe8dA8cQ==","signatures":[{"sig":"MEUCIFqbO5c1kHBcgEKiN8UWYjofibuOysXzARMCniSDKSY4AiEAtzgcwhLZvU2vEjafF2PIk9ZISndM2QgrdiOCyaD+Y4I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":197651},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=10.0.0"},"gitHead":"dfea311914426d736e2bb0587e04d369c8636d04","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"6.14.12","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"14.16.1","dependencies":{"glob":"7.2.0","lodash":"4.17.21","mkdirp":"1.0.4","moment":"2.29.1","commenting":"1.1.0","magic-string":"0.25.7","spdx-satisfies":"5.0.1","package-name-regex":"2.0.4","spdx-expression-validate":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"7.32.0","rimraf":"3.0.2","rollup":"2.58.0","fs-extra":"10.0.0","gulp-git":"2.10.1","prettier":"2.4.1","fancy-log":"1.3.3","gulp-bump":"3.2.0","globalthis":"1.0.2","typescript":"4.4.3","@babel/core":"7.15.5","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.9.0","@babel/register":"7.15.3","@babel/preset-env":"7.15.6","@rollup/plugin-babel":"5.3.0","eslint-config-google":"0.14.0","rollup-plugin-prettier":"2.2.0","@rollup/plugin-commonjs":"21.0.0","@typescript-eslint/parser":"4.33.0","rollup-plugin-strip-banner":"2.0.0","@rollup/plugin-node-resolve":"13.0.5","gulp-conventional-changelog":"2.0.35","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"4.33.0"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_2.6.0_1633558802136_0.23705983452854062","host":"s3://npm-registry-packages"}},"2.6.1":{"name":"rollup-plugin-license","version":"2.6.1","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@2.6.1","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"20f15cc37950f362f8eefdc6e3a2e659d0cad9eb","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-2.6.1.tgz","fileCount":6,"integrity":"sha512-JPtlXF0tZKyHztKJsyd3HHmQFSkXei+596Xrb/a/bHIdDhvFuNSKimCKkQpoXyspfeVQk7CNay1MyGpFHAXjvg==","signatures":[{"sig":"MEYCIQDVi8TKxZW20vGoN8tSS3ciXcFe29aF0NvwzNpELIIDYAIhAJQU1pme0e1ZQHr5clZS7yaMjogRx9X0regfGFcfEDNM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":217451,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhzdZFCRA9TVsSAnZWagAAeIYP/3B6jZm3B+r9aJuzovIK\nzZjMovDnfopLlqPLhol2VAcMzQ4NrD7R+dTXz8OGL07CqO6IC0AqVKkcx7ge\niDQ9fJoqChsD4Rh0IRkCqn3p6Fht8DC2wY8b6Qpw1GeQfKORgWwRfnYw2jDR\neEXydElwp5CnqTTCTgmqxCD3pwqwVDDpAXNekbDyW7U2ubCGwUyj7eK7J0qO\n9QUIKhg78oe2n9ooCYEWyAWUT9U0CZf43MoN5BU4KjOLd354JCL9Bmk1qMG+\nDColaoLdCsHSXwWli6UwXlE+YOXrRAxqFbrTxH4X0441yxylJ6HwMN1Q5ALh\nWMhUT6gLOIDRODGXUqNzoj3Tvxi5rARwMl2T6ZruaFZQ0+B0Kr9zz5P1241v\nlNkWt0qzEERxWusjSGyYhpDF8BwCy+wyetjXArupwl51fmuPMbbfDCTqMHcH\n2C96OSAfJuUXYP3noAr3bdIS5HZTz49ZmJ1ZnmYHqpm0EUyNX3tJ+TsEQhoI\n646ge6b21MXVc4kSqaN0kl+Zh/7raLfsK4ifgwjNgW2yqymVSD02K+OUNAT2\nca6e+kudzt2QWfiYWEd80mR7dJIjp6nXAtKPe16Y2iVxLz5Y7Pr4TgB4cYfm\n3WjJCzyLVnPtAYGLQW08D2Nq/NkXBA9IyGa2sL7CKBjIAmRknc81CKHj6muS\nbGTQ\r\n=YbwA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=10.0.0"},"gitHead":"261a9372f9b5639077f6517e2c4de2bb5f67511e","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"8.1.2","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"16.13.1","dependencies":{"glob":"7.2.0","lodash":"4.17.21","mkdirp":"1.0.4","moment":"2.29.1","commenting":"1.1.0","magic-string":"0.25.7","spdx-satisfies":"5.0.1","package-name-regex":"2.0.5","spdx-expression-validate":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"8.5.0","rimraf":"3.0.2","rollup":"2.62.0","fs-extra":"10.0.0","gulp-git":"2.10.1","prettier":"2.5.1","fancy-log":"1.3.3","gulp-bump":"3.2.0","globalthis":"1.0.2","typescript":"4.5.4","@babel/core":"7.16.5","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.16.5","@babel/preset-env":"7.16.5","@rollup/plugin-babel":"5.3.0","eslint-config-google":"0.14.0","rollup-plugin-prettier":"2.2.0","@rollup/plugin-commonjs":"21.0.1","@typescript-eslint/parser":"5.8.1","rollup-plugin-strip-banner":"2.0.0","@rollup/plugin-node-resolve":"13.1.1","gulp-conventional-changelog":"2.0.35","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"5.8.1"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_2.6.1_1640879685169_0.8259228655393773","host":"s3://npm-registry-packages"}},"2.7.0":{"name":"rollup-plugin-license","version":"2.7.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@2.7.0","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"89551c371d50441612b9202f172b9935b4b1f7c8","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-2.7.0.tgz","fileCount":6,"integrity":"sha512-0H1Fbuf85rvpadpmAaairdahzQHY0zHtcXkOFV5EStjX9aMCO2Hz5AQp/zZe+K/PB3o6As7R9uzcb8Pw1K94dg==","signatures":[{"sig":"MEQCIFOpbTmYrAX0P7EwrNTHW5oF08rMCV4gg7pVUSr/k2daAiBuCQ5bl0YIj1M4Yqg/RYEZsiTKk/FyLhfHzv3eR/BBcg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":217480,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiVdNaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqS6w/8C8G3k4zImmczKszzsh9HaPV6B3VNh3XKIIz/ukfFBa8U7spp\r\nmcqTsGZ8JoQmnR0vqkoFJ7YDDrMmeEQEXzfSeGzWjc8wmn1Qno2q0omKyOZU\r\nRqcQ/0/+3U8peJs6MRiVy7RoHA3F6HpcDpFoPF7LtDVET+0sgbBknN4TiYv1\r\no/FNmk9IGUi5ornV+2Nn154W2AMjWI8ohHvgG+4Rbew+Awn7QYdzQUkXiptn\r\nzcOOJZHlf7QxSQ7vbDoUbu4ojO2eNP5/OvEhDD/ECnhU4m1a/2N8ciPuU+YJ\r\nIeJySBjly4DR17AkAUQwYRZt9U5DDZMWFvOj/q/B6grV8cOAGtaDo4G11gY8\r\nyFpsON0XPemd0MlV2pCyoBkDQ+USKmTpWABxnX4fqihJIx2QJPgUggKSVnS9\r\nhVb+kcnuDwYLkq2DltTMTiiQuxTZ8WL/PvX9y3t35O3/xAilmPfCfA3IAOTm\r\nIbNfyhuKHy+/pHhrBAQtf4bwyfLLGrgThshCdgZs/3Qq82fe3kJeMqNDAU8F\r\nKTVHa4Kdsnr0jnaZLHiDU4jDWm6odHN9TWYZqw+X3YFEqXkiDsAkHlKI+puy\r\nagsRIdL2z2UydSInnJrgbB4BtixT4HMxrRhQrVB6n8pe+bztyphT7eF1qQeI\r\nuCNuyBCB7Pgr/XAqqbXRPgx7Otgd256o6yg=\r\n=kdjl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=10.0.0"},"gitHead":"624000ca40ed2b34b17d29564d986ab9e8bef3bc","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"8.1.2","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"16.13.2","dependencies":{"glob":"7.2.0","lodash":"4.17.21","mkdirp":"1.0.4","moment":"2.29.2","commenting":"1.1.0","magic-string":"0.26.1","spdx-satisfies":"5.0.1","package-name-regex":"2.0.6","spdx-expression-validate":"2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"8.13.0","rimraf":"3.0.2","rollup":"2.70.1","jasmine":"3.10.0","fs-extra":"10.0.1","gulp-git":"2.10.1","prettier":"2.6.2","fancy-log":"2.0.0","gulp-bump":"3.2.0","globalthis":"1.0.2","typescript":"4.6.3","@babel/core":"7.17.9","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.17.7","@babel/preset-env":"7.16.11","@rollup/plugin-babel":"5.3.1","eslint-config-google":"0.14.0","rollup-plugin-prettier":"2.2.2","@rollup/plugin-commonjs":"21.0.3","@typescript-eslint/parser":"5.19.0","rollup-plugin-strip-banner":"2.0.0","@rollup/plugin-node-resolve":"13.2.0","gulp-conventional-changelog":"2.0.35","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"5.19.0"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_2.7.0_1649791834458_0.2213815018837879","host":"s3://npm-registry-packages"}},"2.8.0":{"name":"rollup-plugin-license","version":"2.8.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@2.8.0","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"ac5acb991f0fd55f978e9b1823b558c97bda12dc","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-2.8.0.tgz","fileCount":6,"integrity":"sha512-P+CM6tlgahnpnOFKeirABCcs3Eez4AQsm2fC7rvVR3aMIWd/KgSNAImmcfGS+Pmd0dGFmjE1tYgflnTINxNpIQ==","signatures":[{"sig":"MEYCIQDooGtfpWu0rxXglOEpv8UWsI6yoSSfSVgqsHhiSwIJsQIhAO3Udq3vGlHJQZI2VsHNuwvBKRAUJJORnwCRy3wGSG/o","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":217497,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJikhJ7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmos+BAAoNEAJFYCCB1veQ+OVwp2a/yFeyxPbSOPPWX4HPh/ZlVC6QmR\r\nN5ZaBJxCciRpe5GHkQZcJEbgcpul0EuseFIBOm/rVKxMn8VJ/bYz+UTagWAw\r\nQ1C8DvsNSS/pZqKdoAikyKXsTuOyJqXoipzrtlCdwdeFrVmkSuJcZfZrXxq+\r\nmqOMOfUIeiHGkUcea9+2TIUbMEwI6PnbJJoGtSQjf7OK7/cIQkDPeyDlq6jI\r\nQLbgAaFSHaCoq30Z7pkkelUsHjjeSpYJs2VrL/lrTbis3a5Wb4csV+h4Rigg\r\nUmN6MEHJI2nU/KPQciM4elOI6uprE4FLVzWAt6yvibAhr+RclrLxFDnzt8O9\r\nQkFhB/TdBA3lIdivGTgLntWwFyf5nehfCCZmsX0DiOL8EbSF7pu9ItTUoYs4\r\nwkUDeh+SbxHWl7kaKi1rnNmN2irsn1B5P6ImEDWE0wn8mlchPXmQ3LYrbjZV\r\n2d1504D3qa5X6aWq2ibSIqqnp9INwSxmFs1MrYX3A8VIxqlbi4hv1VHZt3j0\r\n23DJMTr4iMUrcfuEUMse0TsktaXoGtMfTatj5V5rHk7yg4xY4OYJDil8NcVi\r\nOB+aXqZKYb0D8OdvRv5azwDQZKTuvvL6mM+SIJMaYV4cU+EZV7K9sRu5g9BK\r\nQ5wLubO+39/W0QrvZrcAHCQhLpEF/zxDe5M=\r\n=4ye1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=10.0.0"},"gitHead":"f20177d3490a2240479c09b9391e0be8ea2a75d4","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"8.1.2","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"16.13.2","dependencies":{"glob":"~7.2.0","lodash":"~4.17.21","mkdirp":"~1.0.4","moment":"~2.29.3","commenting":"~1.1.0","magic-string":"~0.26.2","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"8.16.0","rimraf":"3.0.2","rollup":"2.75.0","jasmine":"3.10.0","fs-extra":"10.1.0","gulp-git":"2.10.1","prettier":"2.6.2","fancy-log":"2.0.0","gulp-bump":"3.2.0","globalthis":"1.0.3","typescript":"4.7.2","@babel/core":"7.18.2","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.17.7","@babel/preset-env":"7.18.2","@rollup/plugin-babel":"5.3.1","eslint-config-google":"0.14.0","rollup-plugin-prettier":"2.2.2","@rollup/plugin-commonjs":"22.0.0","@typescript-eslint/parser":"5.26.0","rollup-plugin-strip-banner":"2.0.0","@rollup/plugin-node-resolve":"13.3.0","gulp-conventional-changelog":"2.0.35","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"5.26.0"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_2.8.0_1653740155294_0.07858330790779378","host":"s3://npm-registry-packages"}},"2.8.1":{"name":"rollup-plugin-license","version":"2.8.1","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@2.8.1","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"3709ef8b59675e0162a27ea7bba10ee523f8289e","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-2.8.1.tgz","fileCount":6,"integrity":"sha512-VYd9pzaNL7NN6xQp93XiiCV2UoduXgSmTcz6rl9bHPdiifT6yH3Zw/omEr73Rq8TIyN4nqJACBbKIT/2eE66wg==","signatures":[{"sig":"MEYCIQDuTEpKZKUFskM8QTjW0eVUC2P1edrDc5smc++NiAiioAIhALZy2Sae8wb210YoDhD0CkBzuW2QbWiVG2sqq0KG+GfA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":258310,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiplJyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpkCw//YV6Ffug9iNE418HKlvYq52kq94+Euo7DS5U3RRrfBDd1FOkV\r\nRqaEWEj31hkEaQmpJdWH3P3b5/YepKv9CfxnsTGdSPLCTlFH/u32mQFJKlP6\r\nnw+vr/qDUGaJVpqpEt3BuxdahdNvQE3JwRKRfAgqngsN9JoXC2QqA1VYclyA\r\nna5WQ+dELPTUPI8pGReS079dLQnpFPRvGWazruuLSO70cHf3jBhdEgAqWKT5\r\nT4/bjScm02KSx/ogws/37qvWWax8BRyEbBORckDNtMF5jrEd+5KCv9d4bzyc\r\np1VToY0RUkwoku7sInGmZZoBMNEmKcOU+WOxcEJMPlME4tmQsnEaKcq6IIxN\r\nd3hsmgJFL7pxyiOAu+BRVXMjbaFFTYAm3aq/SUI1CicH8yYS19ynRU1+y/aA\r\n/eeT6iEXYZsFX0bK51euHKT/x7lSHPbJyua6MNyUBgXF37EzLa9sGdElvPzt\r\np0z4ZYE/K0YXu1dJkg5YM+7Clf+vBTTd6wa2GwpFF5YX74V+TYsht9V8/2hw\r\nTxMnlbKqIDxQgtcO3ZC8yUlbgCq4vEh1P08hPwNo9anro005jRGXDokhRxSG\r\nOu7wTlFkckUACDzY9Cs2dwXBMpmeh9ehgKmRvhJjUctBXruOrIvjGjznGu+1\r\nOrTUBRY9/bwch0Cs/QPfFMKrYYDkVzR+qn8=\r\n=sd1n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=10.0.0"},"gitHead":"53c51ce5d9afcccc1eb684f01c5db9730f5b9798","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"8.1.2","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"16.13.2","dependencies":{"glob":"~7.2.0","lodash":"~4.17.21","mkdirp":"~1.0.4","moment":"~2.29.3","commenting":"~1.1.0","magic-string":"~0.26.2","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"8.17.0","rimraf":"3.0.2","rollup":"2.75.6","jasmine":"3.10.0","fs-extra":"10.1.0","gulp-git":"2.10.1","prettier":"2.6.2","fancy-log":"2.0.0","gulp-bump":"3.2.0","globalthis":"1.0.3","typescript":"4.7.3","@babel/core":"7.18.2","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.17.7","@babel/preset-env":"7.18.2","@rollup/plugin-babel":"5.3.1","eslint-config-google":"0.14.0","rollup-plugin-prettier":"2.2.2","@rollup/plugin-commonjs":"22.0.0","@typescript-eslint/parser":"5.27.1","rollup-plugin-strip-banner":"2.0.0","@rollup/plugin-node-resolve":"13.3.0","gulp-conventional-changelog":"2.0.35","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"5.27.1"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_2.8.1_1655067250364_0.2699169542837274","host":"s3://npm-registry-packages"}},"2.8.2":{"name":"rollup-plugin-license","version":"2.8.2","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@2.8.2","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"8f3c66dae9d3b3793a637ee1183e7fa90c7fb627","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-2.8.2.tgz","fileCount":6,"integrity":"sha512-jv268aj71J0Ee6+isjy1mYD2LlwuNg6aUiSdgly0PS0fQ2+vsuc+PLx1ueSk2/QKfjk5OJzcGPEDMHyoIeAFCw==","signatures":[{"sig":"MEYCIQCcBh4bS+j9kqz8xymtyXe5CjrmQd46VgsDEzQUcsD5/AIhAPrTp6sZgOHFEp9JiaygY7zh/CgZ7h28PyTlPb1xiH0e","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":258500,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjS/NCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrE3Q/9FTI58I0WgutFUChDJSgzHujNTPBrl9FKA+0vHyM6wJDeIUEx\r\nP/bcRKy4gNzh2NmN1FU36PkFBny8gdMGLKQUX5vDtAHbWS7g5UQIaqxTy3X5\r\nrYCd9vYWzclxV2aufdAnP6UMjzc0Cnp9Y6zvhC7CrskhQS3AxLQvK81Boa2G\r\nCV6mAXlA8oLqFwnxNZ53ULp1RS2hWnja5pmGj2vfArdfad2chCSI4T7/P+KX\r\n6NUICn+wVIt/2I6ML7UTHLrwfRLAs0VAhoS6R83wN4/dI0eY3X0XyVU57jGD\r\nh2vnCOvP0wUITYWE6qqQGURZH3Wey2AAbdigUOZsPlQPPu0o/pJJl+VovKUz\r\nH+YlsrRJ0+a1WqCCqMcg5lgadB2acWawXWKBWHT2c0/6WIQ8gFcoh4IR5mtj\r\nV29wR8J4eCshPmnY8lkJ867h7HGmfRoD+tW4eTp9tczTo72/d6rJ2hX7+eBn\r\naUniNACG5vOEDpgfC7sCpMhTfX+EA4ymBuBEWW8ap7T4yTI1KxsfaDRMUnFY\r\n/muSVWZma2QRMrGgj/CFfObPM/vm4MPV2uKUhYdjPrxpa1ZIMdjeabtIKe81\r\neMLDWIDIRUypnJC5UcnEB0DOCrAnQLfP0OoYwiyTovjnke2xArZI9ALM/URB\r\noRi9F3oe2ErOmGswpoB/5DT/LuesXZ+mrK4=\r\n=Ifk6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=10.0.0"},"gitHead":"e250fabe4e5a1f2c4daf2797539404c31621e6d3","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"8.1.2","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"16.13.1","dependencies":{"glob":"~7.2.0","lodash":"~4.17.21","mkdirp":"~1.0.4","moment":"~2.29.3","commenting":"~1.1.0","magic-string":"~0.26.2","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"8.25.0","rimraf":"3.0.2","rollup":"2.79.1","jasmine":"3.10.0","fs-extra":"10.1.0","gulp-git":"2.10.1","prettier":"2.7.1","fancy-log":"2.0.0","gulp-bump":"3.2.0","globalthis":"1.0.3","typescript":"4.8.4","@babel/core":"7.19.3","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.18.9","@babel/preset-env":"7.19.4","@rollup/plugin-babel":"6.0.0","eslint-config-google":"0.14.0","rollup-plugin-prettier":"2.2.2","@rollup/plugin-commonjs":"23.0.0","@typescript-eslint/parser":"5.40.0","rollup-plugin-strip-banner":"2.0.0","@rollup/plugin-node-resolve":"15.0.0","gulp-conventional-changelog":"2.0.35","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"5.40.0"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_2.8.2_1665921857997_0.7918623220020904","host":"s3://npm-registry-packages"}},"2.9.0":{"name":"rollup-plugin-license","version":"2.9.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@2.9.0","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"bbf0b579f5f2fd8d839d82e1d9959050ccdeea9c","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-2.9.0.tgz","fileCount":6,"integrity":"sha512-mn3cUmTDtxm8FwYIP39w5R1PuIWqmVPOlvuNVTdfnT1+5R2t9LwBxuQXc5jv7tZQmW0/MM52uwTCZdp131EUtg==","signatures":[{"sig":"MEUCIQDq0dA21nmxgzpQxKnkpwWNUH5pt3KeyHsJppH8U4ugFQIgCez1jMSplm3TuVjguYnx/PgKuHXMVuRXqb945/0R+9c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":258500,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjWaWUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmorUA//ZFhUqXCdBpRZ8rcGjOz77RLuP8L89TffRAjM123DNbkRdI6h\r\ncr1uCRWo9mSh55VQLVRGNW9t5FpZLLCvOVNqZK/pl/DuYVPxpST1pE4DqBz6\r\nhH1g1ScOUlqo1gRvKt9zCwjTDGsmM3hCfk0+nDve6+nRs2S8oAHJY6DRXUwW\r\npy3J5UekAsDiAagJfY8ChDZkVCcZjezQ2e1cx8RDSxvVpgECkiX2i2m+2r/8\r\ncTHpSWVWlBYDPY6riHRjjaOmFVEj4r/H3Zn2bp2GiKt+CBvPMa9FLjV+1nan\r\nB4FQ5YB94bePaSbNTLOWpsdgdFy8R0CRjW6V/NjevYhEe9wXeY2xozfmseS8\r\n1wmLlnL3P3fQ84L3pSlmO63g9yLFjK+supc1pTw1S/lNIKM0yLK3kUpwxw9s\r\nZ5TT+aE6q/a/oqtRS2hsuLoDDzjMU5bxken/G9LY4WZsvhDyLwwQGdL2u3hX\r\noU/W8m95aR78rktHgMah3UKNCRK9IzL2rSe+H7DELCfJvf310zJ/qhi9tnqz\r\ngjKkNwDzjafJwS0R6tWPukVh5VdV+HUjLKqWIEuN/f1Ojc0ye+ns2lQ5dMSS\r\n+OxgMIZqPD4nBLnIGGo1458lDbR5loM0MDNaa1ok9TrnnYCQ5ANEtdWl1PtN\r\nxw4PGtANEUyOgtIPL82MxFc6I1d+wHgo0+c=\r\n=6uTb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=10.0.0"},"gitHead":"bdfd23648cd9e541cbdb68ea0fe40c4157525672","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"8.19.2","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"16.18.0","dependencies":{"glob":"~7.2.0","lodash":"~4.17.21","mkdirp":"~1.0.4","moment":"~2.29.3","commenting":"~1.1.0","magic-string":"~0.26.2","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"8.26.0","rimraf":"3.0.2","rollup":"2.79.1","jasmine":"3.10.0","fs-extra":"10.1.0","gulp-git":"2.10.1","prettier":"2.7.1","fancy-log":"2.0.0","gulp-bump":"3.2.0","globalthis":"1.0.3","typescript":"4.8.4","@babel/core":"7.19.6","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.18.9","@babel/preset-env":"7.19.4","@rollup/plugin-babel":"6.0.2","eslint-config-google":"0.14.0","rollup-plugin-prettier":"2.3.0","@rollup/plugin-commonjs":"23.0.2","@typescript-eslint/parser":"5.41.0","rollup-plugin-strip-banner":"2.1.0","@rollup/plugin-node-resolve":"15.0.1","gulp-conventional-changelog":"2.0.35","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"5.41.0"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_2.9.0_1666819476241_0.7395015948945336","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"rollup-plugin-license","version":"3.0.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@3.0.0","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"ddb0c1e7fd472a2843bf2c2b3a547e590fe0472c","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-3.0.0.tgz","fileCount":6,"integrity":"sha512-L8SV7SUc7VSgUaOhjaOnfAUKbL0DI0ojS0Opb4jOskrlKkU0YOgkUuMDyVc0pe5+L3+X5Ro2fYwmRYOJ/LoowA==","signatures":[{"sig":"MEQCIGBQR0Rb/uxepxaB4ra+j3wzFO59vcfQSN+lBPW2Z//rAiAEjQ6hP2/rSXhmelDyVtEN0v4fOw20VIF5QShC8uevCg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":255347,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjWaWkACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpjNA/+Ne7jYMZV7aE7YnBdAOvqmqJmuJwlLpFTFoRNZsDIQ7b2iQZL\r\nWswrZE3xE09RZyOGaDsKmwDSQCd3xJjxt6o7F9MJjlv3Jqy5KFUeRv50FyKE\r\n5uH87wRNTC4KPnb487J4mEB6F1vJTx0HPlZ8S1djBCLRqbI5A5owaoclyeRf\r\nZQHasIP1Xex44VrSywDNkIqhvGmGgaHp4R7lp7sLEwa7L+YuuPibpfHJ4HD/\r\nph0Q9oS5JNuM0JytxAof7Yx+YsPGsSplhguYsSuh++75Shm2MrFYgfQv3TQB\r\n8NwrEXfwpxaWLXWSCKDqg0UVlER8mRoy66oaAWuFO0rM+CzmEX+cYScKotRn\r\nSguYGv+qT2ui83Ldpg3lMnc7EeLWafyS3ccuWVahXjqAFMpTt6HrLmXzR1Vh\r\na5CHbNDDbjrpQwrySc7H+aLraqw/ssT7vRgLoXZpwMmUR/Fw9aM6rnH7WJXx\r\n76h95130a7BmRrdWdZbyJft0f923mKscDzgHhru/X2tHiCfSjhCOxoDaf9/Z\r\n9PQRNJtv+DCQSL8hgyORjmyEtXa48eofMf08GNYWnYkrPwtXvIOEV1udAJe6\r\n/LEOtsHQzUxi/11DJMczZ/nXP83zffb1XmC8/2O0tsfi1n4StBGdUxk5bjF+\r\nd8JqYnLVGSOhRKVyy2m7dmhXJXDxyLw4Ng8=\r\n=0TDm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"7131206ce7c528d8047097a82a8955668f226c2c","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"8.19.2","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"16.18.0","dependencies":{"glob":"~7.2.0","lodash":"~4.17.21","mkdirp":"~1.0.4","moment":"~2.29.3","commenting":"~1.1.0","magic-string":"~0.26.2","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"8.26.0","rimraf":"3.0.2","rollup":"3.2.3","jasmine":"3.10.0","fs-extra":"10.1.0","gulp-git":"2.10.1","prettier":"2.7.1","fancy-log":"2.0.0","gulp-bump":"3.2.0","globalthis":"1.0.3","typescript":"4.8.4","@babel/core":"7.19.6","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.18.9","@babel/preset-env":"7.19.4","@rollup/plugin-babel":"6.0.2","eslint-config-google":"0.14.0","rollup-plugin-prettier":"3.0.0","@rollup/plugin-commonjs":"23.0.2","@typescript-eslint/parser":"5.41.0","rollup-plugin-strip-banner":"3.0.0","@rollup/plugin-node-resolve":"15.0.1","gulp-conventional-changelog":"2.0.35","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"5.41.0"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_3.0.0_1666819492249_0.2914097388523538","host":"s3://npm-registry-packages"}},"2.9.1":{"name":"rollup-plugin-license","version":"2.9.1","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@2.9.1","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"71684507f369c139e1bc88d9bcbddd6967514eb6","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-2.9.1.tgz","fileCount":6,"integrity":"sha512-C26f/bFXR52tzpBMllDnf5m2ETqRuyrrj3m8i3YY4imDwbXtunop+Lj1mO9mn/sZF8gKknOycN1Sm+kMGBd6RA==","signatures":[{"sig":"MEUCIQCEOsIOsCBdH6iAvSmCUmkV361dp0zVSRDgQ2AdLReHMQIgTtNgDjFr06re1uA6suR551y61NwskXOijWfC0A+xsRs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":255695,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjX9LIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqHWxAAltZGR7IKdvspDqTn8p8vzBweLkAIrcp0a0PI3G8xiv+nYnVy\r\n7+5P9h7kWGS2XtYBRj4zPkEzFgTzvIJeSjlHo4881GHLP+n66W3biBIGwv0U\r\nObFiv1v2TEuTX7whIqjuMxQHwVijDJ6iD4llVlAvdl4MwNJ6sLbEwIsuTy30\r\nPHqAxF4mqDlhQ0KMUykVZmfK5quOEtaUQHsIK8d9eKdqM611zpQkmbIvz2Vd\r\ng44NdiFMOaK59XDbZ1/0mI4GVac2I2txKoNmqYXF474FqP8ACmA+5JH4u1sr\r\nFeBQuvNjnhPRzj3jWDHQajvOO7L5PKewFcmxXhdKIKepPzavs11qIlI5imxZ\r\n6QohwgvlvCsGkGbDSyhSI5YypC/Qi8hhj+NPLehzIS2FwFYMrBStGwJ+5BHn\r\nncc0IO7nil1uWycIR3ULmY3p8zmUcPkENQ/F1AD+iGNCvHgEnl49YpZHtP3C\r\nIwJv3BFRiPEUDGmsIu0SX2JTQVRg2lrmnRV25QDdoLg5gQzQhza3hCx4BLM9\r\nfh4HHDQtpV+RtFVDIJ5moiyGAbWPIYgs8MAj63VzJpSPuPa4ZSmwSNnXcwNk\r\nx2ytBZbd829mC/CWiXMA9Nop0NWwpUJN96YK7epIsGdLssktbgp4HEhCYPqg\r\nEshJGFEoCQ4kaz+DpB8lrl31qrbOmZVPi/k=\r\n=175s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=10.0.0"},"gitHead":"b1d4a26863ae8ffd26d9ad8e464a1d4f40140d39","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"8.1.2","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"16.13.2","dependencies":{"glob":"~7.2.0","lodash":"~4.17.21","mkdirp":"~1.0.4","moment":"~2.29.3","commenting":"~1.1.0","magic-string":"~0.26.2","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"8.26.0","rimraf":"3.0.2","rollup":"2.79.1","jasmine":"3.10.0","fs-extra":"10.1.0","gulp-git":"2.10.1","prettier":"2.7.1","fancy-log":"2.0.0","gulp-bump":"3.2.0","globalthis":"1.0.3","typescript":"4.8.4","@babel/core":"7.19.6","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.18.9","@babel/preset-env":"7.19.4","@rollup/plugin-babel":"6.0.2","eslint-config-google":"0.14.0","@rollup/plugin-virtual":"3.0.1","rollup-plugin-prettier":"2.3.0","@rollup/plugin-commonjs":"23.0.2","@typescript-eslint/parser":"5.41.0","rollup-plugin-strip-banner":"2.1.0","@rollup/plugin-node-resolve":"15.0.1","gulp-conventional-changelog":"2.0.35","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"5.41.0"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_2.9.1_1667224264556_0.24367979361089476","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"rollup-plugin-license","version":"3.0.1","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@3.0.1","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"e54d9464971dc2c5282b74c00cee09091b329054","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-3.0.1.tgz","fileCount":6,"integrity":"sha512-/lec6Y94Y3wMfTDeYTO/jSXII0GQ/XkDZCiqkMKxyU5D5nGPaxr/2JNYvAgYsoCYuOLGOanKDPjCCQiTT96p7A==","signatures":[{"sig":"MEQCIEgEPyXzWmSafO5xVn0aO4J964NUE2XFWpNoUHFOavKnAiAfXYHf7/hDEn8ur2eYZoRBvScl0XQiVNGkiM/l2LTKXg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":255704,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjX9LbACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpwnA//VnxdBmrKO8320ItG+iVn6+qSTYksRnNnPQed5Cir1NIhjRmf\r\n4Il+oHSt2YB+L2j5ZFfQXoSfxqHOYzbv9kBMlYGB0gbe5qgIht2k94jxVa+w\r\nGMD2VgFpa+C4TVkBqzflP9xwtqhCRXHp/FTzwz1CEFj6RY++j8V6OsMVJivN\r\nJ7ZtgOrj/fpULlwMvuzpjTWrYG3zS7QdbioYDR2W0YOEjjdyudbKldx4Ze9W\r\npmfgBj/ljQXenJ9gZADI4e6ISdzuT+/OcHYeLo5bC0vpzenMLIIF57GftNzh\r\n0UZ2GOIQZwIjyntOQNtGbL1pkxFDZdlp8Mnca/xe051iK5GqfviDZgNlNR17\r\nE+IWs3RglHyxFnqwtKzqUQokOIuwSvT4fNvDb/xj0GRYrlFYVA8iMq7HlX/v\r\nTr0lE/hj4XZna57SYNKfsMwpQkToOqWrLgviAjKPu/eLmjk5qxnUP4NOx6KS\r\nqQr2ULgwKQydPg1kdVpNE90+69yF9h2LsdWAC/WvBc/9oguhLw0jMLEfGfif\r\nkf7D4wmdiBNPJQY9gcPsQSAWjyiOfUCfCFWNP0ylQTan0bRNj0AfLF/IA3I/\r\nbi/tTRhXFDp6W4ST6hmfgj/RUDH9srmFa9PhDAS86/71jfUg9h97doHck5pK\r\ndqe4qVZN9O8+8yOGCHWrgGBIp3GkLPnXxXY=\r\n=0D2G\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"0837951575a68b7bf4d1ba0084c13494d78a58f6","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"8.1.2","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"16.13.2","dependencies":{"glob":"~7.2.0","lodash":"~4.17.21","mkdirp":"~1.0.4","moment":"~2.29.3","commenting":"~1.1.0","magic-string":"~0.26.2","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"8.26.0","rimraf":"3.0.2","rollup":"3.2.3","jasmine":"3.10.0","fs-extra":"10.1.0","gulp-git":"2.10.1","prettier":"2.7.1","fancy-log":"2.0.0","gulp-bump":"3.2.0","globalthis":"1.0.3","typescript":"4.8.4","@babel/core":"7.19.6","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.18.9","@babel/preset-env":"7.19.4","@rollup/plugin-babel":"6.0.2","eslint-config-google":"0.14.0","@rollup/plugin-virtual":"3.0.1","rollup-plugin-prettier":"3.0.0","@rollup/plugin-commonjs":"23.0.2","@typescript-eslint/parser":"5.41.0","rollup-plugin-strip-banner":"3.0.0","@rollup/plugin-node-resolve":"15.0.1","gulp-conventional-changelog":"2.0.35","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"5.41.0"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_3.0.1_1667224283130_0.06506222897574232","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"rollup-plugin-license","version":"3.1.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@3.1.0","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"1ee033c461ecee8f58a5d461fd922312c838799b","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-3.1.0.tgz","fileCount":6,"integrity":"sha512-Cny2H2hJ7K+VdcJkH1pNcYRVhqIhZNu/fPusedW53fNZQOIwpXiznJ220EFvDkJbFUEkLqIDsDB5bEr/N9qfqw==","signatures":[{"sig":"MEUCIQCCt+lzznIiKePGfN6Wp10/F+/zma3d7kz7gEc9wBEhigIgfxOCnsX7g5Hj/ZFN9gxR4iwHc2+mGEfY3JR/b0rYvBU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":282376},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"d56e8d6f91be8bcc9d41c778349925bf887acfbe","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"9.5.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"18.15.0","dependencies":{"glob":"~7.2.0","lodash":"~4.17.21","mkdirp":"~3.0.0","moment":"~2.29.3","commenting":"~1.1.0","magic-string":"~0.30.0","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"8.48.0","rimraf":"5.0.1","rollup":"3.28.1","jasmine":"3.10.0","fs-extra":"11.1.1","gulp-git":"2.10.1","prettier":"3.0.3","fancy-log":"2.0.0","gulp-bump":"3.2.0","globalthis":"1.0.3","typescript":"5.2.2","@babel/core":"7.22.11","gulp-eslint":"6.0.0","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.22.5","@babel/preset-env":"7.22.14","@rollup/plugin-babel":"6.0.3","eslint-config-google":"0.14.0","@rollup/plugin-virtual":"3.0.1","rollup-plugin-prettier":"4.0.0","@rollup/plugin-commonjs":"25.0.4","@typescript-eslint/parser":"6.5.0","rollup-plugin-strip-banner":"3.0.0","@rollup/plugin-node-resolve":"15.2.1","gulp-conventional-changelog":"4.0.0","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"6.5.0"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_3.1.0_1693769713709_0.7146784509186759","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"rollup-plugin-license","version":"3.2.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@3.2.0","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"99958a5ed2ce4796a3a59bdcc6836dfd1c4df0e1","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-3.2.0.tgz","fileCount":6,"integrity":"sha512-gLtSOTE3hZ/mDgxg1HvYz87timTpLlyWXnV7OTyYMhn+Esek+xKxAOjtTsYnfMFGtsBWX+hvqC4b2Ct5ABpE6A==","signatures":[{"sig":"MEYCIQCbznP8rEx1M8HLEk4H+rwmukZb50ygp9gZm/8JKJdKXwIhAIbfLom+JI5XxfvcGG5PlFZ8RbZoFdcvlKY6gjTmMmdg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":282394},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"22de2a01a565c36ab1b3f23a12777f850e2f4904","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","prepare":"npm run build","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"9.6.7","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"18.17.0","dependencies":{"glob":"~7.2.0","lodash":"~4.17.21","mkdirp":"~3.0.0","moment":"~2.29.3","commenting":"~1.1.0","magic-string":"~0.30.0","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.1","gulp":"4.0.2","eslint":"8.51.0","rimraf":"5.0.5","rollup":"4.1.0","jasmine":"3.10.0","fs-extra":"11.1.1","prettier":"3.0.3","fancy-log":"2.0.0","globalthis":"1.0.3","typescript":"5.2.2","@babel/core":"7.23.2","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.22.15","@babel/preset-env":"7.23.2","@rollup/plugin-babel":"6.0.4","eslint-config-google":"0.14.0","@rollup/plugin-virtual":"3.0.2","rollup-plugin-prettier":"4.1.1","@rollup/plugin-commonjs":"25.0.5","@typescript-eslint/parser":"6.7.5","rollup-plugin-strip-banner":"3.1.0","@rollup/plugin-node-resolve":"15.2.3","gulp-conventional-changelog":"4.0.0","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"6.7.5"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_3.2.0_1697359982671_0.4431077256209903","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"rollup-plugin-license","version":"3.3.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@3.3.0","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"9cf8bd17834f1f94927554eb06e96053666c39ed","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-3.3.0.tgz","fileCount":6,"integrity":"sha512-19aYVaO7KUlkmpEZhAB+USvdsu+8XRHj92KCnCe78R52uH0OyeOqQsIo9su6YDujBWms75ENS7iuWRpHhZyutA==","signatures":[{"sig":"MEYCIQDTQRE4dLKyvrKUiZX8hO5siEk/xxfcIkx1u6uyQFrKNwIhALniK3UTzFriJCff5BtQnTZ3HDRNHkouBhYU03JBYHUg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":283728},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"09ffc07d50b1fb0a0e95acfe39d96151e0b927ce","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","prepare":"npm run build","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"10.2.4","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"18.19.1","dependencies":{"glob":"~7.2.0","lodash":"~4.17.21","mkdirp":"~3.0.0","moment":"~2.30.1","commenting":"~1.1.0","magic-string":"~0.30.0","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.3","gulp":"4.0.2","eslint":"8.57.0","rimraf":"5.0.5","rollup":"4.12.1","jasmine":"3.10.0","fs-extra":"11.2.0","prettier":"3.2.5","fancy-log":"2.0.0","globalthis":"1.0.3","typescript":"5.4.2","@babel/core":"7.24.0","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.23.7","@babel/preset-env":"7.24.0","@rollup/plugin-babel":"6.0.4","eslint-config-google":"0.14.0","@rollup/plugin-virtual":"3.0.2","rollup-plugin-prettier":"4.1.1","@rollup/plugin-commonjs":"25.0.7","@typescript-eslint/parser":"7.1.1","rollup-plugin-strip-banner":"3.1.0","@rollup/plugin-node-resolve":"15.2.3","gulp-conventional-changelog":"4.0.0","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"7.1.1"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_3.3.0_1710079968088_0.06376395438642235","host":"s3://npm-registry-packages"}},"3.3.1":{"name":"rollup-plugin-license","version":"3.3.1","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@3.3.1","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"73b68e33477524198d6f3f9befc905f59bf37c53","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-3.3.1.tgz","fileCount":6,"integrity":"sha512-lwZ/J8QgSnP0unVOH2FQuOBkeiyp0EBvrbYdNU33lOaYD8xP9Zoki+PGoWMD31EUq8Q07GGocSABTYlWMKkwuw==","signatures":[{"sig":"MEYCIQCYhaEvUyxv1GetWo3sEZrdh0izJ8Ew37aMD5hUzRC0dgIhAJcBXzwvu0J3uSB6DFJW75nYiJR4QTF0tXSe+lk1jP3p","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":283774},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"8ea2668399bcd52f312b3e13364c3e232e50fdf6","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","prepare":"npm run build","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"10.2.4","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"18.19.1","dependencies":{"glob":"~7.2.0","lodash":"~4.17.21","mkdirp":"~3.0.0","moment":"~2.30.1","commenting":"~1.1.0","magic-string":"~0.30.0","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.3","gulp":"4.0.2","eslint":"8.57.0","rimraf":"5.0.5","rollup":"4.12.1","jasmine":"3.10.0","fs-extra":"11.2.0","prettier":"3.2.5","fancy-log":"2.0.0","globalthis":"1.0.3","typescript":"5.4.2","@babel/core":"7.24.0","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.23.7","@babel/preset-env":"7.24.0","@rollup/plugin-babel":"6.0.4","eslint-config-google":"0.14.0","@rollup/plugin-virtual":"3.0.2","rollup-plugin-prettier":"4.1.1","@rollup/plugin-commonjs":"25.0.7","@typescript-eslint/parser":"7.1.1","rollup-plugin-strip-banner":"3.1.0","@rollup/plugin-node-resolve":"15.2.3","gulp-conventional-changelog":"4.0.0","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"7.1.1"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_3.3.1_1710082920263_0.456846374298703","host":"s3://npm-registry-packages"}},"3.4.0":{"name":"rollup-plugin-license","version":"3.4.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@3.4.0","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"14e0667a3d4cfb34fa97d97dfba69c0866fc2f9f","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-3.4.0.tgz","fileCount":6,"integrity":"sha512-Nwx4dDjoPlzR7QWcsswezxFAOC000+JLACganH3L+5toit0TEAfD4SF1DsvJR/kunHWJgqnhmzvOO+iLI1oKPw==","signatures":[{"sig":"MEUCID57d8VjTYrEecz3IcBGXF5C+BBXFGz83WMAJanJwvtvAiEAmuICl/oKGC4W2koufqnCNIs4Yp72MIKTT3rQayRL8Pg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":355660},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"a5765727efbdae0e4fdca9b82c5b13e42d07f4d1","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","prepare":"npm run build","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"10.5.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"18.20.2","dependencies":{"glob":"~7.2.0","lodash":"~4.17.21","mkdirp":"~3.0.0","moment":"~2.30.1","commenting":"~1.1.0","magic-string":"~0.30.0","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.3","gulp":"5.0.0","eslint":"8.57.0","rimraf":"5.0.5","rollup":"4.14.3","jasmine":"3.10.0","fs-extra":"11.2.0","prettier":"3.2.5","fancy-log":"2.0.0","globalthis":"1.0.3","typescript":"5.4.5","@babel/core":"7.24.4","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.23.7","@babel/preset-env":"7.24.4","@rollup/plugin-babel":"6.0.4","eslint-config-google":"0.14.0","@rollup/plugin-virtual":"3.0.2","rollup-plugin-prettier":"4.1.1","@rollup/plugin-commonjs":"25.0.7","@typescript-eslint/parser":"7.7.0","rollup-plugin-strip-banner":"3.1.0","@rollup/plugin-node-resolve":"15.2.3","gulp-conventional-changelog":"4.0.0","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"7.7.0"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_3.4.0_1715687348706_0.3906404729837356","host":"s3://npm-registry-packages"}},"3.4.1":{"name":"rollup-plugin-license","version":"3.4.1","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@3.4.1","homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"cbe7d790b922fdfa6a4c5435ecc3d4b577f9b7dd","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-3.4.1.tgz","fileCount":6,"integrity":"sha512-Q+Z+dcmrITllVyvTrach1y7k9cEotEDoFtP/7z6jbXcqXo8rtl1j/eTLCKAsZyxNPztgiOS3tH30FZtckmK5Eg==","signatures":[{"sig":"MEUCIQDPA0i3Q3JMNiIyu0JcU2CBcWotjMlysn/2e6LiNu/b/AIgdYBqkI0x8JNUPqpd43dsJg/1ggu4VLRRKg+rUZNB72w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":356343},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"867260df08c65564a0fd5505f672481671efafc8","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","prepare":"npm run build","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"10.7.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"18.20.3","dependencies":{"glob":"~7.2.0","lodash":"~4.17.21","mkdirp":"~3.0.0","moment":"~2.30.1","commenting":"~1.1.0","magic-string":"~0.30.0","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.3","gulp":"5.0.0","eslint":"8.57.0","rimraf":"5.0.5","rollup":"4.14.3","jasmine":"3.10.0","fs-extra":"11.2.0","prettier":"3.2.5","fancy-log":"2.0.0","globalthis":"1.0.3","typescript":"5.4.5","@babel/core":"7.24.4","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.23.7","@babel/preset-env":"7.24.4","@rollup/plugin-babel":"6.0.4","eslint-config-google":"0.14.0","@rollup/plugin-virtual":"3.0.2","rollup-plugin-prettier":"4.1.1","@rollup/plugin-commonjs":"25.0.7","@typescript-eslint/parser":"7.7.0","rollup-plugin-strip-banner":"3.1.0","@rollup/plugin-node-resolve":"15.2.3","gulp-conventional-changelog":"4.0.0","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"7.7.0"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_3.4.1_1718972235848_0.8236479603438909","host":"s3://npm-registry-packages"}},"3.5.0":{"name":"rollup-plugin-license","version":"3.5.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@3.5.0","homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"52f0a2722e08b0318eef718ff6787b317b63551e","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-3.5.0.tgz","fileCount":6,"integrity":"sha512-XBttY+IToHBeL/w5JiGGM9FzTW8FLlIaPjmjBT3h76f55F/TsUNDLNY0zx1MM7Ih4P8mF2H9gy46myvzLbS+GA==","signatures":[{"sig":"MEUCIQDSiRcUU3H1bK9JSv7q5dBWXibDIO0CjLu2xilUbyl9OAIgev0G50qjEusb2ERQIvx6ojYBH5XysXBucZk1ejmtONI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":363004},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"f27f51ddc005ab41185d3ff546b01227a6416af4","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","prepare":"npm run build","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"10.7.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"18.20.3","dependencies":{"fdir":"6.1.1","lodash":"~4.17.21","moment":"~2.30.1","commenting":"~1.1.0","magic-string":"~0.30.0","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.3","gulp":"5.0.0","eslint":"8.57.0","rimraf":"5.0.7","rollup":"4.18.0","jasmine":"3.10.0","fs-extra":"11.2.0","prettier":"3.3.2","fancy-log":"2.0.0","globalthis":"1.0.4","typescript":"5.5.2","@babel/core":"7.24.7","ansi-colors":"4.1.3","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.24.6","@babel/preset-env":"7.24.7","@rollup/plugin-babel":"6.0.4","eslint-plugin-import":"2.29.1","@rollup/plugin-virtual":"3.0.2","rollup-plugin-prettier":"4.1.1","@rollup/plugin-commonjs":"26.0.1","@typescript-eslint/parser":"7.13.1","eslint-config-airbnb-base":"15.0.0","rollup-plugin-strip-banner":"3.1.0","@rollup/plugin-node-resolve":"15.2.3","gulp-conventional-changelog":"5.0.0","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"7.13.1"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_3.5.0_1719070668499_0.6407567522844371","host":"s3://npm-registry-packages"}},"3.5.1":{"name":"rollup-plugin-license","version":"3.5.1","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@3.5.1","homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"42e90b9bd82663fd880700d2ed5d2c2ed281647f","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-3.5.1.tgz","fileCount":6,"integrity":"sha512-z/UN/d5KbJhyvmmAg6no/2M2XK1QH8DUZyhbQeuaxe48hkIBTvvMlUP97g4txOzEC82HlZzb7dlWslc/rmBskg==","signatures":[{"sig":"MEYCIQCZAWe5b4fDQFBDJLA54m31QWGGkcLfs11LC7R6Dex47gIhANnVWEty4PPfVlVFfIItMLh9NWpyaFttc7Jdz//tFXyR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":369596},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"cae46ac1b3c4f42bf04020d101d0849122dc5097","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","prepare":"npm run build","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"10.7.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"18.20.3","dependencies":{"fdir":"6.1.1","lodash":"~4.17.21","moment":"~2.30.1","commenting":"~1.1.0","magic-string":"~0.30.0","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.3","gulp":"5.0.0","eslint":"8.57.0","rimraf":"5.0.7","rollup":"4.18.0","jasmine":"3.10.0","fs-extra":"11.2.0","prettier":"3.3.2","fancy-log":"2.0.0","globalthis":"1.0.4","typescript":"5.5.2","@babel/core":"7.24.7","ansi-colors":"4.1.3","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.24.6","@babel/preset-env":"7.24.7","@rollup/plugin-babel":"6.0.4","eslint-plugin-import":"2.29.1","@rollup/plugin-virtual":"3.0.2","rollup-plugin-prettier":"4.1.1","@rollup/plugin-commonjs":"26.0.1","@typescript-eslint/parser":"7.13.1","eslint-config-airbnb-base":"15.0.0","rollup-plugin-strip-banner":"3.1.0","@rollup/plugin-node-resolve":"15.2.3","gulp-conventional-changelog":"5.0.0","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"7.13.1"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_3.5.1_1719143511835_0.6577069206001793","host":"s3://npm-registry-packages"}},"3.5.2":{"name":"rollup-plugin-license","version":"3.5.2","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@3.5.2","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"958f52cfde78a38ce328c0e66632a4394ebe7d1d","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-3.5.2.tgz","fileCount":6,"integrity":"sha512-NNeXBcE6RyQdZdSC8Vxe8Cheax2aUa/K0Ok6JDZwr9isjkSDer4aMg0sovas1Ua76ojLZX1BrNQ6ZFspztKkZQ==","signatures":[{"sig":"MEQCIDJv12AY6VMrRgZoXfRMNmS5yQFpiiKRtn0H6MhmeU4yAiBJXiXsKL4m2BHI6LFFHZj/XnUufffo5HG677bilDX68w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":370452},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"623496cb403e894437ec28be4772ac56f168d31b","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","prepare":"npm run build","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"10.7.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"18.20.3","dependencies":{"fdir":"6.1.1","lodash":"~4.17.21","moment":"~2.30.1","commenting":"~1.1.0","magic-string":"~0.30.0","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.3","gulp":"5.0.0","eslint":"8.57.0","rimraf":"5.0.7","rollup":"4.18.0","jasmine":"3.10.0","fs-extra":"11.2.0","prettier":"3.3.2","fancy-log":"2.0.0","globalthis":"1.0.4","typescript":"5.5.3","@babel/core":"7.24.7","ansi-colors":"4.1.3","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.24.6","@babel/preset-env":"7.24.7","@rollup/plugin-babel":"6.0.4","eslint-plugin-import":"2.29.1","@rollup/plugin-virtual":"3.0.2","rollup-plugin-prettier":"4.1.1","@rollup/plugin-commonjs":"26.0.1","@typescript-eslint/parser":"7.15.0","eslint-config-airbnb-base":"15.0.0","rollup-plugin-strip-banner":"3.1.0","@rollup/plugin-node-resolve":"15.2.3","gulp-conventional-changelog":"5.0.0","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"7.15.0"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_3.5.2_1720083558308_0.08957496016225441","host":"s3://npm-registry-packages"}},"3.5.3":{"name":"rollup-plugin-license","version":"3.5.3","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@3.5.3","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"b02ffa4fd4c81464db450d06478e03e5605d9d5f","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-3.5.3.tgz","fileCount":6,"integrity":"sha512-r3wImZSo2d6sEk9BRJtlzeI/upjyjnpthy06Fdl0EzqRrlg3ULb9KQR7xHJI0zuayW/8bchEXSF5dO6dha4OyA==","signatures":[{"sig":"MEYCIQDVXcOg80ABvzq/1/spCQ5+Ty9dVqtK//2Q2V26cGxcnwIhAJeKH+Ag5fWBZj6VYI86OlRbrKjiMpVy25ZuTZgqj+dW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":370428},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"c0add5e4b1a5c3b19d5753b5f3ff4ceeb1a7df46","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","prepare":"npm run build","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"10.7.0","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"18.20.4","dependencies":{"fdir":"6.3.0","lodash":"~4.17.21","moment":"~2.30.1","commenting":"~1.1.0","magic-string":"~0.30.0","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.3","gulp":"5.0.0","eslint":"8.57.0","rimraf":"6.0.1","rollup":"4.22.2","jasmine":"3.10.0","fs-extra":"11.2.0","prettier":"3.3.3","fancy-log":"2.0.0","globalthis":"1.0.4","typescript":"5.6.2","@babel/core":"7.25.2","ansi-colors":"4.1.3","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.24.6","@babel/preset-env":"7.25.4","@rollup/plugin-babel":"6.0.4","eslint-plugin-import":"2.30.0","@rollup/plugin-virtual":"3.0.2","rollup-plugin-prettier":"4.1.1","@rollup/plugin-commonjs":"26.0.1","@typescript-eslint/parser":"8.6.0","eslint-config-airbnb-base":"15.0.0","rollup-plugin-strip-banner":"3.1.0","@rollup/plugin-node-resolve":"15.2.3","gulp-conventional-changelog":"5.0.0","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"8.6.0"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_3.5.3_1727085528214_0.8136766582038049","host":"s3://npm-registry-packages"}},"3.6.0":{"name":"rollup-plugin-license","version":"3.6.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@3.6.0","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"4699ac83cea91afdbea638e72740531f00828ff7","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-3.6.0.tgz","fileCount":6,"integrity":"sha512-1ieLxTCaigI5xokIfszVDRoy6c/Wmlot1fDEnea7Q/WXSR8AqOjYljHDLObAx7nFxHC2mbxT3QnTSPhaic2IYw==","signatures":[{"sig":"MEUCIQCUEaRHV/1BmON7w5KUYV/HsKLDFbdD9DL6x2G5XbCzdgIgZMjs+IEwACfHHwzW3Crl6m1b+QK0Rn0CLpL2F0OWxZU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":370431},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"dfb87f6692ac84ae6052ac8873f20dde0f0a4ce9","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","prepare":"npm run build","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"10.9.2","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"22.13.1","dependencies":{"fdir":"^6.4.3","lodash":"~4.17.21","moment":"~2.30.1","commenting":"~1.1.0","magic-string":"~0.30.0","spdx-satisfies":"~5.0.1","package-name-regex":"~2.0.6","spdx-expression-validate":"~2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.3","gulp":"5.0.0","eslint":"8.57.0","rimraf":"6.0.1","rollup":"4.34.8","jasmine":"3.10.0","fs-extra":"11.3.0","prettier":"3.5.1","fancy-log":"2.0.0","globalthis":"1.0.4","typescript":"5.7.3","@babel/core":"7.26.9","ansi-colors":"4.1.3","gulp-jasmine":"4.0.0","jasmine-core":"3.10.1","@babel/register":"7.25.9","@babel/preset-env":"7.26.9","@rollup/plugin-babel":"6.0.4","eslint-plugin-import":"2.31.0","@rollup/plugin-virtual":"3.0.2","rollup-plugin-prettier":"4.1.2","@rollup/plugin-commonjs":"28.0.2","@typescript-eslint/parser":"8.24.1","eslint-config-airbnb-base":"15.0.0","rollup-plugin-strip-banner":"3.1.0","@rollup/plugin-node-resolve":"16.0.0","gulp-conventional-changelog":"5.0.0","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"8.24.1"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_3.6.0_1739866410201_0.8194102437425987","host":"s3://npm-registry-packages-npm-production"}},"3.7.0":{"name":"rollup-plugin-license","version":"3.7.0","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","_id":"rollup-plugin-license@3.7.0","maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"dist":{"shasum":"370af086789416856e52df9ee60ac9461788d7d7","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-3.7.0.tgz","fileCount":6,"integrity":"sha512-RvvOIF+GH3fBR3wffgc/vmjQn6qOn72WjppWVDp/v+CLpT0BbcRBdSkPeeIOL6U5XccdYgSIMjUyXgxlKEEFcw==","signatures":[{"sig":"MEQCIHIcz+HVd/fkm+Kcd8Cph4XV/iVVIHiyCM98pv4yBiV5AiBh2Po3nUJOraRboyV24IWKsrkVb2HpPxmh5F8jjIm3zQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/rollup-plugin-license@3.7.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":370704},"main":"dist/index.js","types":"dist/index.d.ts","engines":{"node":">=14.0.0"},"gitHead":"bb34bb50bb33f05a0147d2ca78225e47fab6a712","scripts":{"tdd":"gulp tdd","lint":"gulp lint","test":"gulp test","build":"gulp build","clean":"gulp clean","watch":"gulp watch","prepare":"npm run build","release":"gulp release:minor","changelog":"gulp changelog","release:major":"gulp release:major","release:minor":"gulp release:minor","release:patch":"gulp release:patch"},"typings":"dist/index.d.ts","_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:e4b42b5b-c5b5-4031-b75c-2fcc1e3980ad"}},"repository":{"url":"git+https://github.com/mjeanroy/rollup-plugin-license.git","type":"git"},"_npmVersion":"11.6.2","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","directories":{},"_nodeVersion":"24.13.0","dependencies":{"fdir":"^6.4.3","lodash":"^4.17.21","moment":"^2.30.1","commenting":"^1.1.0","magic-string":"^0.30.0","spdx-satisfies":"^5.0.1","package-name-regex":"^2.0.6","spdx-expression-validate":"^2.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tmp":"0.2.5","gulp":"5.0.1","eslint":"8.57.0","rimraf":"6.1.2","rollup":"4.57.1","jasmine":"6.0.0","fs-extra":"11.3.3","prettier":"3.8.1","fancy-log":"2.0.0","globalthis":"1.0.4","typescript":"5.9.3","@babel/core":"7.29.0","ansi-colors":"4.1.3","jasmine-core":"6.0.1","@babel/register":"7.28.6","@babel/preset-env":"7.29.0","@rollup/plugin-babel":"6.1.0","eslint-plugin-import":"2.32.0","@rollup/plugin-virtual":"3.0.2","rollup-plugin-prettier":"4.1.2","@rollup/plugin-commonjs":"29.0.0","@typescript-eslint/parser":"8.55.0","eslint-config-airbnb-base":"15.0.0","rollup-plugin-strip-banner":"3.1.0","@rollup/plugin-node-resolve":"16.0.3","gulp-conventional-changelog":"5.0.0","babel-plugin-add-module-exports":"1.0.4","@typescript-eslint/eslint-plugin":"8.55.0"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rollup-plugin-license_3.7.0_1771186134137_0.10945251660245492","host":"s3://npm-registry-packages-npm-production"}},"3.7.1":{"name":"rollup-plugin-license","version":"3.7.1","description":"Rollup plugin to add license banner to the final bundle and output third party licenses","main":"dist/index.js","types":"dist/index.d.ts","typings":"dist/index.d.ts","keywords":["rollup","rollup-plugin"],"author":{"name":"Mickael Jeanroy","email":"mickael.jeanroy@gmail.com"},"license":"MIT","homepage":"https://github.com/mjeanroy/rollup-plugin-license","bugs":{"url":"https://github.com/mjeanroy/rollup-plugin-license/issues"},"repository":{"type":"git","url":"git+https://github.com/mjeanroy/rollup-plugin-license.git"},"peerDependencies":{"rollup":"^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"},"dependencies":{"commenting":"^1.1.0","fdir":"^6.4.3","lodash":"^4.17.21","magic-string":"^0.30.0","moment":"^2.30.1","package-name-regex":"^2.0.6","spdx-expression-validate":"^2.0.0","spdx-satisfies":"^5.0.1"},"devDependencies":{"@babel/core":"7.29.0","@babel/preset-env":"7.29.2","@babel/register":"7.28.6","@rollup/plugin-babel":"7.0.0","@rollup/plugin-commonjs":"29.0.2","@rollup/plugin-node-resolve":"16.0.3","@rollup/plugin-virtual":"3.0.2","@typescript-eslint/eslint-plugin":"8.58.0","@typescript-eslint/parser":"8.58.0","ansi-colors":"4.1.3","babel-plugin-add-module-exports":"1.0.4","eslint":"8.57.0","eslint-config-airbnb-base":"15.0.0","eslint-plugin-import":"2.32.0","fancy-log":"2.0.0","fs-extra":"11.3.4","globalthis":"1.0.4","gulp":"5.0.1","gulp-conventional-changelog":"5.0.0","jasmine":"6.1.0","jasmine-core":"6.1.0","prettier":"3.8.1","rimraf":"6.1.3","rollup":"4.60.1","rollup-plugin-prettier":"4.1.2","rollup-plugin-strip-banner":"3.1.0","tmp":"0.2.5","typescript":"5.9.3"},"engines":{"node":">=14.0.0"},"scripts":{"lint":"gulp lint","clean":"gulp clean","build":"gulp build","watch":"gulp watch","test":"gulp test","tdd":"gulp tdd","changelog":"gulp changelog","release":"gulp release:minor","release:patch":"gulp release:patch","release:minor":"gulp release:minor","release:major":"gulp release:major"},"_id":"rollup-plugin-license@3.7.1","_integrity":"sha512-FcGXUbAmPvRSLxjVdjp/r/MUtKBlttVQd+ApUyvKfREnsoAfAZA6Ic2fE1Tz4RL0f9XqEQU9UIRNUMdtQtliDw==","_resolved":"/tmp/1a86b977a48e0a1bbd79512ba90f50d6/rollup-plugin-license-3.7.1.tgz","_from":"file:rollup-plugin-license-3.7.1.tgz","_nodeVersion":"24.14.1","_npmVersion":"11.11.0","dist":{"integrity":"sha512-FcGXUbAmPvRSLxjVdjp/r/MUtKBlttVQd+ApUyvKfREnsoAfAZA6Ic2fE1Tz4RL0f9XqEQU9UIRNUMdtQtliDw==","shasum":"b99329f1c840142559789e3d6cb9f69e9e5b36ef","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/rollup-plugin-license/-/rollup-plugin-license-3.7.1.tgz","fileCount":6,"unpackedSize":370702,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/rollup-plugin-license@3.7.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDTqcvYrq0DJxvOoy8udq9H2fxl5FqqGu1gdQrsf0gQHwIhAOZba4sTCAagdAh6Z2HKwoHJ5f9FjO1YvNhQpBC6SsP6"}]},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:e4b42b5b-c5b5-4031-b75c-2fcc1e3980ad"}},"directories":{},"maintainers":[{"name":"mickael.jeanroy","email":"mickael.jeanroy@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/rollup-plugin-license_3.7.1_1775729282859_0.507150071596491"},"_hasShrinkwrap":false}},"name":"rollup-plugin-license","time":{"created":"2016-11-25T22:16:02.952Z","modified":"2018-08-11T16:24:20.398Z","0.1.0":"2016-11-25T22:16:02.952Z","0.1.1":"2016-11-28T09:22:59.905Z","0.1.2":"2016-11-28T09:35:15.946Z","0.2.0":"2016-12-03T17:53:45.539Z","0.3.0":"2017-03-02T12:50:22.580Z","0.4.0":"2017-05-10T16:10:30.403Z","0.5.0":"2017-08-21T20:40:09.400Z","0.6.0":"2018-03-06T09:34:40.226Z","0.7.0":"2018-07-04T14:26:08.404Z","0.8.0":"2019-01-14T23:41:16.599Z","0.8.1":"2019-01-17T09:29:45.093Z","0.9.0":"2019-06-04T07:25:07.413Z","0.10.0":"2019-08-01T17:34:31.184Z","0.11.0":"2019-08-07T16:31:11.145Z","0.12.0":"2019-08-12T20:28:24.745Z","0.12.1":"2019-08-18T13:30:57.492Z","0.13.0":"2019-12-01T14:06:10.015Z","0.14.0":"2020-04-05T19:58:13.744Z","1.0.0":"2020-04-05T20:27:53.828Z","2.0.0":"2020-04-05T20:42:09.247Z","1.0.1":"2020-05-15T19:44:09.703Z","2.0.1":"2020-05-15T19:52:10.087Z","1.1.0":"2020-05-22T14:37:03.921Z","2.1.0":"2020-05-22T14:42:28.302Z","2.2.0":"2020-08-07T12:28:41.898Z","2.3.0":"2021-03-05T09:19:18.817Z","2.4.0":"2021-05-31T23:10:54.193Z","2.5.0":"2021-06-06T13:13:33.133Z","2.6.0":"2021-10-06T22:20:02.401Z","2.6.1":"2021-12-30T15:54:45.328Z","2.7.0":"2022-04-12T19:30:34.796Z","2.8.0":"2022-05-28T12:15:55.505Z","2.8.1":"2022-06-12T20:54:10.559Z","2.8.2":"2022-10-16T12:04:18.206Z","2.9.0":"2022-10-26T21:24:36.572Z","3.0.0":"2022-10-26T21:24:52.434Z","2.9.1":"2022-10-31T13:51:04.706Z","3.0.1":"2022-10-31T13:51:23.315Z","3.1.0":"2023-09-03T19:35:13.895Z","3.2.0":"2023-10-15T08:53:02.926Z","3.3.0":"2024-03-10T14:12:48.278Z","3.3.1":"2024-03-10T15:02:00.496Z","3.4.0":"2024-05-14T11:49:08.961Z","3.4.1":"2024-06-21T12:17:16.026Z","3.5.0":"2024-06-22T15:37:48.672Z","3.5.1":"2024-06-23T11:51:52.026Z","3.5.2":"2024-07-04T08:59:18.563Z","3.5.3":"2024-09-23T09:58:48.424Z","3.6.0":"2025-02-18T08:13:30.357Z","3.7.0":"2026-02-15T20:08:54.283Z","3.7.1":"2026-04-09T10:08:03.030Z"},"readmeFilename":"README.md","homepage":"https://github.com/mjeanroy/rollup-plugin-license"}