{"maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"keywords":["rollup","plugin","utils"],"dist-tags":{"latest":"5.3.0"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"description":"A set of utility functions commonly used by Rollup plugins","readme":"[npm]: https://img.shields.io/npm/v/@rollup/pluginutils\n[npm-url]: https://www.npmjs.com/package/@rollup/pluginutils\n[size]: https://packagephobia.now.sh/badge?p=@rollup/pluginutils\n[size-url]: https://packagephobia.now.sh/result?p=@rollup/pluginutils\n\n[![npm][npm]][npm-url]\n[![size][size]][size-url]\n[![libera manifesto](https://img.shields.io/badge/libera-manifesto-lightgrey.svg)](https://liberamanifesto.com)\n\n# @rollup/pluginutils\n\nA set of utility functions commonly used by ???? Rollup plugins.\n\n## Requirements\n\nThis plugin requires an [LTS](https://github.com/nodejs/Release) Node version (v8.0.0+) and Rollup v1.20.0+.\n\n## Install\n\nUsing npm:\n\n```console\nnpm install @rollup/pluginutils --save-dev\n```\n\n## Usage\n\n```js\nimport utils from '@rollup/pluginutils';\n//...\n```\n\n## API\n\nAvailable utility functions are listed below:\n\n_Note: Parameter names immediately followed by a `?` indicate that the parameter is optional._\n\n### addExtension\n\nAdds an extension to a module ID if one does not exist.\n\nParameters: `(filename: String, ext?: String)`<br>\nReturns: `String`\n\n```js\nimport { addExtension } from '@rollup/pluginutils';\n\nexport default function myPlugin(options = {}) {\n  return {\n    resolveId(code, id) {\n      // only adds an extension if there isn't one already\n      id = addExtension(id); // `foo` -> `foo.js`, `foo.js` -> `foo.js`\n      id = addExtension(id, '.myext'); // `foo` -> `foo.myext`, `foo.js` -> `foo.js`\n    }\n  };\n}\n```\n\n### attachScopes\n\nAttaches `Scope` objects to the relevant nodes of an AST. Each `Scope` object has a `scope.contains(name)` method that returns `true` if a given name is defined in the current scope or a parent scope.\n\nParameters: `(ast: Node, propertyName?: String)`<br>\nReturns: `Object`\n\nSee [rollup-plugin-inject](https://github.com/rollup/rollup-plugin-inject) or [rollup-plugin-commonjs](https://github.com/rollup/rollup-plugin-commonjs) for an example of usage.\n\n```js\nimport { attachScopes } from '@rollup/pluginutils';\nimport { walk } from 'estree-walker';\n\nexport default function myPlugin(options = {}) {\n  return {\n    transform(code) {\n      const ast = this.parse(code);\n\n      let scope = attachScopes(ast, 'scope');\n\n      walk(ast, {\n        enter(node) {\n          if (node.scope) scope = node.scope;\n\n          if (!scope.contains('foo')) {\n            // `foo` is not defined, so if we encounter it,\n            // we assume it's a global\n          }\n        },\n        leave(node) {\n          if (node.scope) scope = scope.parent;\n        }\n      });\n    }\n  };\n}\n```\n\n### createFilter\n\nConstructs a filter function which can be used to determine whether or not certain modules should be operated upon.\n\nParameters: `(include?: <picomatch>, exclude?: <picomatch>, options?: Object)`<br>\nReturns: `String`\n\n#### `include` and `exclude`\n\nType: `String | RegExp | Array[...String|RegExp]`<br>\n\nA valid [`picomatch`](https://github.com/micromatch/picomatch#globbing-features) pattern, or array of patterns. If `options.include` is omitted or has zero length, filter will return `true` by default. Otherwise, an ID must match one or more of the `picomatch` patterns, and must not match any of the `options.exclude` patterns.\n\nNote that `picomatch` patterns are very similar to [`minimatch`](https://github.com/isaacs/minimatch#readme) patterns, and in most use cases, they are interchangeable. If you have more specific pattern matching needs, you can view [this comparison table](https://github.com/micromatch/picomatch#library-comparisons) to learn more about where the libraries differ.\n\n#### `options`\n\n##### `resolve`\n\nType: `String | Boolean | null`\n\nOptionally resolves the patterns against a directory other than `process.cwd()`. If a `String` is specified, then the value will be used as the base directory. Relative paths will be resolved against `process.cwd()` first. If `false`, then the patterns will not be resolved against any directory. This can be useful if you want to create a filter for virtual module names.\n\n#### Usage\n\n```js\nimport { createFilter } from '@rollup/pluginutils';\n\nexport default function myPlugin(options = {}) {\n  // assume that the myPlugin accepts options of `options.include` and `options.exclude`\n  var filter = createFilter(options.include, options.exclude, {\n    resolve: '/my/base/dir'\n  });\n\n  return {\n    transform(code, id) {\n      if (!filter(id)) return;\n\n      // proceed with the transformation...\n    }\n  };\n}\n```\n\n### dataToEsm\n\nTransforms objects into tree-shakable ES Module imports.\n\nParameters: `(data: Object)`<br>\nReturns: `String`\n\n#### `data`\n\nType: `Object`\n\nAn object to transform into an ES module.\n\n#### Usage\n\n```js\nimport { dataToEsm } from '@rollup/pluginutils';\n\nconst esModuleSource = dataToEsm(\n  {\n    custom: 'data',\n    to: ['treeshake']\n  },\n  {\n    compact: false,\n    indent: '\\t',\n    preferConst: false,\n    objectShorthand: false,\n    namedExports: true\n  }\n);\n/*\nOutputs the string ES module source:\n  export const custom = 'data';\n  export const to = ['treeshake'];\n  export default { custom, to };\n*/\n```\n\n### extractAssignedNames\n\nExtracts the names of all assignment targets based upon specified patterns.\n\nParameters: `(param: Node)`<br>\nReturns: `Array[...String]`\n\n#### `param`\n\nType: `Node`\n\nAn `acorn` AST Node.\n\n#### Usage\n\n```js\nimport { extractAssignedNames } from '@rollup/pluginutils';\nimport { walk } from 'estree-walker';\n\nexport default function myPlugin(options = {}) {\n  return {\n    transform(code) {\n      const ast = this.parse(code);\n\n      walk(ast, {\n        enter(node) {\n          if (node.type === 'VariableDeclarator') {\n            const declaredNames = extractAssignedNames(node.id);\n            // do something with the declared names\n            // e.g. for `const {x, y: z} = ...` => declaredNames = ['x', 'z']\n          }\n        }\n      });\n    }\n  };\n}\n```\n\n### makeLegalIdentifier\n\nConstructs a bundle-safe identifier from a `String`.\n\nParameters: `(str: String)`<br>\nReturns: `String`\n\n#### Usage\n\n```js\nimport { makeLegalIdentifier } from '@rollup/pluginutils';\n\nmakeLegalIdentifier('foo-bar'); // 'foo_bar'\nmakeLegalIdentifier('typeof'); // '_typeof'\n```\n\n### normalizePath\n\nConverts path separators to forward slash.\n\nParameters: `(filename: String)`<br>\nReturns: `String`\n\n#### Usage\n\n```js\nimport { normalizePath } from '@rollup/pluginutils';\n\nnormalizePath('foo\\\\bar'); // 'foo/bar'\nnormalizePath('foo/bar'); // 'foo/bar'\n```\n\n## Meta\n\n[CONTRIBUTING](/.github/CONTRIBUTING.md)\n\n[LICENSE (MIT)](/LICENSE)\n","repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils","type":"git"},"users":{"flumpus-dev":true},"bugs":{"url":"https://github.com/rollup/plugins/issues"},"license":"MIT","versions":{"3.0.0":{"name":"@rollup/pluginutils","version":"3.0.0","publishConfig":{"access":"public"},"description":"A set of utility functions commonly used by Rollup plugins","license":"MIT","repository":{"type":"git","url":"git+https://github.com/rollup/plugins.git"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"homepage":"https://github.com/rollup/plugins/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/index.js","engines":{"node":">= 8.0.0"},"scripts":{"build":"rollup -c","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"pnpm run build && pnpm run lint && pnpm run security","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"pnpm run test -- --verbose","lint":"pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package","lint:docs":"prettier --single-quote --write README.md","lint:js":"eslint --fix --cache src --ext .js,.ts","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"pnpm run build","prepublishOnly":"pnpm run lint && pnpm run build","pretest":"pnpm run build -- --sourcemap","security":"echo 'pnpm needs `npm audit` support'","test":"ava test/*.ts"},"keywords":["rollup","plugin","utils"],"peerDependencies":{"rollup":"^1.20.0"},"dependencies":{"estree-walker":"^0.6.1"},"devDependencies":{"@types/estree":"0.0.39","@types/jest":"^24.0.23","@types/micromatch":"^3.1.1","@types/node":"^12.12.11","micromatch":"^4.0.2","rollup-plugin-commonjs":"^10.1.0","rollup-plugin-node-resolve":"^5.2.0","rollup-plugin-typescript":"^1.0.1","typescript":"^3.7.2"},"ava":{"compileEnhancements":false,"extensions":["ts"],"require":["ts-node/register"],"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"jsnext:main":"dist/index.es.js","module":"dist/index.es.js","nyc":{"extension":[".js",".ts"]},"types":"types/index.d.ts","_id":"@rollup/pluginutils@3.0.0","_nodeVersion":"12.3.1","_npmVersion":"6.11.2","dist":{"shasum":"9978c9d4cd5d6908755362336f699633a3cee343","size":53361,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-3.0.0.tgz"},"maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pluginutils_3.0.0_1574709321452_0.07175349025188194"},"_hasShrinkwrap":false,"publish_time":1574709321564,"_cnpm_publish_time":1574709321564},"3.0.1":{"name":"@rollup/pluginutils","version":"3.0.1","publishConfig":{"access":"public"},"description":"A set of utility functions commonly used by Rollup plugins","license":"MIT","repository":{"type":"git","url":"git+https://github.com/rollup/plugins.git"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"homepage":"https://github.com/rollup/plugins/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/index.js","engines":{"node":">= 8.0.0"},"scripts":{"build":"rollup -c","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"pnpm run build && pnpm run lint","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"pnpm run test -- --verbose","lint":"pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package","lint:docs":"prettier --single-quote --write README.md","lint:js":"eslint --fix --cache src --ext .js,.ts","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"pnpm run build","prepublishOnly":"pnpm run lint && pnpm run build","pretest":"pnpm run build -- --sourcemap","test":"ava test/*.ts"},"keywords":["rollup","plugin","utils"],"peerDependencies":{"rollup":"^1.20.0"},"dependencies":{"estree-walker":"^0.6.1"},"devDependencies":{"@types/estree":"0.0.39","@types/jest":"^24.0.23","@types/micromatch":"^3.1.1","@types/node":"^12.12.11","micromatch":"^4.0.2","rollup-plugin-commonjs":"^10.1.0","rollup-plugin-node-resolve":"^5.2.0","rollup-plugin-typescript":"^1.0.1","typescript":"^3.7.2"},"ava":{"compileEnhancements":false,"extensions":["ts"],"require":["ts-node/register"],"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"module":"dist/index.es.js","nyc":{"extension":[".js",".ts"]},"types":"types/index.d.ts","_id":"@rollup/pluginutils@3.0.1","_nodeVersion":"12.3.1","_npmVersion":"6.11.2","dist":{"shasum":"6923a24c4a0db2917e5c77b1ed7d6721ac7fe58e","size":53537,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-3.0.1.tgz"},"maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pluginutils_3.0.1_1576964076113_0.3781919844715922"},"_hasShrinkwrap":false,"publish_time":1576964076266,"_cnpm_publish_time":1576964076266},"3.0.2":{"name":"@rollup/pluginutils","version":"3.0.2","publishConfig":{"access":"public"},"description":"A set of utility functions commonly used by Rollup plugins","license":"MIT","repository":{"type":"git","url":"git+https://github.com/rollup/plugins.git"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/index.js","engines":{"node":">= 8.0.0"},"scripts":{"build":"rollup -c","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"pnpm run build && pnpm run lint","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"pnpm run test -- --verbose","lint":"pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package","lint:docs":"prettier --single-quote --write README.md","lint:js":"eslint --fix --cache src --ext .js,.ts","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"pnpm run build","prepublishOnly":"pnpm run lint && pnpm run build","pretest":"pnpm run build -- --sourcemap","test":"ava test/*.ts"},"keywords":["rollup","plugin","utils"],"peerDependencies":{"rollup":"^1.20.0"},"dependencies":{"estree-walker":"^0.6.1"},"devDependencies":{"@types/estree":"0.0.39","@types/jest":"^24.0.23","@types/micromatch":"^3.1.1","@types/node":"^12.12.11","micromatch":"^4.0.2","rollup-plugin-commonjs":"^10.1.0","rollup-plugin-node-resolve":"^5.2.0","rollup-plugin-typescript":"^1.0.1","typescript":"^3.7.2"},"ava":{"compileEnhancements":false,"extensions":["ts"],"require":["ts-node/register"],"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"module":"dist/index.es.js","nyc":{"extension":[".js",".ts"]},"types":"types/index.d.ts","_id":"@rollup/pluginutils@3.0.2","_nodeVersion":"12.3.1","_npmVersion":"6.11.2","dist":{"shasum":"78a8b7c614315b40784846ad0c8e67ca52385965","size":53664,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-3.0.2.tgz"},"maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pluginutils_3.0.2_1578151837288_0.15498988958346271"},"_hasShrinkwrap":false,"publish_time":1578151837473,"_cnpm_publish_time":1578151837473},"3.0.3":{"name":"@rollup/pluginutils","version":"3.0.3","publishConfig":{"access":"public"},"description":"A set of utility functions commonly used by Rollup plugins","license":"MIT","repository":{"type":"git","url":"git+https://github.com/rollup/plugins.git"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/index.js","engines":{"node":">= 8.0.0"},"scripts":{"build":"rollup -c","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"pnpm run build && pnpm run lint","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"pnpm run test -- --verbose","lint":"pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package","lint:docs":"prettier --single-quote --write README.md","lint:js":"eslint --fix --cache src --ext .js,.ts","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"pnpm run build","prepublishOnly":"pnpm run lint && pnpm run build","pretest":"pnpm run build -- --sourcemap","test":"ava"},"keywords":["rollup","plugin","utils"],"peerDependencies":{"rollup":"^1.20.0"},"dependencies":{"estree-walker":"^0.6.1"},"devDependencies":{"@types/estree":"0.0.39","@types/jest":"^24.0.23","@types/micromatch":"^3.1.1","@types/node":"^12.12.11","micromatch":"^4.0.2","rollup-plugin-commonjs":"^10.1.0","rollup-plugin-node-resolve":"^5.2.0","rollup-plugin-typescript":"^1.0.1","typescript":"^3.7.2"},"ava":{"compileEnhancements":false,"extensions":["ts"],"require":["ts-node/register"],"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"module":"dist/index.es.js","nyc":{"extension":[".js",".ts"]},"types":"types/index.d.ts","_id":"@rollup/pluginutils@3.0.3","_nodeVersion":"12.3.1","_npmVersion":"6.11.2","dist":{"shasum":"70666fb7d44e178c25b0d45790191d85889445d2","size":55101,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-3.0.3.tgz"},"maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pluginutils_3.0.3_1578408577079_0.8005625550818376"},"_hasShrinkwrap":false,"publish_time":1578408577221,"_cnpm_publish_time":1578408577221},"3.0.4":{"name":"@rollup/pluginutils","version":"3.0.4","publishConfig":{"access":"public"},"description":"A set of utility functions commonly used by Rollup plugins","license":"MIT","repository":{"type":"git","url":"git+https://github.com/rollup/plugins.git"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/index.js","engines":{"node":">= 8.0.0"},"scripts":{"build":"rollup -c","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"pnpm run build && pnpm run lint","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"pnpm run test -- --verbose","lint":"pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package","lint:docs":"prettier --single-quote --write README.md","lint:js":"eslint --fix --cache src --ext .js,.ts","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"pnpm run build","prepublishOnly":"pnpm run lint && pnpm run build","pretest":"pnpm run build -- --sourcemap","test":"ava"},"keywords":["rollup","plugin","utils"],"peerDependencies":{"rollup":"^1.20.0"},"dependencies":{"estree-walker":"^0.6.1"},"devDependencies":{"@types/estree":"0.0.39","@types/jest":"^24.0.23","@types/micromatch":"^3.1.1","@types/node":"^12.12.11","micromatch":"^4.0.2","rollup-plugin-commonjs":"^10.1.0","rollup-plugin-node-resolve":"^5.2.0","rollup-plugin-typescript":"^1.0.1","typescript":"^3.7.2"},"ava":{"compileEnhancements":false,"extensions":["ts"],"require":["ts-node/register"],"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"module":"dist/index.es.js","nyc":{"extension":[".js",".ts"]},"types":"types/index.d.ts","_id":"@rollup/pluginutils@3.0.4","_nodeVersion":"12.3.1","_npmVersion":"6.11.2","dist":{"shasum":"3a104a41a90f8d1dcf308e18f8fa402d1cc6576e","size":55319,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-3.0.4.tgz"},"maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pluginutils_3.0.4_1578689734919_0.12885333783485597"},"_hasShrinkwrap":false,"publish_time":1578689735129,"_cnpm_publish_time":1578689735129},"3.0.5":{"name":"@rollup/pluginutils","version":"3.0.5","publishConfig":{"access":"public"},"description":"A set of utility functions commonly used by Rollup plugins","license":"MIT","repository":{"type":"git","url":"git+https://github.com/rollup/plugins.git"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/index.js","engines":{"node":">= 8.0.0"},"scripts":{"build":"rollup -c","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"pnpm run build && pnpm run lint","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"pnpm run test -- --verbose","lint":"pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package","lint:docs":"prettier --single-quote --write README.md","lint:js":"eslint --fix --cache src --ext .js,.ts","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"pnpm run build","prepublishOnly":"pnpm run lint && pnpm run build","pretest":"pnpm run build -- --sourcemap","test":"ava"},"keywords":["rollup","plugin","utils"],"peerDependencies":{"rollup":"^1.20.0"},"dependencies":{"estree-walker":"^1.0.1"},"devDependencies":{"@types/estree":"0.0.39","@types/jest":"^24.0.23","@types/micromatch":"^3.1.1","@types/node":"^12.12.11","micromatch":"^4.0.2","rollup-plugin-commonjs":"^10.1.0","rollup-plugin-node-resolve":"^5.2.0","rollup-plugin-typescript":"^1.0.1","typescript":"^3.7.2"},"ava":{"compileEnhancements":false,"extensions":["ts"],"require":["ts-node/register"],"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"module":"dist/index.es.js","nyc":{"extension":[".js",".ts"]},"types":"types/index.d.ts","_id":"@rollup/pluginutils@3.0.5","_nodeVersion":"12.3.1","_npmVersion":"6.11.2","dist":{"shasum":"ee6b37b700999072b954213f4d2e509639d79a69","size":57710,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-3.0.5.tgz"},"maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pluginutils_3.0.5_1579914474064_0.9723043834397107"},"_hasShrinkwrap":false,"publish_time":1579914474231,"_cnpm_publish_time":1579914474231},"3.0.6":{"name":"@rollup/pluginutils","version":"3.0.6","publishConfig":{"access":"public"},"description":"A set of utility functions commonly used by Rollup plugins","license":"MIT","repository":{"type":"git","url":"git+https://github.com/rollup/plugins.git"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/index.js","engines":{"node":">= 8.0.0"},"scripts":{"build":"rollup -c","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"pnpm run build && pnpm run lint","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"pnpm run test -- --verbose","lint":"pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package","lint:docs":"prettier --single-quote --write README.md","lint:js":"eslint --fix --cache src --ext .js,.ts","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"pnpm run build","prepublishOnly":"pnpm run lint && pnpm run build","pretest":"pnpm run build -- --sourcemap","test":"ava"},"keywords":["rollup","plugin","utils"],"peerDependencies":{"rollup":"^1.20.0"},"dependencies":{"estree-walker":"^1.0.1"},"devDependencies":{"@types/estree":"0.0.39","@types/jest":"^24.0.23","@types/micromatch":"^3.1.1","@types/node":"^12.12.11","micromatch":"^4.0.2","rollup-plugin-commonjs":"^10.1.0","rollup-plugin-node-resolve":"^5.2.0","rollup-plugin-typescript":"^1.0.1","typescript":"^3.7.2"},"ava":{"compileEnhancements":false,"extensions":["ts"],"require":["ts-node/register"],"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"module":"dist/index.es.js","nyc":{"extension":[".js",".ts"]},"types":"types/index.d.ts","_id":"@rollup/pluginutils@3.0.6","_nodeVersion":"12.3.1","_npmVersion":"6.11.2","dist":{"shasum":"3ae0bbbce2eed53bf46b7fba8c393557c6c7f705","size":56686,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-3.0.6.tgz"},"maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pluginutils_3.0.6_1580143123402_0.07500325294366705"},"_hasShrinkwrap":false,"publish_time":1580143123534,"_cnpm_publish_time":1580143123534},"3.0.8":{"name":"@rollup/pluginutils","version":"3.0.8","publishConfig":{"access":"public"},"description":"A set of utility functions commonly used by Rollup plugins","license":"MIT","repository":{"type":"git","url":"git+https://github.com/rollup/plugins.git"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/index.js","engines":{"node":">= 8.0.0"},"scripts":{"build":"rollup -c","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"pnpm run build && pnpm run lint","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"pnpm run test -- --verbose","lint":"pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package","lint:docs":"prettier --single-quote --write README.md","lint:js":"eslint --fix --cache src --ext .js,.ts","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"pnpm run build","prepublishOnly":"pnpm run lint && pnpm run build","pretest":"pnpm run build -- --sourcemap","test":"ava"},"keywords":["rollup","plugin","utils"],"peerDependencies":{"rollup":"^1.20.0"},"dependencies":{"estree-walker":"^1.0.1"},"devDependencies":{"@rollup/plugin-typescript":"^3.0.0","@types/estree":"0.0.39","@types/jest":"^24.9.0","@types/micromatch":"^3.1.1","@types/node":"^12.12.25","micromatch":"^4.0.2","rollup-plugin-commonjs":"^10.1.0","rollup-plugin-node-resolve":"^5.2.0","typescript":"^3.7.5"},"ava":{"compileEnhancements":false,"extensions":["ts"],"require":["ts-node/register"],"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"module":"dist/index.es.js","nyc":{"extension":[".js",".ts"]},"types":"types/index.d.ts","_id":"@rollup/pluginutils@3.0.8","_nodeVersion":"12.3.1","_npmVersion":"6.11.2","dist":{"shasum":"4e94d128d94b90699e517ef045422960d18c8fde","size":56908,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-3.0.8.tgz"},"maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pluginutils_3.0.8_1580581555432_0.1519147162813821"},"_hasShrinkwrap":false,"publish_time":1580581555609,"_cnpm_publish_time":1580581555609},"3.0.9":{"name":"@rollup/pluginutils","version":"3.0.9","publishConfig":{"access":"public"},"description":"A set of utility functions commonly used by Rollup plugins","license":"MIT","repository":{"type":"git","url":"git+https://github.com/rollup/plugins.git"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/index.js","engines":{"node":">= 8.0.0"},"scripts":{"build":"rollup -c","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"pnpm run build && pnpm run lint","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"pnpm run test -- --verbose","lint":"pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package","lint:docs":"prettier --single-quote --write README.md","lint:js":"eslint --fix --cache src test types --ext .js,.ts","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"pnpm run build","prepublishOnly":"pnpm run lint && pnpm run build","pretest":"pnpm run build -- --sourcemap","test":"ava"},"keywords":["rollup","plugin","utils"],"peerDependencies":{"rollup":"^1.20.0||^2.0.0"},"dependencies":{"@types/estree":"0.0.39","estree-walker":"^1.0.1","micromatch":"^4.0.2"},"devDependencies":{"@rollup/plugin-commonjs":"^11.0.2","@rollup/plugin-node-resolve":"^7.1.1","@rollup/plugin-typescript":"^3.0.0","@types/jest":"^24.9.0","@types/micromatch":"^3.1.1","@types/node":"^12.12.25","typescript":"^3.7.5"},"ava":{"compileEnhancements":false,"extensions":["ts"],"require":["ts-node/register"],"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"module":"dist/index.es.js","nyc":{"extension":[".js",".ts"]},"types":"types/index.d.ts","_id":"@rollup/pluginutils@3.0.9","_nodeVersion":"12.15.0","_npmVersion":"6.14.3","dist":{"shasum":"aa6adca2c45e5a1b950103a999e3cddfe49fd775","size":9855,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-3.0.9.tgz"},"maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pluginutils_3.0.9_1586655038193_0.9741112186231953"},"_hasShrinkwrap":false,"publish_time":1586655038332,"_cnpm_publish_time":1586655038332},"3.0.10":{"name":"@rollup/pluginutils","version":"3.0.10","publishConfig":{"access":"public"},"description":"A set of utility functions commonly used by Rollup plugins","license":"MIT","repository":{"type":"git","url":"git+https://github.com/rollup/plugins.git"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/index.js","engines":{"node":">= 8.0.0"},"scripts":{"build":"rollup -c","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"pnpm run build && pnpm run lint","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"pnpm run test -- --verbose","lint":"pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package","lint:docs":"prettier --single-quote --write README.md","lint:js":"eslint --fix --cache src test types --ext .js,.ts","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"pnpm run build","prepublishOnly":"pnpm run lint && pnpm run build","pretest":"pnpm run build -- --sourcemap","test":"ava"},"keywords":["rollup","plugin","utils"],"peerDependencies":{"rollup":"^1.20.0||^2.0.0"},"dependencies":{"@types/estree":"0.0.39","estree-walker":"^1.0.1","picomatch":"^2.2.2"},"devDependencies":{"@rollup/plugin-commonjs":"^11.0.2","@rollup/plugin-node-resolve":"^7.1.1","@rollup/plugin-typescript":"^3.0.0","@types/jest":"^24.9.0","@types/node":"^12.12.25","@types/picomatch":"^2.2.1","typescript":"^3.7.5"},"ava":{"compileEnhancements":false,"extensions":["ts"],"require":["ts-node/register"],"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"module":"dist/index.es.js","nyc":{"extension":[".js",".ts"]},"types":"types/index.d.ts","_id":"@rollup/pluginutils@3.0.10","_nodeVersion":"14.1.0","_npmVersion":"6.14.4","dist":{"shasum":"a659b9025920378494cd8f8c59fbf9b3a50d5f12","size":9896,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-3.0.10.tgz"},"maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pluginutils_3.0.10_1588458526134_0.9996621899329823"},"_hasShrinkwrap":false,"publish_time":1588458526265,"_cnpm_publish_time":1588458526265},"3.1.0":{"name":"@rollup/pluginutils","version":"3.1.0","publishConfig":{"access":"public"},"description":"A set of utility functions commonly used by Rollup plugins","license":"MIT","repository":{"type":"git","url":"git+https://github.com/rollup/plugins.git"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"./dist/cjs/index.js","engines":{"node":">= 8.0.0"},"scripts":{"build":"rollup -c","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"pnpm run build && pnpm run lint","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"pnpm run test -- --verbose","lint":"pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package","lint:docs":"prettier --single-quote --write README.md","lint:js":"eslint --fix --cache src test types --ext .js,.ts","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"pnpm run build","prepublishOnly":"pnpm run lint && pnpm run build","pretest":"pnpm run build -- --sourcemap","test":"ava"},"keywords":["rollup","plugin","utils"],"peerDependencies":{"rollup":"^1.20.0||^2.0.0"},"dependencies":{"@types/estree":"0.0.39","estree-walker":"^1.0.1","picomatch":"^2.2.2"},"devDependencies":{"@rollup/plugin-commonjs":"^11.0.2","@rollup/plugin-node-resolve":"^7.1.1","@rollup/plugin-typescript":"^3.0.0","@types/jest":"^24.9.0","@types/node":"^12.12.25","@types/picomatch":"^2.2.1","typescript":"^3.7.5"},"ava":{"compileEnhancements":false,"extensions":["ts"],"require":["ts-node/register"],"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"exports":{"require":"./dist/cjs/index.js","import":"./dist/es/index.js"},"module":"./dist/es/index.js","nyc":{"extension":[".js",".ts"]},"type":"commonjs","types":"types/index.d.ts","_id":"@rollup/pluginutils@3.1.0","_nodeVersion":"14.1.0","_npmVersion":"6.14.4","dist":{"shasum":"706b4524ee6dc8b103b3c995533e5ad680c02b9b","size":10594,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-3.1.0.tgz"},"maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pluginutils_3.1.0_1591365104573_0.041346358307642994"},"_hasShrinkwrap":false,"publish_time":1591365104703,"_cnpm_publish_time":1591365104703},"4.0.0":{"name":"@rollup/pluginutils","version":"4.0.0","publishConfig":{"access":"public"},"description":"A set of utility functions commonly used by Rollup plugins","license":"MIT","repository":{"type":"git","url":"git+https://github.com/rollup/plugins.git"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"./dist/cjs/index.js","module":"./dist/es/index.js","engines":{"node":">= 8.0.0"},"scripts":{"build":"rollup -c","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"pnpm run build && pnpm run lint","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"pnpm run test -- --verbose","lint":"pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package","lint:docs":"prettier --single-quote --arrow-parens avoid --trailing-comma none --write README.md","lint:js":"eslint --fix --cache src test types --ext .js,.ts","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"pnpm run build","prepublishOnly":"pnpm run lint && pnpm run build","pretest":"pnpm run build -- --sourcemap","test":"ava"},"keywords":["rollup","plugin","utils"],"peerDependencies":{"rollup":"^1.20.0||^2.0.0"},"dependencies":{"@types/estree":"0.0.45","estree-walker":"^2.0.1","picomatch":"^2.2.2"},"devDependencies":{"@rollup/plugin-commonjs":"^14.0.0","@rollup/plugin-node-resolve":"^8.4.0","@rollup/plugin-typescript":"^5.0.2","@types/node":"^14.0.26","@types/picomatch":"^2.2.1","rollup":"^2.23.0"},"types":"types/index.d.ts","ava":{"babel":{"compileEnhancements":false},"extensions":["ts"],"require":["ts-node/register"],"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"exports":{"require":"./dist/cjs/index.js","import":"./dist/es/index.js"},"nyc":{"extension":[".js",".ts"]},"type":"commonjs","_id":"@rollup/pluginutils@4.0.0","_nodeVersion":"12.18.1","_npmVersion":"6.14.5","dist":{"shasum":"e18e9f5a3925779fc15209dd316c1bd260d195ef","size":11029,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-4.0.0.tgz"},"maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pluginutils_4.0.0_1597327595157_0.4106297704671671"},"_hasShrinkwrap":false,"publish_time":1597327595334,"_cnpm_publish_time":1597327595334},"4.1.0":{"name":"@rollup/pluginutils","version":"4.1.0","publishConfig":{"access":"public"},"description":"A set of utility functions commonly used by Rollup plugins","license":"MIT","repository":{"type":"git","url":"git+https://github.com/rollup/plugins.git"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"./dist/cjs/index.js","module":"./dist/es/index.js","type":"commonjs","exports":{"require":"./dist/cjs/index.js","import":"./dist/es/index.js"},"engines":{"node":">= 8.0.0"},"scripts":{"build":"rollup -c","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"pnpm run build && pnpm run lint","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"pnpm run test -- --verbose","lint":"pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package","lint:docs":"prettier --single-quote --arrow-parens avoid --trailing-comma none --write README.md","lint:js":"eslint --fix --cache src test types --ext .js,.ts","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"pnpm run build","prepublishOnly":"pnpm run lint && pnpm run build","pretest":"pnpm run build -- --sourcemap","test":"ava"},"keywords":["rollup","plugin","utils"],"peerDependencies":{"rollup":"^1.20.0||^2.0.0"},"dependencies":{"estree-walker":"^2.0.1","picomatch":"^2.2.2"},"devDependencies":{"@rollup/plugin-commonjs":"^14.0.0","@rollup/plugin-node-resolve":"^8.4.0","@rollup/plugin-typescript":"^5.0.2","@types/estree":"0.0.45","@types/node":"^14.0.26","@types/picomatch":"^2.2.1","acorn":"^8.0.4","rollup":"^2.23.0"},"types":"types/index.d.ts","ava":{"babel":{"compileEnhancements":false},"extensions":["ts"],"require":["ts-node/register"],"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"nyc":{"extension":[".js",".ts"]},"_id":"@rollup/pluginutils@4.1.0","_nodeVersion":"12.18.1","_npmVersion":"6.14.5","dist":{"shasum":"0dcc61c780e39257554feb7f77207dceca13c838","size":11189,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-4.1.0.tgz"},"maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pluginutils_4.1.0_1603767426426_0.7840896391360632"},"_hasShrinkwrap":false,"publish_time":1603767426625,"_cnpm_publish_time":1603767426625},"4.1.1":{"name":"@rollup/pluginutils","version":"4.1.1","keywords":["rollup","plugin","utils"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/pluginutils@4.1.1","maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"babel":{"compileEnhancements":false},"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"require":["ts-node/register"],"extensions":["ts"]},"nyc":{"extension":[".js",".ts"]},"dist":{"shasum":"1d4da86dd4eded15656a57d933fda2b9a08d47ec","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-4.1.1.tgz","fileCount":7,"integrity":"sha512-clDjivHqWGXi7u+0d2r2sBi4Ie6VLEAzWMIkvJLnDmxoOhBYOTfzGbOQBA32THHm11/LiJbd01tJUpJsbshSWQ==","signatures":[{"sig":"MEYCIQCFl5Orc8JgjfTN3IHdge6zsUdJk/9S5ycccBlQkCd+hQIhAOgnLLObwJ/jkqHYz2nrMCkG9eqkQwBvDjiJSnSDbjNy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49846,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg8MwpCRA9TVsSAnZWagAAmVoP/1Bynddh8oHdpkJVTaHH\nzaa5iO+bGq6DsywFkWWvCr6In+HawulQYgox9I4iYf0NQMSiGHmj7o/Pz/Pv\n6/tjjrUPGA5YfuLOwzNMwelnaPZu7TDuoXI5kqhdXnXcYyHrgVL4nzHMmI5o\ny6HwGR5c4zFQQHCYIyi7BWZ9BMv+hvGlG/fGzlp3XYobaoPgFJvGpoYw2RVk\npXewO1Z/ifsU93cGjjHhjpdkqNzGvQhYWDw8W9tl/AJkjHFMcIXebpun/dll\nqut0GZ/gpO88X5ivbuxHxCm/hXD0R8DyMDGUo2lBAwM/s7r9JXzx3npPR+Ux\nWoSC9q4QQmfMJgnZ8DpXvPxfTHT++OMkixCdpA7eo0yXEUz6VPH/JbNV+ZFs\nmSJ8GuQFDfckxXtfLIULhMQRqbk2u5xWca1fwd/GG47lA6NZeP1zI+MUMhar\ni+GrwgFWigw2Gh2ump8YpEQQFTTlRd+rBIz1M03ZhA6RxEUAEK3MFsA2UBJV\nnV0PnbjBrNp+jy7FAFyBZtOrCjCgcTeA0DjOWcGEmWQ1jAb99+V48evmpsKh\npvoT+Qvh8sd7P9fc6LwO7HiTvartcqrMBNUJNyqewnwhcysQS7MLVosc0U8k\negYW7T+fOf5HmqGdRnsWJA0VsSLf0UHDIycpIEF9pNStwuoDyTTJfZQRht4f\np0wB\r\n=mYTv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","type":"commonjs","types":"types/index.d.ts","module":"./dist/es/index.js","engines":{"node":">= 8.0.0"},"exports":{"import":"./dist/es/index.js","require":"./dist/cjs/index.js"},"scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build -- --sourcemap","release":"pnpm plugin:release --workspace-root -- --pkg $npm_package_name","test:ts":"tsc --noEmit","prebuild":"del-cli dist","prerelease":"pnpm build","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"_npmVersion":"6.14.13","description":"A set of utility functions commonly used by Rollup plugins","directories":{},"_nodeVersion":"14.17.3","dependencies":{"picomatch":"^2.2.2","estree-walker":"^2.0.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"acorn":"^8.0.4","rollup":"^2.23.0","typescript":"^4.1.2","@types/node":"^14.0.26","@types/estree":"0.0.45","@types/picomatch":"^2.2.1","@rollup/plugin-commonjs":"^14.0.0","@rollup/plugin-typescript":"^5.0.2","@rollup/plugin-node-resolve":"^8.4.0"},"_npmOperationalInternal":{"tmp":"tmp/pluginutils_4.1.1_1626393640989_0.37791561768158966","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"@rollup/pluginutils","version":"4.1.2","keywords":["rollup","plugin","utils"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/pluginutils@4.1.2","maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"babel":{"compileEnhancements":false},"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"require":["ts-node/register"],"extensions":["ts"]},"nyc":{"extension":[".js",".ts"]},"dist":{"shasum":"ed5821c15e5e05e32816f5fb9ec607cdf5a75751","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-4.1.2.tgz","fileCount":7,"integrity":"sha512-ROn4qvkxP9SyPeHaf7uQC/GPFY6L/OWy9+bd9AwcjOAWQwxRscoEyAUD8qCY5o5iL4jqQwoLk2kaTKJPb/HwzQ==","signatures":[{"sig":"MEQCIGLmoYg2sn6lFlKFysWN4sc3VGuUDYv6TBjuzYdLRJhPAiAdmyMCRYs5P/uCJ8/L90y7hm0bTsx7JI1OYGfgamUgkw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49979,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJht1CiCRA9TVsSAnZWagAA88UP/Rytc5GcNnznLJt8Q+rL\nswd5BJRtlXS7F1VXI9KIGUIr9wSDjf+t8UtdBOR93ePGZUxaTyJeIBMzg/ao\ng1YwIkbZsgJCK5u0Pf8gC6qpDdp1KLjFxYaF8QwWiUOLr7ZL1O7TvlWad816\nteEj7ujNZcipfy2q5UilIiqL1BhzhT7psALNJVwWm48pkFqB0kIFYkju5EgY\npSiLb20QVBKxtVsQOurZk7Tj2gKyBlvQL0GLLDzvFjjD0Z69ft+0wcCWlPkq\nhisS2F1JE+Gi99H6sqtk8WGigsdnKgiusaQgy8HD65Z+7VEcxpIzgoMnV2gb\nxpGa5z2FrMraDIaA9x3gIYgMIKwjUJwLc7+yLuL884xo8cRm9DAMHHiHvcd0\nHVeY2PcKWfKowwsHjH6IlkrFs1vujzvVOWiqHymN+X5OKpYt8MiniC9faDlO\n9fYFwPGSjt6BAE06JdLC/mP82Z/97BJuGPh9i3HzI0UwWavFzm1zBusoAekq\nvBRFb3Un9sARwmb8++JkymDzQ85fMEs9i102TJhNeOUPcvXlyThTHDs6NmJG\nj2tIfZ166uRHzHzdn/mBPEq55THk8fO3me8T8G5cX2IQbZtxTagg6UUKXzto\nZvF8NNSaCj24VuE0uHxcMqLRSh/5nRFMr+lLfBv87LWi0vMQ6aT8f5v1LQjT\ndMWF\r\n=OXkj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","type":"commonjs","types":"types/index.d.ts","module":"./dist/es/index.js","engines":{"node":">= 8.0.0"},"exports":{"import":"./dist/es/index.js","require":"./dist/cjs/index.js"},"scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build -- --sourcemap","release":"pnpm plugin:release --workspace-root -- --pkg $npm_package_name","test:ts":"tsc --noEmit","prebuild":"del-cli dist","prerelease":"pnpm build","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"_npmVersion":"6.14.15","description":"A set of utility functions commonly used by Rollup plugins","directories":{},"_nodeVersion":"14.18.2","dependencies":{"picomatch":"^2.2.2","estree-walker":"^2.0.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"acorn":"^8.0.4","rollup":"^2.23.0","typescript":"^4.1.2","@types/node":"^14.0.26","@types/estree":"0.0.45","@types/picomatch":"^2.2.1","@rollup/plugin-commonjs":"^14.0.0","@rollup/plugin-typescript":"^5.0.2","@rollup/plugin-node-resolve":"^8.4.0"},"_npmOperationalInternal":{"tmp":"tmp/pluginutils_4.1.2_1639403681838_0.17209435489472824","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"@rollup/pluginutils","version":"4.2.0","keywords":["rollup","plugin","utils"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/pluginutils@4.2.0","maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"babel":{"compileEnhancements":false},"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"require":["ts-node/register"],"extensions":["ts"]},"nyc":{"extension":[".js",".ts"]},"dist":{"shasum":"a14bbd058fdbba0a5647143b16ed0d86fb60bd08","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-4.2.0.tgz","fileCount":7,"integrity":"sha512-2WUyJNRkyH5p487pGnn4tWAsxhEFKN/pT8CMgHshd5H+IXkOnKvKZwsz5ZWz+YCXkleZRAU5kwbfgF8CPfDRqA==","signatures":[{"sig":"MEUCIFcWCRfNI69lF4FxGKvMUfakST0snWNpPQgcR3h69HOtAiEAwrS7NNekPerFc3Dl2ok/46vNPuwPileLDqY7aoq9vuo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50679,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiJf/VACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpRbA/+KQ5XZl/D8pi0ETmmkPGx0x5R7KiWPBBlzX2h8K0BS2r+NhY9\r\n8iW1QSMpzXVYYCJ7ZNd5WGgsDHRo3uOCKa8j2+fbuP0j9EmLoWluFlBGJAoU\r\nunNZkjID60jXfjsSBqUgueXIpO1vZml+6NKo4iHFXHT/KiqL2eyCDenpaNTa\r\nlDIPKFqy/pd5as2NISP+8PnRv57PX/zXm1Njw6cqhRtfvM7F6iffAf5gT7ti\r\nFWhZWOsdiVp+qGTKJB2eyAeTooh5g7a0Sk8P4sGbU3kkdE6BUKa7PjTqtlgD\r\nD59BPJW+Ome9oobmRkfQSzMA+0/BGob6nItpjELkRAwU89VWl6JaKT++10Cm\r\n8NYsB5JImBkt6ZdmnEbri074jLxyDwfgAUqB0lsaACGT8Zn45m7NTbC59g4X\r\nnfENDrdKfz9baMtImp16kNmZjUDJc58g39gB/ikQSHoc3AmT8e1DlXFPBHIa\r\nhViP1/2DsCGuxtptjjAnEaM3rjnr4p2N93O98G2qDd742/ktPD+eIJEJqstG\r\nADdD66fPTfpwjOGIoUA8VyuPAOdeYi4QskAUko+UySyTolKtO41JJWOfKz9O\r\nBguKAcb2oV60AHENYz5gYwn5vHinvRdeca7JPrgvK2vZ8NLnkP1j4VG9nwmj\r\nbcxLipWP6pgL5LZwD8IeMA38rF24g0maapw=\r\n=XKjO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","type":"commonjs","types":"types/index.d.ts","module":"./dist/es/index.js","engines":{"node":">= 8.0.0"},"exports":{"import":"./dist/es/index.js","require":"./dist/cjs/index.js"},"scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build -- --sourcemap","release":"pnpm plugin:release --workspace-root -- --pkg $npm_package_name","test:ts":"tsc --noEmit","prebuild":"del-cli dist","prerelease":"pnpm build","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"_npmVersion":"6.14.16","description":"A set of utility functions commonly used by Rollup plugins","directories":{},"_nodeVersion":"14.19.0","dependencies":{"picomatch":"^2.2.2","estree-walker":"^2.0.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"acorn":"^8.0.4","rollup":"^2.67.3","typescript":"^4.1.2","@types/node":"^14.0.26","@types/estree":"0.0.45","@types/picomatch":"^2.2.1","@rollup/plugin-commonjs":"^14.0.0","@rollup/plugin-typescript":"^5.0.2","@rollup/plugin-node-resolve":"^8.4.0"},"_npmOperationalInternal":{"tmp":"tmp/pluginutils_4.2.0_1646657493744_0.22919263538369905","host":"s3://npm-registry-packages"}},"4.2.1":{"name":"@rollup/pluginutils","version":"4.2.1","keywords":["rollup","plugin","utils"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/pluginutils@4.2.1","maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"babel":{"compileEnhancements":false},"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"require":["ts-node/register"],"extensions":["ts"]},"nyc":{"extension":[".js",".ts"]},"dist":{"shasum":"e6c6c3aba0744edce3fb2074922d3776c0af2a6d","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-4.2.1.tgz","fileCount":7,"integrity":"sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==","signatures":[{"sig":"MEUCIQCIvl5fGK5Hgr6koR9vFqDM5nGQeIj6DCPx8ozNTqd4RAIgANKOWfQQMhMU7bExpWQBGz3PYrfco5SWOtuF3Uq+WT4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50858,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiVxvtACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpMGBAAl1bYlk9jdLNhXMlquvuk9zUJw9DmWqMQQUM4UrzqsVsAaLwe\r\nXpDw6mqjEuUVVVM29kMB1uX83gksnnkogoIrnhSe0tR7gUWZLh/rWRITk6zR\r\nhR+j9T72n45uRfbrbulGmgfB2O4kDNRCPEL2ksciNau4H0egl1eKTtI6Yi0E\r\nC3x2atUxrVMv9FRdZM568ovwDUs+6DQOefD/F0TsqFQJ/XkWilVoR/YKRUJ0\r\nydK5pnvY/LDxskKmSqsSRX+TKMJTvFrIVy2vwedFuh0Ouhgxv1QZXc5kbEga\r\nAlCu/nW7xzxiRGh7h2X/CFuCoHUDoiyAMKqfU67SZms4sXMJB8DiY9n0NCGf\r\n6tCg1iWE4XlwAwF27JLjNBw4168yKDq6khWpMFO2M0xG6XnnAnYn1vbyDaNd\r\ns3qSmImJ7yMCK12q9NzSp3QcTLbAMAatPehF+MlUM3dlfzhPB0pjPj9R2ehu\r\nnh05uzqmByFsJX9ZvIebdiHHWsqtAAoURI0iggR/+nFAq33JJm7NGjglAKtQ\r\nAEe9B49OPEdYw1f6ZpmgMl/gqqpm5iSoBQy59Vj2MsAcS42PCyi/ZGSGTEt9\r\n45mwXKBODsSPXSofv3m3pHysIHWRvQfxdbGNK7drYfqBiQh8nG78fldfwCQm\r\ngCmyInwqz5J+GgkzKkrMEsVchLNfpv+WCT4=\r\n=UATg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","type":"commonjs","types":"types/index.d.ts","module":"./dist/es/index.js","engines":{"node":">= 8.0.0"},"exports":{"import":"./dist/es/index.js","require":"./dist/cjs/index.js"},"scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build -- --sourcemap","release":"pnpm plugin:release --workspace-root -- --pkg $npm_package_name","test:ts":"tsc --noEmit","prebuild":"del-cli dist","prerelease":"pnpm build","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"_npmVersion":"6.14.16","description":"A set of utility functions commonly used by Rollup plugins","directories":{},"_nodeVersion":"14.19.1","dependencies":{"picomatch":"^2.2.2","estree-walker":"^2.0.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"acorn":"^8.0.4","rollup":"^2.67.3","typescript":"^4.1.2","@types/node":"^14.0.26","@types/estree":"0.0.45","@types/picomatch":"^2.2.1","@rollup/plugin-commonjs":"^14.0.0","@rollup/plugin-typescript":"^5.0.2","@rollup/plugin-node-resolve":"^8.4.0"},"_npmOperationalInternal":{"tmp":"tmp/pluginutils_4.2.1_1649875949769_0.877128123038079","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"@rollup/pluginutils","version":"5.0.0","keywords":["rollup","plugin","utils"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/pluginutils@5.0.0","maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"require":["ts-node/register"],"extensions":["ts"],"workerThreads":false},"nyc":{"extension":[".js",".ts"]},"dist":{"shasum":"a9b1a3769a15ba501eff8c9bd8d2cd0767d6a690","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-5.0.0.tgz","fileCount":6,"integrity":"sha512-LJAlpJhSH4cAoNrh5G4mQ7VJJgmGVN1A91Skwpd6uMT4CGmDbrZ59RQWwNB08WkLtKOzTHFj6pKgVn18zlDFrQ==","signatures":[{"sig":"MEYCIQC7f6NQK2jzk1Fz8VZqSJGlYdycFp4BfO7iY3IZz6T/fQIhAN3dwTwkt3lRj0vAE32ABwv5BD8hSPkR3QlX09ph7e8R","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37726,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRAEZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpkVg//ekf6BsYj25gbxZgqm13Tk2JtlRAFeytaRL01jiBqzI5f81I2\r\no/RAivsCK6uWH9jJHp80GrOZ1+ops6hrnnrSwicy/ttiuB6xuJ2SkljXV7pO\r\n1Pupc0xZ9U0hHIL6pLVXTJdz0Ew6RfgIxaBy4Hs0iMcSNRn328IE6GbzCSL2\r\nd1V8ktpa6BsuN1dbFVOrXQR2czGsX+GRraJqgBiEZ8Y6C4Xb4XssrDncVnmW\r\n0njDkQdYqHA+WM6SPsHs+CMIBQ71aOhH3ecBV2C6RB9hMc3cvgQaLSuJiUnI\r\nKnFRHkGrzHiVwD9hLXGk7tbcNvMaCVuO0oAYcF16TXOQThz3jcJmoHsrAfoZ\r\n0zn3vcd0d5NMQnmA7OZJiRQA/co88+X51Nd/dDkPT8GuM2K5iwOEevejE7Yw\r\n+OOLa7PMVz9CYKWm0ix0o+cMNWCxTluDJ5/4GcxfyS8+bk/Bpo+a0Z0+Rm0C\r\ndGT/Tt3Wj9wxir894JhqGPXv1eg9iLRxFBrbV+9bJKa9SzeVvBqyNN5FtMfo\r\nBx7rlcqAWJ0JfSV1TGSh954A53B0mibO4LrI89nrLJyWmr2QWxtZ4lVzUaRr\r\nDp+HoFgaL/slYm8ZKMjewehD9yZwtExUkEeegLdyZdMdMELjAUwB6rPJ/AhI\r\nEFI987BdOlKQeIwCrF1sQ3wBt/QdlHer/Ls=\r\n=r512\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","type":"commonjs","types":"./types/index.d.ts","module":"./dist/es/index.js","engines":{"node":">=14.0.0"},"exports":{"types":"./types/index.d.ts","import":"./dist/es/index.js","default":"./dist/cjs/index.js"},"gitHead":"1761d5b117bcf7b364512ecec7986539b76657a0","scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build --sourcemap","release":"pnpm --workspace-root plugin:release --pkg $npm_package_name","test:ts":"tsc --noEmit","prebuild":"del-cli dist","prerelease":"pnpm build","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"_npmVersion":"8.19.2","description":"A set of utility functions commonly used by Rollup plugins","directories":{},"_nodeVersion":"18.10.0","dependencies":{"picomatch":"^2.3.1","estree-walker":"^2.0.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"acorn":"^8.8.0","rollup":"^3.0.0-7","typescript":"^4.8.3","@types/node":"^14.18.30","@types/estree":"1.0.0","@types/picomatch":"^2.3.0","@rollup/plugin-commonjs":"^22.0.2","@rollup/plugin-typescript":"^8.5.0","@rollup/plugin-node-resolve":"^14.1.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/pluginutils_5.0.0_1665401113421_0.3439233738071297","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"@rollup/pluginutils","version":"5.0.1","keywords":["rollup","plugin","utils"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/pluginutils@5.0.1","maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"require":["ts-node/register"],"extensions":["ts"],"workerThreads":false},"nyc":{"extension":[".js",".ts"]},"dist":{"shasum":"63def51f5a76dadd984689d33c7f000164152a97","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-5.0.1.tgz","fileCount":6,"integrity":"sha512-4HaCVEXXuObvcPUaUlLt4faHYHCeQOOWNj8NKFGaRSrw3ZLD0TWeAFZicV9vXjnE2nkNuaVTfTuwAnjR+6uc9A==","signatures":[{"sig":"MEMCIH3mxAZNeNmE0I1KQOuqslPrfSvrMW8fDstF1RqRS2UvAh8dncc0QoRobAe+K9HTnsCUHspxA+if4ESP104jzbbS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37727,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjR/+lACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp0DBAAjxwTFnYA1mykOEXb0OyH5TMx8zxk/ba+W8u2IilYs3dhGeyT\r\nlpjJQ7RV5NHO8PzEphp5Rt8QvNJNAFY8lmhAfkn6GjfZnJvtUJjmnt3/XrY5\r\nxt1DhoY3DhTHwcIg60+vuhP+tVJ0dTGlmfi0q1Xtbc6ms3UMgyzfUQeWlgVo\r\njF8z7nvW1zRIzmz0MRWOQnyW6vGoiZVe4V8UfgRPceZqpdbrbgHHe/vmmJsP\r\npYL6yZQalGgg+Sc5ydOcHl3Y5UMpfFDJ7WkyyMRO0KFo/8jw5EaMpBmDzhVa\r\nuda5m/PIfFr0A91UlwQbxCkZq7FE3XSoHx0uMPbQ05yS42EZx0xVLO4S6Ntt\r\n42V2XBZ0pPo5+G1lwpKDyvc50GkJBUTdNh4Ky61eDPSgbkXeIs5IkMb4zB3M\r\nrLiIMvQJZo5z3zrzGEAIpYdpjmaASw7yzIrErYnRZ5qzzd+OpZK6jy1TdVa9\r\n2NlRT16BoJ/ycl7ulb5itgk1JCsC9amh6oWdoFtU2a+7h1BIFu8JruCJqFxs\r\nG+T8TP2bqhPk9UGG8otM3mQN7PgX55cxafN/7tGezaLFGRfUyZBenoK4JKVp\r\n6qwKyTcWtqGzYMLT+PZVcOEpDgeQBBwP11LPknONYgKrBOGgNHYkMSSPCvke\r\n78/jOPQov6p0lzKyV7ZHAr+lsA8lCPLBoeM=\r\n=wDTe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","type":"commonjs","types":"./types/index.d.ts","module":"./dist/es/index.js","engines":{"node":">=14.0.0"},"exports":{"types":"./types/index.d.ts","import":"./dist/es/index.js","default":"./dist/cjs/index.js"},"gitHead":"9d705575747b611a813dbe22c1ec65598bd1b665","scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build --sourcemap","release":"pnpm --workspace-root plugin:release --pkg $npm_package_name","test:ts":"tsc --noEmit","prebuild":"del-cli dist","prerelease":"pnpm build","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"_npmVersion":"8.19.2","description":"A set of utility functions commonly used by Rollup plugins","directories":{},"_nodeVersion":"18.10.0","dependencies":{"picomatch":"^2.3.1","@types/estree":"^1.0.0","estree-walker":"^2.0.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"acorn":"^8.8.0","rollup":"^3.0.0-7","typescript":"^4.8.3","@types/node":"^14.18.30","@types/picomatch":"^2.3.0","@rollup/plugin-commonjs":"^22.0.2","@rollup/plugin-typescript":"^8.5.0","@rollup/plugin-node-resolve":"^14.1.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/pluginutils_5.0.1_1665662884876_0.012248137804889314","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"@rollup/pluginutils","version":"5.0.2","keywords":["rollup","plugin","utils"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/pluginutils@5.0.2","maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"require":["ts-node/register"],"extensions":["ts"],"workerThreads":false},"nyc":{"extension":[".js",".ts"]},"dist":{"shasum":"012b8f53c71e4f6f9cb317e311df1404f56e7a33","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-5.0.2.tgz","fileCount":6,"integrity":"sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==","signatures":[{"sig":"MEYCIQCIpHR3C8fdLk9tjSgr1y9coAowbHV5Ux1EKEtkruhJegIhAOgcIKYhRD3KF9cJZJZLuxSQoqi8o1g+tTjHHJsLNCb3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37725,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjUu6JACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmre/w/7BmyljB3vB5Z8Tka87QxrG3jeM2Nq6uTSk1lAD/5lk3snQn3i\r\nJD8QDADzDailTVr2pkB1RMfYj+av7HaYusjNteHu+ZWKZWIesr6EMhFWxRv/\r\nUtdcdGOwTAXtvxwBY8pHWsXVuMo+ScbrOKQY3hNa3PVwrQsYh3ooPtfmLZQM\r\nO8kKGPkZi+quccNTQSACLvxyg7Q1uVhWtdQRmF5iK+441DR5BVkPKnXeHdjE\r\nbSd5ztWcLJQBiD3eXfatsiAKJHXv0/EfHLqvYxdbPDJ8nJgN+zPqanfAeyL3\r\np42AqM8Uk6L0qfs7Uj69E0c8LPkrGRVGjHhQpZFBG0BhbsMi0XzCOZBlynCA\r\nXkeMHF6FmGdJ8DDtUW7mZoCdP8RpdV+QfE+SwxZ3oAQuwtLTrAs9rJq7nWpi\r\nEM/SYMbc0nHhoVmD8QYsFgjHSn62BIl1OJpPGnaPrdxDfktzRlhx5cf93UwS\r\n+KR6/iXwYC59c6a+/noW4S0Dp/r1GQ2agq2yelBYMrDjiR/j1ig50yFe/aoZ\r\n8ZQer3LNVaKIyt+a7+ddSlhMcEU3Z3UNb74mhQ1Xb9LKTMxiNxTTSOOO+VDI\r\nJTYxPKWuwtfMSEfjZwRMfpyp2OM4lL76ITRvG+uo2X9outs9k2m8EyLkID90\r\ncQ73ZdXIhTcg/DoobUMrYkXniLWKdiMKtks=\r\n=tyq8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/cjs/index.js","type":"commonjs","types":"./types/index.d.ts","module":"./dist/es/index.js","engines":{"node":">=14.0.0"},"exports":{"types":"./types/index.d.ts","import":"./dist/es/index.js","default":"./dist/cjs/index.js"},"gitHead":"2eb71f2fcdcebe888ef9c998060c096c098b20bb","scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build --sourcemap","release":"pnpm --workspace-root plugin:release --pkg $npm_package_name","test:ts":"tsc --noEmit","prebuild":"del-cli dist","prerelease":"pnpm build","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"_npmVersion":"8.19.2","description":"A set of utility functions commonly used by Rollup plugins","directories":{},"_nodeVersion":"18.11.0","dependencies":{"picomatch":"^2.3.1","@types/estree":"^1.0.0","estree-walker":"^2.0.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"acorn":"^8.8.0","rollup":"^3.2.3","typescript":"^4.8.3","@types/node":"^14.18.30","@types/picomatch":"^2.3.0","@rollup/plugin-commonjs":"^23.0.0","@rollup/plugin-typescript":"^9.0.1","@rollup/plugin-node-resolve":"^15.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/pluginutils_5.0.2_1666379400872_0.6622096658116572","host":"s3://npm-registry-packages"}},"5.0.3":{"name":"@rollup/pluginutils","version":"5.0.3","keywords":["rollup","plugin","utils"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/pluginutils@5.0.3","maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"require":["ts-node/register"],"extensions":["ts"],"workerThreads":false},"nyc":{"extension":[".js",".ts"]},"dist":{"shasum":"183126d69aeb1cfa23401d5a71cb4b8c16c4a4e0","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-5.0.3.tgz","fileCount":6,"integrity":"sha512-hfllNN4a80rwNQ9QCxhxuHCGHMAvabXqxNdaChUSSadMre7t4iEUI6fFAhBOn/eIYTgYVhBv7vCLsAJ4u3lf3g==","signatures":[{"sig":"MEQCIARsRnBvBl2iRflC+vbKjk3coY+ubOaPbFWc/rAk6AQzAiB1EJ6B3I08FQPjeoucWZoiTnx03ioIhI1uVUmA7q6ANg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37732},"main":"./dist/cjs/index.js","type":"commonjs","types":"./types/index.d.ts","module":"./dist/es/index.js","engines":{"node":">=14.0.0"},"exports":{"types":"./types/index.d.ts","import":"./dist/es/index.js","default":"./dist/cjs/index.js"},"gitHead":"cf3fa7b2a62bfc61f4164ecb7af3b0f85f489348","scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build --sourcemap","release":"pnpm --workspace-root plugin:release --pkg $npm_package_name","test:ts":"tsc --noEmit","prebuild":"del-cli dist","prerelease":"pnpm build","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"_npmVersion":"9.6.7","description":"A set of utility functions commonly used by Rollup plugins","directories":{},"_nodeVersion":"18.17.0","dependencies":{"picomatch":"^2.3.1","@types/estree":"^1.0.0","estree-walker":"^2.0.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"acorn":"^8.8.0","rollup":"^3.2.3","typescript":"^4.8.3","@types/node":"^14.18.30","@types/picomatch":"^2.3.0","@rollup/plugin-commonjs":"^23.0.0","@rollup/plugin-typescript":"^9.0.1","@rollup/plugin-node-resolve":"^15.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/pluginutils_5.0.3_1691929264410_0.8352420915285184","host":"s3://npm-registry-packages"}},"5.0.4":{"name":"@rollup/pluginutils","version":"5.0.4","keywords":["rollup","plugin","utils"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/pluginutils@5.0.4","maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"require":["ts-node/register"],"extensions":["ts"],"workerThreads":false},"nyc":{"extension":[".js",".ts"]},"dist":{"shasum":"74f808f9053d33bafec0cc98e7b835c9667d32ba","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-5.0.4.tgz","fileCount":6,"integrity":"sha512-0KJnIoRI8A+a1dqOYLxH8vBf8bphDmty5QvIm2hqm7oFCFYKCAZWWd2hXgMibaPsNDhI0AtpYfQZJG47pt/k4g==","signatures":[{"sig":"MEUCIQCR9KjUTkm8OUwyKqWVcdSVoD7jkL51QTC5ZZ9GTIEsiAIgP9CslJP6WRcsKzaP0xIfExD0im8Af0E3dalAFX5u/Vk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37730},"main":"./dist/cjs/index.js","type":"commonjs","types":"./types/index.d.ts","module":"./dist/es/index.js","engines":{"node":">=14.0.0"},"exports":{"types":"./types/index.d.ts","import":"./dist/es/index.js","default":"./dist/cjs/index.js"},"gitHead":"8512d85876f08a9d6812c48205641977cf569c6c","scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build --sourcemap","release":"pnpm --workspace-root plugin:release --pkg $npm_package_name","test:ts":"tsc --noEmit","prebuild":"del-cli dist","prerelease":"pnpm build","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"_npmVersion":"9.6.7","description":"A set of utility functions commonly used by Rollup plugins","directories":{},"_nodeVersion":"18.17.1","dependencies":{"picomatch":"^2.3.1","@types/estree":"^1.0.0","estree-walker":"^2.0.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"acorn":"^8.8.0","rollup":"^3.2.3","typescript":"^4.8.3","@types/node":"^14.18.30","@types/picomatch":"^2.3.0","@rollup/plugin-commonjs":"^23.0.0","@rollup/plugin-typescript":"^9.0.1","@rollup/plugin-node-resolve":"^15.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/pluginutils_5.0.4_1693072658518_0.7270828637979416","host":"s3://npm-registry-packages"}},"5.0.5":{"name":"@rollup/pluginutils","version":"5.0.5","keywords":["rollup","plugin","utils"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/pluginutils@5.0.5","maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"require":["ts-node/register"],"extensions":["ts"],"workerThreads":false},"nyc":{"extension":[".js",".ts"]},"dist":{"shasum":"bbb4c175e19ebfeeb8c132c2eea0ecb89941a66c","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-5.0.5.tgz","fileCount":6,"integrity":"sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==","signatures":[{"sig":"MEUCIG//upJp5dftg0QM20MIOTqfKZe3kT7VAipc9KTG1lHCAiEAkniikiwphHc2tJN0HNsvHaeGJCPMncMHy8y/IjneQ0A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37741},"main":"./dist/cjs/index.js","type":"commonjs","types":"./types/index.d.ts","module":"./dist/es/index.js","engines":{"node":">=14.0.0"},"exports":{"types":"./types/index.d.ts","import":"./dist/es/index.js","default":"./dist/cjs/index.js"},"gitHead":"b8fad4c86f8c37c4dbba14830e9d4a9ba7ed6e1a","scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build --sourcemap","release":"pnpm --workspace-root plugin:release --pkg $npm_package_name","test:ts":"tsc --noEmit","prebuild":"del-cli dist","prerelease":"pnpm build","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"_npmVersion":"10.1.0","description":"A set of utility functions commonly used by Rollup plugins","directories":{},"_nodeVersion":"20.8.0","dependencies":{"picomatch":"^2.3.1","@types/estree":"^1.0.0","estree-walker":"^2.0.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"acorn":"^8.8.0","rollup":"^4.0.0-24","typescript":"^4.8.3","@types/node":"^14.18.30","@types/picomatch":"^2.3.0","@rollup/plugin-commonjs":"^23.0.0","@rollup/plugin-typescript":"^9.0.1","@rollup/plugin-node-resolve":"^15.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/pluginutils_5.0.5_1696507517921_0.43188345059088773","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"@rollup/pluginutils","version":"5.1.0","keywords":["rollup","plugin","utils"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/pluginutils@5.1.0","maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"require":["ts-node/register"],"extensions":["ts"],"workerThreads":false},"nyc":{"extension":[".js",".ts"]},"dist":{"shasum":"7e53eddc8c7f483a4ad0b94afb1f7f5fd3c771e0","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-5.1.0.tgz","fileCount":8,"integrity":"sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==","signatures":[{"sig":"MEYCIQD1+yKkl0y6ZzAC627xDwm8NOeF+gMFsVIYVp5YKMNejwIhALR/IzjwkjJ6cgMJl20h/YMpaX1G26bXF9cMGQmsLs94","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57092},"main":"./dist/cjs/index.js","type":"commonjs","_from":"file:rollup-pluginutils-5.1.0.tgz","types":"./types/index.d.ts","module":"./dist/es/index.js","engines":{"node":">=14.0.0"},"exports":{"types":"./types/index.d.ts","import":"./dist/es/index.js","default":"./dist/cjs/index.js"},"scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose","pretest":"pnpm build --sourcemap","release":"pnpm --workspace-root package:release $(pwd)","test:ts":"tsc --noEmit","prebuild":"del-cli dist","prerelease":"pnpm build","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"_resolved":"/private/var/folders/07/ywbfgwc57_z4yx4m8vzhr8580000gp/T/b094640e7557ed903f3f2c94421ff79e/rollup-pluginutils-5.1.0.tgz","_integrity":"sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==","repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"_npmVersion":"9.7.2","description":"A set of utility functions commonly used by Rollup plugins","directories":{},"_nodeVersion":"20.4.0","dependencies":{"picomatch":"^2.3.1","@types/estree":"^1.0.0","estree-walker":"^2.0.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"acorn":"^8.8.0","rollup":"^4.0.0-24","typescript":"^4.8.3","@types/node":"^14.18.30","@types/picomatch":"^2.3.0","@rollup/plugin-commonjs":"^23.0.0","@rollup/plugin-typescript":"^9.0.1","@rollup/plugin-node-resolve":"^15.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/pluginutils_5.1.0_1701186320352_0.1450866011934453","host":"s3://npm-registry-packages"}},"5.1.1":{"name":"@rollup/pluginutils","version":"5.1.1","keywords":["rollup","plugin","utils"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/pluginutils@5.1.1","maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"require":["ts-node/register"],"extensions":["ts"],"workerThreads":false},"nyc":{"extension":[".js",".ts"]},"dist":{"shasum":"4d5dc3367201c5b9c6ef98b7308c6637e0384fe7","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-5.1.1.tgz","fileCount":8,"integrity":"sha512-bVRmQqBIyGD+VMihdEV2IBurfIrdW9tD9yzJUL3CBRDbyPBVzQnBSMSgyUZHl1E335rpMRj7r4o683fXLYw8iw==","signatures":[{"sig":"MEQCIGoCBR3Me58ZK8gYT8P5MXx57gWMCaVIK4U/JE2qtFwiAiAHHXnA1fWKjb4lWTkmFrsyeWbAv+GJxxNgri0bBYIscA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57133},"main":"./dist/cjs/index.js","type":"commonjs","_from":"file:rollup-pluginutils-5.1.1.tgz","types":"./types/index.d.ts","module":"./dist/es/index.js","engines":{"node":">=14.0.0"},"exports":{"types":"./types/index.d.ts","import":"./dist/es/index.js","default":"./dist/cjs/index.js"},"scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose","pretest":"pnpm build --sourcemap","release":"pnpm --workspace-root package:release $(pwd)","test:ts":"tsc --noEmit","prebuild":"del-cli dist","prerelease":"pnpm build","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"_resolved":"/tmp/59e990f619636f2e5a6e860913ef25a4/rollup-pluginutils-5.1.1.tgz","_integrity":"sha512-bVRmQqBIyGD+VMihdEV2IBurfIrdW9tD9yzJUL3CBRDbyPBVzQnBSMSgyUZHl1E335rpMRj7r4o683fXLYw8iw==","repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"_npmVersion":"10.8.2","description":"A set of utility functions commonly used by Rollup plugins","directories":{},"_nodeVersion":"20.17.0","dependencies":{"picomatch":"^2.3.1","@types/estree":"^1.0.0","estree-walker":"^2.0.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"acorn":"^8.8.0","rollup":"^4.0.0-24","typescript":"^4.8.3","@types/node":"^14.18.30","@types/picomatch":"^2.3.0","@rollup/plugin-commonjs":"^23.0.0","@rollup/plugin-typescript":"^9.0.1","@rollup/plugin-node-resolve":"^15.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/pluginutils_5.1.1_1727045734360_0.14252945176272203","host":"s3://npm-registry-packages"}},"5.1.2":{"name":"@rollup/pluginutils","version":"5.1.2","keywords":["rollup","plugin","utils"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/pluginutils@5.1.2","maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"require":["ts-node/register"],"extensions":["ts"],"workerThreads":false},"nyc":{"extension":[".js",".ts"]},"dist":{"shasum":"d3bc9f0fea4fd4086aaac6aa102f3fa587ce8bd9","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-5.1.2.tgz","fileCount":8,"integrity":"sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==","signatures":[{"sig":"MEQCIApe0S6p7qOmsy9dSRmUnGmSOOtiB+uk0ZdoJM3arrxsAiA7ZRnAGZwwkY5b0FZA+DopdJLqSY5oq2C6e8xB3UaigA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57742},"main":"./dist/cjs/index.js","type":"commonjs","_from":"file:rollup-pluginutils-5.1.2.tgz","types":"./types/index.d.ts","module":"./dist/es/index.js","engines":{"node":">=14.0.0"},"exports":{"types":"./types/index.d.ts","import":"./dist/es/index.js","default":"./dist/cjs/index.js"},"scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose","pretest":"pnpm build --sourcemap","release":"pnpm --workspace-root package:release $(pwd)","test:ts":"tsc --noEmit","prebuild":"del-cli dist","prerelease":"pnpm build","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"_resolved":"/tmp/9ccb7fa974216e302023182520db59ca/rollup-pluginutils-5.1.2.tgz","_integrity":"sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==","repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"_npmVersion":"10.8.2","description":"A set of utility functions commonly used by Rollup plugins","directories":{},"_nodeVersion":"20.17.0","dependencies":{"picomatch":"^2.3.1","@types/estree":"^1.0.0","estree-walker":"^2.0.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"acorn":"^8.8.0","rollup":"^4.0.0-24","typescript":"^4.8.3","@types/node":"^14.18.30","@types/picomatch":"^2.3.0","@rollup/plugin-commonjs":"^23.0.0","@rollup/plugin-typescript":"^9.0.1","@rollup/plugin-node-resolve":"^15.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/pluginutils_5.1.2_1727119062241_0.44181385388005756","host":"s3://npm-registry-packages"}},"5.1.3":{"name":"@rollup/pluginutils","version":"5.1.3","keywords":["rollup","plugin","utils"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/pluginutils@5.1.3","maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"require":["ts-node/register"],"extensions":["ts"],"workerThreads":false},"nyc":{"extension":[".js",".ts"]},"dist":{"shasum":"3001bf1a03f3ad24457591f2c259c8e514e0dbdf","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-5.1.3.tgz","fileCount":8,"integrity":"sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==","signatures":[{"sig":"MEQCIDDHYnS5OXUWuRQUXp6YcXXnKpjL3DAfTZ4H1Lh805jUAiB33K+fliUL+KyuY0SXZcHvZrh3rzVk9VplE5fpNfFtBQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57742},"main":"./dist/cjs/index.js","type":"commonjs","_from":"file:rollup-pluginutils-5.1.3.tgz","types":"./types/index.d.ts","module":"./dist/es/index.js","engines":{"node":">=14.0.0"},"exports":{"types":"./types/index.d.ts","import":"./dist/es/index.js","default":"./dist/cjs/index.js"},"scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose","pretest":"pnpm build --sourcemap","release":"pnpm --workspace-root package:release $(pwd)","test:ts":"tsc --noEmit","prebuild":"del-cli dist","prerelease":"pnpm build","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"_resolved":"/tmp/ae3c3ab2c7549e594cfcd68d181940ba/rollup-pluginutils-5.1.3.tgz","_integrity":"sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==","repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"_npmVersion":"10.8.2","description":"A set of utility functions commonly used by Rollup plugins","directories":{},"_nodeVersion":"20.18.0","dependencies":{"picomatch":"^4.0.2","@types/estree":"^1.0.0","estree-walker":"^2.0.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"acorn":"^8.8.0","rollup":"^4.0.0-24","typescript":"^4.8.3","@types/node":"^14.18.30","@types/picomatch":"^2.3.0","@rollup/plugin-commonjs":"^23.0.0","@rollup/plugin-typescript":"^9.0.1","@rollup/plugin-node-resolve":"^15.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/pluginutils_5.1.3_1729695909148_0.9299586107750815","host":"s3://npm-registry-packages"}},"5.1.4":{"name":"@rollup/pluginutils","version":"5.1.4","keywords":["rollup","plugin","utils"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/pluginutils@5.1.4","maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"require":["ts-node/register"],"extensions":["ts"],"workerThreads":false},"nyc":{"extension":[".js",".ts"]},"dist":{"shasum":"bb94f1f9eaaac944da237767cdfee6c5b2262d4a","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-5.1.4.tgz","fileCount":8,"integrity":"sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==","signatures":[{"sig":"MEYCIQDY3Vs+lXLalMi2D5+FcXJFTWfnSvHjXE3OTHE8nDXAiAIhAJ9K+oz/+Y1N2/srlZoYyaKRmUe7AumCKhjRza5l98g6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58354},"main":"./dist/cjs/index.js","type":"commonjs","_from":"file:rollup-pluginutils-5.1.4.tgz","types":"./types/index.d.ts","module":"./dist/es/index.js","engines":{"node":">=14.0.0"},"exports":{"types":"./types/index.d.ts","import":"./dist/es/index.js","default":"./dist/cjs/index.js"},"scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose","pretest":"pnpm build --sourcemap","release":"pnpm --workspace-root package:release $(pwd)","test:ts":"tsc --noEmit","prebuild":"del-cli dist","prerelease":"pnpm build","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"_resolved":"/tmp/db2e948905eb7be7d08df60e0279fbed/rollup-pluginutils-5.1.4.tgz","_integrity":"sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==","repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"_npmVersion":"10.8.2","description":"A set of utility functions commonly used by Rollup plugins","directories":{},"_nodeVersion":"20.18.1","dependencies":{"picomatch":"^4.0.2","@types/estree":"^1.0.0","estree-walker":"^2.0.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"acorn":"^8.8.0","rollup":"^4.0.0-24","typescript":"^4.8.3","@types/node":"^14.18.30","@types/picomatch":"^2.3.0","@rollup/plugin-commonjs":"^23.0.0","@rollup/plugin-typescript":"^9.0.1","@rollup/plugin-node-resolve":"^15.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/pluginutils_5.1.4_1734279408306_0.9109670353872381","host":"s3://npm-registry-packages-npm-production"}},"5.2.0":{"name":"@rollup/pluginutils","version":"5.2.0","keywords":["rollup","plugin","utils"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/pluginutils@5.2.0","maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"require":["ts-node/register"],"extensions":["ts"],"workerThreads":false},"nyc":{"extension":[".js",".ts"]},"dist":{"shasum":"eac25ca5b0bdda4ba735ddaca5fbf26bd435f602","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-5.2.0.tgz","fileCount":8,"integrity":"sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==","signatures":[{"sig":"MEQCIGhDhNwqK2KAf03Pc4j2TPT6kM4cdZvVu0e6teBEMRh0AiBWick+LQA3BjxprcxHDzKqqfdyICYyz+TrbJLRBWPI4Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":60812},"main":"./dist/cjs/index.js","type":"commonjs","_from":"file:rollup-pluginutils-5.2.0.tgz","types":"./types/index.d.ts","module":"./dist/es/index.js","engines":{"node":">=14.0.0"},"exports":{"types":"./types/index.d.ts","import":"./dist/es/index.js","default":"./dist/cjs/index.js"},"scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose","pretest":"pnpm build --sourcemap","release":"pnpm --workspace-root package:release $(pwd)","test:ts":"tsc --noEmit","prebuild":"del-cli dist","prerelease":"pnpm build","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}"},"_npmUser":{"name":"shellscape","actor":{"name":"shellscape","type":"user","email":"andrew@shellscape.org"},"email":"andrew@shellscape.org"},"_resolved":"/tmp/d0a5cbb7c1befbf6a65e4cd16c210579/rollup-pluginutils-5.2.0.tgz","_integrity":"sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==","repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"_npmVersion":"10.8.2","description":"A set of utility functions commonly used by Rollup plugins","directories":{},"_nodeVersion":"20.19.2","dependencies":{"picomatch":"^4.0.2","@types/estree":"^1.0.0","estree-walker":"^2.0.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"acorn":"^8.8.0","rollup":"^4.0.0-24","typescript":"^4.8.3","@types/node":"^14.18.30","@types/picomatch":"^2.3.0","@rollup/plugin-commonjs":"^23.0.0","@rollup/plugin-typescript":"^9.0.1","@rollup/plugin-node-resolve":"^15.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/pluginutils_5.2.0_1750166813932_0.6067431518341047","host":"s3://npm-registry-packages-npm-production"}},"5.3.0":{"name":"@rollup/pluginutils","version":"5.3.0","publishConfig":{"access":"public"},"description":"A set of utility functions commonly used by Rollup plugins","license":"MIT","repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/pluginutils"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"./dist/cjs/index.js","module":"./dist/es/index.js","type":"commonjs","exports":{"types":"./types/index.d.ts","import":"./dist/es/index.js","default":"./dist/cjs/index.js"},"engines":{"node":">=14.0.0"},"keywords":["rollup","plugin","utils"],"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"dependencies":{"@types/estree":"^1.0.0","estree-walker":"^2.0.2","picomatch":"^4.0.2"},"devDependencies":{"@rollup/plugin-commonjs":"^23.0.0","@rollup/plugin-node-resolve":"^15.0.0","@rollup/plugin-typescript":"^9.0.1","@types/node":"^14.18.30","@types/picomatch":"^2.3.0","acorn":"^8.8.0","rollup":"^4.0.0-24","typescript":"^4.8.3"},"types":"./types/index.d.ts","ava":{"extensions":["ts"],"require":["ts-node/register"],"workerThreads":false,"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"nyc":{"extension":[".js",".ts"]},"scripts":{"build":"rollup -c","ci:coverage":"nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov","ci:lint":"pnpm build && pnpm lint","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","ci:test":"pnpm test -- --verbose","prebuild":"del-cli dist","prerelease":"pnpm build","pretest":"pnpm build --sourcemap","release":"pnpm --workspace-root package:release $(pwd)","test":"ava","test:ts":"tsc --noEmit"},"_id":"@rollup/pluginutils@5.3.0","_integrity":"sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==","_resolved":"/tmp/8f57c5000bc8c87fc9087703750b98a4/rollup-pluginutils-5.3.0.tgz","_from":"file:rollup-pluginutils-5.3.0.tgz","_nodeVersion":"20.19.4","_npmVersion":"10.8.2","dist":{"integrity":"sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==","shasum":"57ba1b0cbda8e7a3c597a4853c807b156e21a7b4","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/pluginutils/-/pluginutils-5.3.0.tgz","fileCount":8,"unpackedSize":63048,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIHXidIG6yZTgFUm4492oxNgmf/EGFCdrMzZ+gO0UttwGAiAdDNKnkCF/QXiGjRq6fWlOo633vJA7AwS6iANEfkR0yg=="}]},"_npmUser":{"name":"shellscape","email":"andrew@shellscape.org"},"directories":{},"maintainers":[{"name":"shellscape","email":"andrew@shellscape.org"},{"name":"rich_harris","email":"richard.a.harris@gmail.com"},{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/pluginutils_5.3.0_1756993165444_0.6804041190457528"},"_hasShrinkwrap":false}},"name":"@rollup/pluginutils","time":{"created":"2019-11-25T19:15:21.564Z","modified":"2020-11-01T07:36:29.343Z","3.0.0":"2019-11-25T19:15:21.564Z","3.0.1":"2019-12-21T21:34:36.266Z","3.0.2":"2020-01-04T15:30:37.473Z","3.0.3":"2020-01-07T14:49:37.221Z","3.0.4":"2020-01-10T20:55:35.129Z","3.0.5":"2020-01-25T01:07:54.231Z","3.0.6":"2020-01-27T16:38:43.534Z","3.0.8":"2020-02-01T18:25:55.609Z","3.0.9":"2020-04-12T01:30:38.332Z","3.0.10":"2020-05-02T22:28:46.265Z","3.1.0":"2020-06-05T13:51:44.703Z","4.0.0":"2020-08-13T14:06:35.334Z","4.1.0":"2020-10-27T02:57:06.625Z","4.1.1":"2021-07-16T00:00:41.424Z","4.1.2":"2021-12-13T13:54:42.003Z","4.2.0":"2022-03-07T12:51:33.888Z","4.2.1":"2022-04-13T18:52:29.950Z","5.0.0":"2022-10-10T11:25:13.606Z","5.0.1":"2022-10-13T12:08:05.024Z","5.0.2":"2022-10-21T19:10:01.096Z","5.0.3":"2023-08-13T12:21:04.587Z","5.0.4":"2023-08-26T17:57:38.713Z","5.0.5":"2023-10-05T12:05:18.127Z","5.1.0":"2023-11-28T15:45:20.506Z","5.1.1":"2024-09-22T22:55:34.574Z","5.1.2":"2024-09-23T19:17:42.465Z","5.1.3":"2024-10-23T15:05:09.471Z","5.1.4":"2024-12-15T16:16:48.510Z","5.2.0":"2025-06-17T13:26:54.138Z","5.3.0":"2025-09-04T13:39:25.620Z"},"readmeFilename":"README.md","homepage":"https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme"}