{"maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"keywords":["rollup","plugin","replace","es2015","npm","modules"],"dist-tags":{"latest":"6.0.3"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"description":"Replace strings in files while bundling","readme":"[npm]: https://img.shields.io/npm/v/@rollup/plugin-replace\n[npm-url]: https://www.npmjs.com/package/@rollup/plugin-replace\n[size]: https://packagephobia.now.sh/badge?p=@rollup/plugin-replace\n[size-url]: https://packagephobia.now.sh/result?p=@rollup/plugin-replace\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/plugin-replace\n\n???? A Rollup plugin which replaces strings in files while bundling.\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/plugin-replace --save-dev\n```\n\n## Usage\n\nCreate a `rollup.config.js` [configuration file](https://www.rollupjs.org/guide/en/#configuration-files) and import the plugin:\n\n```js\nimport replace from '@rollup/plugin-replace';\n\nexport default {\n  input: 'src/index.js',\n  output: {\n    dir: 'output',\n    format: 'cjs'\n  },\n  plugins: [\n    replace({\n      __buildEnv__: 'production',\n      __buildDate__: () => new Date(),\n      __buildVersion: 15\n    })\n  ]\n};\n```\n\nThen call `rollup` either via the [CLI](https://www.rollupjs.org/guide/en/#command-line-reference) or the [API](https://www.rollupjs.org/guide/en/#javascript-api).\n\nThe configuration above will replace every instance of `__buildEnv__` with `'production'` and `__buildDate__` with the result of the given function in any file included in the build. _Note: Values have to be either primitives or functions that return a string. For complex values, use `JSON.stringify`._\n\nTypically, `@rollup/plugin-replace` should be placed in `plugins` _before_ other plugins so that they may apply optimizations, such as dead code removal.\n\nThe most popular case is replacing process.env.NODE_ENV with development or production environment.\n\n```js\nimport replace from '@rollup/plugin-replace';\n\nexport default {\n  input: 'src/index.js',\n  output: {\n    dir: 'output',\n    format: 'cjs'\n  },\n  plugins: [\n    replace({\n      // alternatively, one could pass process.env.NODE_ENV or 'development` to stringify\n      'process.env.NODE_ENV': JSON.stringify('production')\n    })\n  ]\n};\n```\n\n## Options\n\nIn addition to the properties and values specified for replacement, users may also specify the options below.\n\n### `delimiters`\n\nType: `Array[...String, String]`<br>\nDefault: `['\\b', '\\b']`\n\nSpecifies the boundaries around which strings will be replaced. By default, delimiters are [word boundaries](https://www.regular-expressions.info/wordboundaries.html). See [Word Boundaries](#word-boundaries) below for more information.\n\n### `exclude`\n\nType: `String` | `Array[...String]`<br>\nDefault: `null`\n\nA [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should _ignore_. By default no files are ignored.\n\n### `include`\n\nType: `String` | `Array[...String]`<br>\nDefault: `null`\n\nA [minimatch pattern](https://github.com/isaacs/minimatch), or array of patterns, which specifies the files in the build the plugin should operate on. By default all files are targeted.\n\n## Word Boundaries\n\nBy default, values will only match if they are surrounded by _word boundaries_.\n\nConsider the following options and build file:\n\n```js\nmodule.exports = {\n  ...\n  plugins: [replace({ changed: 'replaced' })]\n};\n```\n\n```js\n// file.js\nconsole.log('changed');\nconsole.log('unchanged');\n```\n\nThe result would be:\n\n```js\n// file.js\nconsole.log('replaced');\nconsole.log('unchanged');\n```\n\nTo ignore word boundaries and replace every instance of the string, wherever it may be, specify empty strings as delimiters:\n\n```js\nexport default {\n  ...\n  plugins: [\n    replace({\n      changed: 'replaced',\n      delimiters: ['', '']\n    })\n  ]\n};\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/replace","type":"git"},"users":{"takez0":true,"flumpus-dev":true},"bugs":{"url":"https://github.com/rollup/plugins/issues"},"license":"MIT","versions":{"2.2.0":{"name":"@rollup/plugin-replace","version":"2.2.0","publishConfig":{"access":"public"},"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/packages/replace/#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/rollup-plugin-replace.cjs.js","scripts":{"build":"rollup -c","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","ci:coverage:submit":"curl -s https://codecov.io/bash | bash -s - -F beep","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 && pnpm run test:ts","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","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"npm run build","prepublishOnly":"npm run lint && npm run test","pretest":"npm run build","security":"echo 'pnpm needs `npm audit` support'","test":"ava","test:ts":"tsc index.d.ts test/types.ts --noEmit"},"keywords":["rollup","plugin","replace","es2015","npm","modules"],"peerDependencies":{"rollup":"^1.20.0"},"dependencies":{"magic-string":"^0.25.2","rollup-pluginutils":"^2.6.0","typescript":"^3.4.3"},"devDependencies":{"del-cli":"^3.0.0","locate-character":"^2.0.5","rollup":"^1.20.0","rollup-plugin-buble":"^0.19.6","source-map":"^0.7.3"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"module":"dist/rollup-plugin-replace.es.js","description":"[cover]: https://codecov.io/gh/rollup/plugins/replace/branch/master/graph/badge.svg [cover-url]: https://codecov.io/gh/rollup/plugins [size]: https://packagephobia.now.sh/badge?p=@rollup/plugin-replace [size-url]: https://packagephobia.now.sh/result?p=@ro","_id":"@rollup/plugin-replace@2.2.0","_nodeVersion":"12.3.1","_npmVersion":"6.11.2","dist":{"shasum":"e3b11881fb1ab1be7570e1ccd175b8249e448c52","size":5048,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-2.2.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/plugin-replace_2.2.0_1572270406838_0.9118245793933835"},"_hasShrinkwrap":false,"publish_time":1572270406934,"_cnpm_publish_time":1572270406934},"2.2.1":{"name":"@rollup/plugin-replace","version":"2.2.1","publishConfig":{"access":"public"},"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/packages/replace/#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/rollup-plugin-replace.cjs.js","scripts":{"build":"rollup -c","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","ci:coverage:submit":"curl -s https://codecov.io/bash | bash -s - -F replace","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 && pnpm run test:ts","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","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"npm run build","prepublishOnly":"npm run lint && npm run test","pretest":"npm run build","security":"echo 'pnpm needs `npm audit` support'","test":"ava","test:ts":"tsc index.d.ts test/types.ts --noEmit"},"keywords":["rollup","plugin","replace","es2015","npm","modules"],"peerDependencies":{"rollup":"^1.20.0"},"dependencies":{"magic-string":"^0.25.2","rollup-pluginutils":"^2.6.0"},"devDependencies":{"del-cli":"^3.0.0","locate-character":"^2.0.5","rollup":"^1.20.0","rollup-plugin-buble":"^0.19.6","source-map":"^0.7.3","typescript":"^3.4.3"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"module":"dist/rollup-plugin-replace.es.js","description":"[cover]: https://codecov.io/gh/rollup/plugins/branch/master/graph/badge.svg [cover-url]: https://codecov.io/gh/rollup/plugins [size]: https://packagephobia.now.sh/badge?p=@rollup/plugin-replace [size-url]: https://packagephobia.now.sh/result?p=@rollup/plu","_id":"@rollup/plugin-replace@2.2.1","_nodeVersion":"12.13.0","_npmVersion":"6.12.0","dist":{"shasum":"94af20cb3d70cccdcec991d1f97dd373936ec544","size":5069,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-2.2.1.tgz"},"maintainers":[{"name":"guybedford","email":"guybedford@gmail.com"},{"name":"lukastaegert","email":"lukas.taegert@tngtech.com"},{"name":"shellscape","email":"andrew@shellscape.org"}],"_npmUser":{"name":"rich_harris","email":"richard.a.harris@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/plugin-replace_2.2.1_1573063423417_0.11800771068995997"},"_hasShrinkwrap":false,"publish_time":1573063423572,"_cnpm_publish_time":1573063423572},"2.3.0":{"name":"@rollup/plugin-replace","version":"2.3.0","publishConfig":{"access":"public"},"description":"Replace strings in files while bundling","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/packages/replace/#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/rollup-plugin-replace.cjs.js","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 && pnpm run test:ts","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","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"pnpm run build","prepublishOnly":"pnpm run lint && pnpm run test","pretest":"pnpm run build","test":"ava","test:ts":"tsc index.d.ts test/types.ts --noEmit"},"keywords":["rollup","plugin","replace","es2015","npm","modules"],"peerDependencies":{"rollup":"^1.20.0"},"dependencies":{"magic-string":"^0.25.2","rollup-pluginutils":"^2.6.0"},"devDependencies":{"del-cli":"^3.0.0","locate-character":"^2.0.5","rollup":"^1.20.0","rollup-plugin-buble":"^0.19.6","source-map":"^0.7.3","typescript":"^3.4.3"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"module":"dist/rollup-plugin-replace.es.js","_id":"@rollup/plugin-replace@2.3.0","_nodeVersion":"12.3.1","_npmVersion":"6.11.2","dist":{"shasum":"86d88746383e40dd81cffb5216449cc51a734eb9","size":5086,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-2.3.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/plugin-replace_2.3.0_1576963300035_0.016844495770841128"},"_hasShrinkwrap":false,"publish_time":1576963300212,"_cnpm_publish_time":1576963300212},"2.3.1":{"name":"@rollup/plugin-replace","version":"2.3.1","publishConfig":{"access":"public"},"description":"Replace strings in files while bundling","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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/rollup-plugin-replace.cjs.js","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 && pnpm run test:ts","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","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prebuild":"del-cli dist","prepare":"pnpm run build","prepublishOnly":"pnpm run lint && pnpm run test","pretest":"pnpm run build","test":"ava","test:ts":"tsc index.d.ts test/types.ts --noEmit"},"keywords":["rollup","plugin","replace","es2015","npm","modules"],"peerDependencies":{"rollup":"^1.20.0"},"dependencies":{"@rollup/pluginutils":"^3.0.4","magic-string":"^0.25.5"},"devDependencies":{"@rollup/plugin-buble":"^0.21.0","del-cli":"^3.0.0","locate-character":"^2.0.5","rollup":"^1.27.14","source-map":"^0.7.3","typescript":"^3.7.4"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"module":"dist/rollup-plugin-replace.es.js","_id":"@rollup/plugin-replace@2.3.1","_nodeVersion":"12.3.1","_npmVersion":"6.11.2","dist":{"shasum":"16fb0563628f9e6c6ef9e05d48d3608916d466f5","size":5134,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-2.3.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/plugin-replace_2.3.1_1580581599917_0.1132356350503616"},"_hasShrinkwrap":false,"publish_time":1580581600018,"_cnpm_publish_time":1580581600018},"2.3.2":{"name":"@rollup/plugin-replace","version":"2.3.2","publishConfig":{"access":"public"},"description":"Replace strings in files while bundling","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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/rollup-plugin-replace.cjs.js","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 && pnpm run test:ts","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 test","pretest":"pnpm run build","test":"ava","test:ts":"tsc types/index.d.ts test/types.ts --noEmit"},"keywords":["rollup","plugin","replace","es2015","npm","modules"],"peerDependencies":{"rollup":"^1.20.0 || ^2.0.0"},"dependencies":{"@rollup/pluginutils":"^3.0.8","magic-string":"^0.25.5"},"devDependencies":{"@rollup/plugin-buble":"^0.21.0","del-cli":"^3.0.0","locate-character":"^2.0.5","rollup":"^2.0.0","source-map":"^0.7.3","typescript":"^3.7.4"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"module":"dist/rollup-plugin-replace.es.js","types":"types/index.d.ts","_id":"@rollup/plugin-replace@2.3.2","_nodeVersion":"12.15.0","_npmVersion":"6.14.4","dist":{"shasum":"da4e0939047f793c2eb5eedfd6c271232d0a033f","size":5182,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-2.3.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/plugin-replace_2.3.2_1587255885386_0.6042366204665022"},"_hasShrinkwrap":false,"publish_time":1587255885529,"_cnpm_publish_time":1587255885529},"2.3.3":{"name":"@rollup/plugin-replace","version":"2.3.3","publishConfig":{"access":"public"},"description":"Replace strings in files while bundling","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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/rollup-plugin-replace.cjs.js","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 && pnpm run test:ts","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 test","pretest":"pnpm run build","test":"ava","test:ts":"tsc types/index.d.ts test/types.ts --noEmit"},"keywords":["rollup","plugin","replace","es2015","npm","modules"],"peerDependencies":{"rollup":"^1.20.0 || ^2.0.0"},"dependencies":{"@rollup/pluginutils":"^3.0.8","magic-string":"^0.25.5"},"devDependencies":{"@rollup/plugin-buble":"^0.21.0","del-cli":"^3.0.0","locate-character":"^2.0.5","rollup":"^2.0.0","source-map":"^0.7.3","typescript":"^3.7.4"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"module":"dist/rollup-plugin-replace.es.js","types":"types/index.d.ts","_id":"@rollup/plugin-replace@2.3.3","_nodeVersion":"14.1.0","_npmVersion":"6.14.4","dist":{"shasum":"cd6bae39444de119f5d905322b91ebd4078562e7","size":5283,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-2.3.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/plugin-replace_2.3.3_1591364798640_0.8641087433708436"},"_hasShrinkwrap":false,"publish_time":1591364798749,"_cnpm_publish_time":1591364798749},"2.3.4":{"name":"@rollup/plugin-replace","version":"2.3.4","publishConfig":{"access":"public"},"description":"Replace strings in files while bundling","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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/rollup-plugin-replace.cjs.js","module":"dist/rollup-plugin-replace.es.js","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 && pnpm run test:ts","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 test","pretest":"pnpm run build","test":"ava","test:ts":"tsc types/index.d.ts test/types.ts --noEmit"},"keywords":["rollup","plugin","replace","es2015","npm","modules"],"peerDependencies":{"rollup":"^1.20.0 || ^2.0.0"},"dependencies":{"@rollup/pluginutils":"^3.1.0","magic-string":"^0.25.7"},"devDependencies":{"@rollup/plugin-buble":"^0.21.3","del-cli":"^3.0.1","locate-character":"^2.0.5","rollup":"^2.23.0","source-map":"^0.7.3","typescript":"^3.9.7"},"types":"types/index.d.ts","ava":{"babel":{"compileEnhancements":false},"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"_id":"@rollup/plugin-replace@2.3.4","_nodeVersion":"12.18.1","_npmVersion":"6.14.5","dist":{"shasum":"7dd84c17755d62b509577f2db37eb524d7ca88ca","size":5543,"noattachment":false,"tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-2.3.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/plugin-replace_2.3.4_1603766708762_0.5025378209063345"},"_hasShrinkwrap":false,"publish_time":1603766708923,"_cnpm_publish_time":1603766708923},"2.4.0":{"name":"@rollup/plugin-replace","version":"2.4.0","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@2.4.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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"babel":{"compileEnhancements":false},"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"dist":{"shasum":"ec80629a0a922ec53719f2dea2f7714fb9231031","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-2.4.0.tgz","fileCount":8,"integrity":"sha512-QGuKCj9fTegKtLh1zsxNWP5uVmUctbFOG9S8wIir5dDO7qzGyISmwrQjlyEN0H7ptz60+CFeVFi5x4aDQ5+L6g==","signatures":[{"sig":"MEQCIBMqt5a9e4qwzc5c2iDYe/5txkIdZqo/XGkIniufwX3TAiASn1lqmhau9ykqvy4KWDx6Cn/6GSDzv3DUIo4pNJQVtQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20648,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgMwLmCRA9TVsSAnZWagAAve0P+wUNYZM53fpHD9olUkZu\nIfqJBVi/C68gOit+52ribSpbbiy+EUFmUoAG0G+jJjhVM4tomMSddKC0N0B7\nhDhcnbKznGJDzKdul8OHyog/mNmYxoicpsxERR0a6tsIRcxYgUZlMqao4zfM\nqFYyU0VrK/EK8x+Bq2vlkZD1LTQrQ4Z1EffYsVDnFd8lo4T9932VA5n/4wle\n3UwjAfNnlhqyMdQIeRnDgP6ev1ZuIRuYusbu53TPIjgxBnK3uwzVZuFbfhUy\nXLMVPEmqCANUZ3xlx9qig8Ew/uCkkgUI/t4J1vGsDIkqlVljvDk+IPN8fUkl\nFcqRsZfanf2MNkobftHvkNQRxiu4iGzC33zjz/WygDHgwdk5faka1TiaKhGW\nt+c4QWDzyRyR5Z3GUjSgaxaDBSG/67hf/lnIKp+dNZSPbl7vp2tf8Oz2Mzp0\nXeTkUmeparz6DfURoFKkvGp+9k5MUU2U3BLr4LoSHpCYhiKHcwnUPAeMkXUo\nR/FZBEzEimWGMkxhXehvC86jC0IHDoSPJjIa7HsVPSGw9jw71dMLyXa4dc/7\n19LtJMz9LZuiljJKPzXdw3V78+XdPIYdo7jwp+ebo5JcSLLKtQTWcGHFOjSE\nLoDDCAIdyekdWaZ99kuaOTR8G5lwHNutRgmshTP7Yk3YAeRq/XuHGNqLVVYP\n9exr\r\n=WEgU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/rollup-plugin-replace.cjs.js","types":"types/index.d.ts","module":"dist/rollup-plugin-replace.es.js","scripts":{"lint":"pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package","test":"ava","build":"rollup -c","ci:lint":"pnpm run build && pnpm run lint","ci:test":"pnpm run test -- --verbose && pnpm run test:ts","lint:js":"eslint --fix --cache src test types --ext .js,.ts","prepare":"pnpm run build","pretest":"pnpm run build","test:ts":"tsc types/index.d.ts test/types.ts --noEmit","prebuild":"del-cli dist","lint:docs":"prettier --single-quote --arrow-parens avoid --trailing-comma none --write README.md","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prepublishOnly":"pnpm run lint && pnpm run test","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","type":"git"},"_npmVersion":"6.14.5","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"12.18.1","dependencies":{"magic-string":"^0.25.7","@rollup/pluginutils":"^3.1.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^2.23.0","del-cli":"^3.0.1","source-map":"^0.7.3","typescript":"^3.9.7","locate-character":"^2.0.5","@rollup/plugin-buble":"^0.21.3"},"peerDependencies":{"rollup":"^1.20.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_2.4.0_1613955814092_0.15554943812538435","host":"s3://npm-registry-packages"}},"2.4.1":{"name":"@rollup/plugin-replace","version":"2.4.1","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@2.4.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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"babel":{"compileEnhancements":false},"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"dist":{"shasum":"c411b5ab72809fb1bfc8b487d8d02eef661460d3","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-2.4.1.tgz","fileCount":8,"integrity":"sha512-XwC1oK5rrtRJ0tn1ioLHS6OV5JTluJF7QE1J/q1hN3bquwjnVxjtMyY9iCnoyH9DQbf92CxajB3o98wZbP3oAQ==","signatures":[{"sig":"MEYCIQCgd340xy8RWsWcBEOQ7HQqa21vuqd5aDH7jkyuGNs7hAIhAJvKwLxRKAcbLBV7jvrDzVODP1xkgJtTOZCtrc7UsEjx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20946,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgM+zjCRA9TVsSAnZWagAALjsP/Aq3KstUcoVh5fHhFFlB\nGlW9hE+xIICHUg7cE5BH8CeyB5ccZmdNIIr9G1Q1i0putN63OFDPGeS6P35I\n1exaJbAXzZNNfTLWna9UStYgSwbqiKIkAoRwCCvaeWaQF7cvEhQcFCGXUVWx\nJ9f5/3dg+YfvcTyjAU2ILh+E+2o23D+RPd2m6PDzznVEKlJ11jBfMopGa5ya\njS5b3mQH/ksfbBi81RQ4Rqy0VPQre5Mshfhl7HQ/3Rk8SiadR8ujsdbfOJOW\nYE3GE6McFrxQ8gi0azkCBpjs1FI58qxAtYU/yHIUOnQI+rOc/Oz7/ZGfdGnZ\n8hbvcMHJCEY9jkGYOdwycSc5gq0gfbfNS0vxBRc2btrsxHdEZn5/pA78OZ4M\nyM3Ki6Ylw1gSlI3cKOprDHy2qV4hss6Y0LpRNAP8SfmLvTD781j+QUZ1y4xG\n0N1qg19aoAs2+QYvQZpd1FBQ27mW45AK3n4hJcmY/wQsLeWaRiUyTHNQg3G8\nwMR/78uVMZAT4bDY0LRlFHzTUE9yMD7aXjqJ/BRaZhcZAkuqzL0yWY/poFVB\nAfxw3zxEmLM+xV3VoIBl/mvVdbcK/xN6olMRq8opQEkM+H+p45EaO3HzrNpR\nFS35QGOxritfHksL26lnJFbcMexMfHJrAYlkQSBPoKAyqjyqEYSAPXdUhoJt\np78W\r\n=1/0U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/rollup-plugin-replace.cjs.js","types":"types/index.d.ts","module":"dist/rollup-plugin-replace.es.js","scripts":{"lint":"pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package","test":"ava","build":"rollup -c","ci:lint":"pnpm run build && pnpm run lint","ci:test":"pnpm run test -- --verbose && pnpm run test:ts","lint:js":"eslint --fix --cache src test types --ext .js,.ts","prepare":"pnpm run build","pretest":"pnpm run build","test:ts":"tsc types/index.d.ts test/types.ts --noEmit","prebuild":"del-cli dist","lint:docs":"prettier --single-quote --arrow-parens avoid --trailing-comma none --write README.md","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prepublishOnly":"pnpm run lint && pnpm run test","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","type":"git"},"_npmVersion":"6.14.5","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"12.18.1","dependencies":{"magic-string":"^0.25.7","@rollup/pluginutils":"^3.1.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^2.23.0","del-cli":"^3.0.1","source-map":"^0.7.3","typescript":"^3.9.7","locate-character":"^2.0.5","@rollup/plugin-buble":"^0.21.3"},"peerDependencies":{"rollup":"^1.20.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_2.4.1_1614015715236_0.7081498609850083","host":"s3://npm-registry-packages"}},"2.4.2":{"name":"@rollup/plugin-replace","version":"2.4.2","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@2.4.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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"babel":{"compileEnhancements":false},"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"dist":{"shasum":"a2d539314fbc77c244858faa523012825068510a","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz","fileCount":8,"integrity":"sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==","signatures":[{"sig":"MEUCIQCLUSE7DB+Ti+0y4IuothrFvv6wEGpC55kBV1Ahi57HAgIgDNDIw8Xhx/PjJRMTKzXxv4dPQkFaOdeCXHdTCGwEd1Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21519,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgXivbCRA9TVsSAnZWagAAhaUP/2K36S8GgN6HrfmjdjTF\nSTwuDA0HbG6IFh8CR+vj4VU/YIwt3/K60VkYwVcizBPY5csWPHfWs6sJx8yT\nqz6kCRUUu2xogwF6c80jrfRLkJQnBLG+kwpQx8Vp+AdP4DCBo5w1kXPMb2rS\nyaxLi9l5w08thn4WfB8LSubtmkhu6ced9WgUp09A0/SMePNIIN59rPpUntnu\nJcqA/VJJvM0dfjZZ4NwdH06WppIeSpDDGy1ayyokGrBDnmq5/b9pfUXuqora\nI+EhzNECH9XheT5DvDfzwNWBOArxSXm1EJeJEFOR858FzGiKPti87jfMMQtg\ncQ+RZvV7iBgxG8ckr0ymbM/TAzweX08vc5fjRMNMR/SjsDALuTlAH7o1GwbE\npup+lN2NXzewA6iy++J++eF5IZbS8VvoLFTrXETSP6jvtsLQeeLWr7Q3hOLM\nP0ehyuZO4NqOMkDQb4Rgj+8qqjchIuGESpFJvFOrsJGN/Q+/BVXMpW3/ao2L\nl56tk2qZkYTvteLf5ClENz4AIxrrYGM+IY28uIBzifAlBxq7a0Lnxwwyckgb\nYuuF75uwcf0j2bhs17dP5w6r1jiwa9xD+s6K9ULXkTKabKdWQXzyWYL9YvJa\nf3R4YKNFkD8aSR3AJX3IuSSW/rp/f9Bpyo3jsESBeGzaXZl5BucJXt+0Bdpr\nsogp\r\n=Sh2q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/rollup-plugin-replace.cjs.js","types":"types/index.d.ts","module":"dist/rollup-plugin-replace.es.js","scripts":{"lint":"pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package","test":"ava","build":"rollup -c","ci:lint":"pnpm run build && pnpm run lint","ci:test":"pnpm run test -- --verbose && pnpm run test:ts","lint:js":"eslint --fix --cache src test types --ext .js,.ts","prepare":"pnpm run build","pretest":"pnpm run build","test:ts":"tsc types/index.d.ts test/types.ts --noEmit","prebuild":"del-cli dist","lint:docs":"prettier --single-quote --arrow-parens avoid --trailing-comma none --write README.md","ci:coverage":"nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov","lint:package":"prettier --write package.json --plugin=prettier-plugin-package","prepublishOnly":"pnpm run lint && pnpm run test","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","type":"git"},"_npmVersion":"6.14.5","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"12.18.1","dependencies":{"magic-string":"^0.25.7","@rollup/pluginutils":"^3.1.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^2.23.0","del-cli":"^3.0.1","source-map":"^0.7.3","typescript":"^3.9.7","locate-character":"^2.0.5","@rollup/plugin-buble":"^0.21.3"},"peerDependencies":{"rollup":"^1.20.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_2.4.2_1616784347177_0.8370490505382946","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"@rollup/plugin-replace","version":"3.0.0","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@3.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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"babel":{"compileEnhancements":false},"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"dist":{"shasum":"3a4c9665d4e7a4ce2c360cf021232784892f3fac","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-3.0.0.tgz","fileCount":7,"integrity":"sha512-3c7JCbMuYXM4PbPWT4+m/4Y6U60SgsnDT/cCyAyUKwFHg7pTSfsSQzIpETha3a3ig6OdOKzZz87D9ZXIK3qsDg==","signatures":[{"sig":"MEYCIQCxlEHblKjsw/om5Xiw0hWypn7QtgJyGEAk9jAzb0by2gIhANaPCUzLxRDmRXDVSHdwOuuWBOy1xuM+6mqU34pmb1Oa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20588,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg8ZfqCRA9TVsSAnZWagAAql0P/24gk8sei5TWpwLs52Lv\nodtGPt/Zg8PZZHbQdyA/HdfJx9t+z5FTw3B8si4OiO+DWwz7/GStUqxFhj1s\n9HzN4ODjnHGJ8kVdmzXt8O8k3ZHj+Elh83IWtjbuKGULkiz5vUclo+usi8Es\nVbGpc7xiu7GX3ld+u8m3/5Xzu4o16B7zIGjepUDKdJkwBEpjUdA++jOAU/5N\nLpMlHDo0VzAhud0VJWk+3T4rJ+nbJCTQrhqC9X7HRwvVCiYyCkQUf9btR11+\nMCSTp1B3NdESf9bo5TKnl3mGq+5QzQnOomRfw9Bed0MNor1D0KfcRqQQz/q4\notBBeiBg/JUAXhCa0YvemJ+GqfhAXc2hCIQMZ7QTGLRQQl0iDVvL+WiVbNdJ\njlWScWrIAMkoGlDE8hNIeW1JMh5gVqa1VDDJ35hZS8utwJ1lewJN1/WqMe8w\nTs0Mnuxhzu8bD1dRWidQOEETIxumWNTA9WwYL9fUD4daa0ITKnVoYymZdSrX\nJ5nkRCdF2enz8Zm9PvAN90pm6cWr3ojftMGthhsPNi8nwbqNLKZLuDUDOAZb\nprgreb94AQ4lBANQJfmUAd8Oy8fL9/l35+kIGvi0JnI0Mh6y877YTqLVZRjz\ngpcfCu4HPBVC2dOhS95om7W7IgmUkeEflY662U6BXGXBAXEaaP4EHPjTTg+G\n6swD\r\n=XMAJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/rollup-plugin-replace.cjs.js","types":"types/index.d.ts","module":"dist/rollup-plugin-replace.es.js","scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose && pnpm test:ts","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build","release":"pnpm plugin:release --workspace-root -- --pkg $npm_package_name","test:ts":"tsc types/index.d.ts test/types.ts --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/replace"},"_npmVersion":"6.14.13","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"14.17.3","dependencies":{"magic-string":"^0.25.7","@rollup/pluginutils":"^3.1.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^2.23.0","del-cli":"^3.0.1","source-map":"^0.7.3","typescript":"^3.9.7","locate-character":"^2.0.5","@rollup/plugin-buble":"^0.21.3"},"peerDependencies":{"rollup":"^1.20.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_3.0.0_1626445802351_0.08675987448651412","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"@rollup/plugin-replace","version":"3.0.1","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@3.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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"babel":{"compileEnhancements":false},"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"dist":{"shasum":"f774550f482091719e52e9f14f67ffc0046a883d","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-3.0.1.tgz","fileCount":7,"integrity":"sha512-989J5oRzf3mm0pO/0djTijdfEh9U3n63BIXN5X7T4U9BP+fN4oxQ6DvDuBvFaHA6scaHQRclqmKQEkBhB7k7Hg==","signatures":[{"sig":"MEQCIHdd3hCxxVxPb6nuSQzy7Qhvd1k9Rm9dzRNyopHymU7tAiAUrn5whJKEkK8kUcGcQgwelFUnHu/klWdZXu0EFrkzWg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20908,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhy1y/CRA9TVsSAnZWagAAGIAP/i+yJycZlWXbdsFarTlY\nlxbLFja4AYWCyNkkUVyUY78ZzwcXlQPixDBJe36uV+2Lv95KdCJ6T46OepyE\nbxbb581EZkLyRMcPR7nSojcFIQTqBpPuuLS0zQTypZd+/UVLV0tlS22I/n1v\nDCj2d1NVblzQLkIN9HpIZbNYCrdZIyt+s0aDZ9KPjS0Ypgy9pY4nhsTyI2qB\n+UC9r1L46gj5AB3GgoVGTYQrb7ECrDXfcVOLREC/CKaUr3QAqHhbKOah3TJy\noxPS1cKJlc36psNykNRa1Myjtm7fh7SteS/EV9ooLEG31h393X1xU5Gfkbdw\n/gvSalrE4HgyKFkrzGvD+sRuJeVGkzMEshwrgtM1LLw0X/bdh/2k/U3/riBb\nD78yXnrc9XjfJTk39EvpzWrcI1+R0Ikh2qBvQOhGVv70Cy3sxLFvFoLb+MV3\nV41QoCWm8xuA565AHo9zjcehn+Rpz3FN/cEyh7JN7JDGdDk2Mg8NHjDLXW7O\nU/2vL71YZZQVRE95RAdmc15SpLfWolqw7Nq6WUeGQH7+820Qy2cjWoPznCaJ\nYED0mpFaK6iW/irMQ6oXnihNAUr+N7a4rPSTG+CLwB6kanKSk/y496Uh4AwM\nzWD1guUd6T6icWapqowi8a9SDDm/d+AdUSbAA8kF4J8XEPGoMUWPZqoBwOnD\nHSyW\r\n=jNsw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/rollup-plugin-replace.cjs.js","types":"types/index.d.ts","module":"dist/rollup-plugin-replace.es.js","scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose && pnpm test:ts","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build","release":"pnpm plugin:release --workspace-root -- --pkg $npm_package_name","test:ts":"tsc types/index.d.ts test/types.ts --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/replace"},"_npmVersion":"6.14.15","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"14.18.2","dependencies":{"magic-string":"^0.25.7","@rollup/pluginutils":"^3.1.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^2.23.0","del-cli":"^3.0.1","source-map":"^0.7.3","typescript":"^3.9.7","locate-character":"^2.0.5","@rollup/plugin-buble":"^0.21.3"},"peerDependencies":{"rollup":"^1.20.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_3.0.1_1640717503039_0.9538635753236544","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"@rollup/plugin-replace","version":"3.1.0","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@3.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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"babel":{"compileEnhancements":false},"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"dist":{"shasum":"d31e3a90c6b47064f3c9f2ce0ded5bcf0d3b82f6","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-3.1.0.tgz","fileCount":7,"integrity":"sha512-pA3XRUrSKybVYqmH5TqWNZpGxF+VV+1GrYchKgCNIj2vsSOX7CVm2RCtx8p2nrC7xvkziYyK+lSi74T93MU3YA==","signatures":[{"sig":"MEYCIQD3U4/toPWb6Jxcomr+qAGKx4+P+SnVZkxxO3x0uUjZJwIhALaZo7PBofIoBKuYZkRvwgngh2sb04IFEnn+1XkZGcKN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27051,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiBuW0CRA9TVsSAnZWagAAoYQP/2xRtGYQaeM6ErOksG5K\nQ7jK69y/LVQ/1xJD3BaFM1Wj4uCRf4SRT7M7RcHk+Ky8XcDt28BdfltEye80\nNC+2lDM6BTP9zeYWypPk70mTfuv1U+mokkpHJ3EIK2aKVdQPYO5CpOQhqwIp\nOHPB8OQQ5eHBp2OfPXcDEF6EfZEatVels0cxxgxlPGoTkHyx7LsWES40HBMS\n2MYnthu8vNdRJoci3H258ImvstF7kJ14PXkMyr2Z0FsDLYRf3tLmQLWa6Y3y\nMWTRRWs2bR2UO/sTar8IhSxIY8CuppyXb+yB7nlGscHTUCJZjzuZvK1Y8wS9\n7bbLoUgc09yL+nnZCwtPxAa8eAhaV7Vur9bYVcWlmXwCURvf/0fE5O6swRrq\naITnLaWd3CDWegBnAR244QrCgR5l78ZV6UtBWVfNND3R5+i9VshgsFRu9iA4\n1grVhEmJP3j+mO8p1N/Qa0XV0Ls8HlwqttChMr9Sya/PO6ZtnivBAGXPSJh5\naGbjUlAfPCtt2SqK9zJ82J2CIxBzEqw6thpLW0QAzugOUVXffoLGstCzwHha\n60DtPzf2UfM7ix7bjmaCUDOHyCzcSbdARYEOHsjXnlI7zlPu6pKJEDsnP0iX\nhZsTTrnYAKknOpChAr69/C8rhAj3nHV87pJQG5t2kJYV3Xj4FC84AZCOZQJ+\n/5aG\r\n=GCVU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/rollup-plugin-replace.cjs.js","types":"types/index.d.ts","module":"dist/rollup-plugin-replace.es.js","scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose && pnpm test:ts","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build","release":"pnpm plugin:release --workspace-root -- --pkg $npm_package_name","test:ts":"tsc types/index.d.ts test/types.ts --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/replace"},"_npmVersion":"6.14.16","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"14.19.0","dependencies":{"magic-string":"^0.25.7","@rollup/pluginutils":"^3.1.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^2.23.0","del-cli":"^3.0.1","source-map":"^0.7.3","typescript":"^3.9.7","locate-character":"^2.0.5","@rollup/plugin-buble":"^0.21.3"},"peerDependencies":{"rollup":"^1.20.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_3.1.0_1644619188327_0.2787109090614863","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"@rollup/plugin-replace","version":"4.0.0","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@4.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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"babel":{"compileEnhancements":false},"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"]},"dist":{"shasum":"e34c457d6a285f0213359740b43f39d969b38a67","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-4.0.0.tgz","fileCount":7,"integrity":"sha512-+rumQFiaNac9y64OHtkHGmdjm7us9bo1PlbgQfdihQtuNxzjpaB064HbRnewUOggLQxVCCyINfStkgmBeQpv1g==","signatures":[{"sig":"MEUCIQDknf7PNxPm0Nu+SiWHaUdWPDw3m+jdubH4zwEaexyZMAIgECFca5K2hcT3EbrIYZl/DUqBEZGdRkrxGj51+ZzCj3E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27159,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiFWlqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmopsBAAjL24VJTn4by8l+ekWPP5b4PXlX90BaiXUI4lhUDyudjr7lci\r\nSvpHJtGw6l7ZZSh0houvCkNj8EMxV9zlUxpTgX1Xx/4g7KxOESdCjQJU4jCC\r\nu35xAQ8h3gEp1WHJ/sFau4YL4WOMRugfj0egK5dePZFWTOZgrQMh131wgmN0\r\n2S2HydZ/1JW+cZteNN+wV1PV164O1meZ3Krw10mqKoAxk4LQoEocpmkKFGxB\r\nZ1v5lsiKwpRJKc6GG7lkgR3d939isRbk6ypc4XIYKKo98Hn+UghNku2kSZNW\r\nBYu329RK/6LOXVrzVOQuuRutQeo7XEWorOEJ4Y2dKD1aZVRCAMJ5Ftn95vmZ\r\nLQ+rLAQU+MIou0a68xEMaXIz2Gmz9JNPm/o8gZVD3gC1NuUkaUh8SOLBktkO\r\nilARtLcdmtZDJ+83qm7O2faMOmrCy2Z0j9BHxiYblGZuzd/2Xm1LU98R+mKr\r\noPQe/LZ2GYqRBzmUQn9qK5XdM45fCan6n57YDc4DkIUGk+5g31f/s3kjfBu7\r\nO61/r+BQukj1KaZV0oG/bPdg4FR19bu3VnMnVg6pM7pTTnFOyYKiKtZxo6hr\r\nXC3o5cVO78XVNzmBtLo5rFs4yhFsBv+NDS+okzLs6iN5IlAuEYmVn5mFpoRk\r\nxF63FqeXFgRar0wo0I4l3odbq2LpIvgck6Y=\r\n=36w6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/rollup-plugin-replace.cjs.js","types":"types/index.d.ts","module":"dist/rollup-plugin-replace.es.js","scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose && pnpm test:ts","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build","release":"pnpm plugin:release --workspace-root -- --pkg $npm_package_name","test:ts":"tsc types/index.d.ts test/types.ts --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/replace"},"_npmVersion":"6.14.16","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"14.19.0","dependencies":{"magic-string":"^0.25.7","@rollup/pluginutils":"^3.1.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^2.67.3","del-cli":"^3.0.1","source-map":"^0.7.3","typescript":"^3.9.7","locate-character":"^2.0.5","@rollup/plugin-buble":"^0.21.3"},"peerDependencies":{"rollup":"^1.20.0 || ^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_4.0.0_1645570410242_0.776503140207286","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"@rollup/plugin-replace","version":"5.0.0","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"workerThreads":false},"dist":{"shasum":"5c0384f3a5dc6016c8fb6884d1c68036e6af2a6b","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-5.0.0.tgz","fileCount":7,"integrity":"sha512-TiPmjMuBjQM+KLWK16O5TAM/eW4yXBYyQ17FbfeNzBC1t2kzX2aXoa8AlS9XTSmg6/2TNvkER1lMEEeN4Lhavw==","signatures":[{"sig":"MEUCIQDC4LFyWWzDE0gYfaBo4YZa7WsKW2E7Up0/O8+wb8xtvwIgZ/ggLmrvAMSMx60n3WdbjIYzr5wtcqcWO43e5/hC92Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24820,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRAgCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrtVw//cZVHKirdNnxt/RWT6gI1Lxi8EL33bR78QlOYiXG1xbmDDhKE\r\nQ3VJMvNqTtV/wKQGPNqMKw2KvEL1+xLrGDq+nzXvVviRrddBiZ2KN1Fn6loJ\r\n+cretGcoJ7L57pe5s4km+ZBm8idSLzK2JSrhD3kwOD1dhsG8uQA1Bp+7+zc1\r\nMFYseJmY5Oc9U41yTuPY6LtaKV2Avnj2vGr69hkQ13j2AS3Wf+akGTAkuS8n\r\nN+KSakqp4lYe8lVNtdHBG1YcRsdGcS9tKOZFwk5jYREOOq8MF947TZ7STVLL\r\nyNgg8WlQkgLfs7sBbTdn9ijtEBu29rJQAWiqFkJ8JyLVwDCUAGcbxTGq6iNQ\r\nKm5izr+M2zasfrTJ2QBmKExw6g+T7/Br/zHh+UQWJLo6Cfb14gxVMUPd/cMm\r\nDNXZdLiaJvmt1AdbcPcDBW/S4afLDWT+wcQzDdiN0iCWWaUcuXnpgsVd6F5W\r\nnX4jVO/Sm74uLDRUw5cd1qBl4sEBpPA2HGnZl5OMZA4DcO3Jvc5UjjD8VD+Y\r\n2j22xccFlyg5/WI+nSGd5JmZx7wgRllvN6zYHL3iajC5GaARlB2ZivGVMjYx\r\nkC984AC4jSrzIw1YFEV+Xdof4oo5Rk7prZeQ8p6YxKG1mlQiKHfzQ0SYFqCG\r\naM7p3bxdA3XtcX9bOiYE500T+yV2DDN9myc=\r\n=UQdK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs/index.js","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":"692446ca30a824919afac91c494d9b5f84ac9ca5","scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose && pnpm test:ts","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build","release":"pnpm --workspace-root plugin:release --pkg $npm_package_name","test:ts":"tsc types/index.d.ts test/types.ts --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/replace"},"_npmVersion":"8.19.2","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"18.10.0","dependencies":{"magic-string":"^0.26.4","@rollup/pluginutils":"^4.2.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^3.0.0-7","del-cli":"^5.0.0","source-map":"^0.7.4","typescript":"^4.8.3","locate-character":"^2.0.5","@rollup/plugin-buble":"^0.21.3"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_5.0.0_1665402882123_0.6461502098930372","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"@rollup/plugin-replace","version":"5.0.1","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"workerThreads":false},"dist":{"shasum":"49a57af3e6df111a9e75dea3f3572741f4c5c83e","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-5.0.1.tgz","fileCount":7,"integrity":"sha512-Z3MfsJ4CK17BfGrZgvrcp/l6WXoKb0kokULO+zt/7bmcyayokDaQ2K3eDJcRLCTAlp5FPI4/gz9MHAsosz4Rag==","signatures":[{"sig":"MEYCIQDtsGQ+piUgNWcoiJA22DjlReAmVpjX9ijBsJKVqoAIBgIhAPC0iACUcrkM70MFb6zF1gpkEYzCBSX4fWDg7XmLcDof","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24817,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjUu6SACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrSExAAjPacJPMTs1q+VLj67z6c7uJXNnArM3gIb98K4MWjrkO20ARz\r\nqt1xmEJmW2+1+QilMFHSTrpNulhAhbpYZDRLdstLFX72xiVURN/d83R/Zyrt\r\nTRwVfunFq8dlTXGCo6Jeu0Zct3vR3UCpl2+iKg+y6w/cN8/pl5opoeTFnIOx\r\n47n0PpYAfFUtvK9nzdos6Qp1zYHXQ+CiKRos8ermqQX8KAL98UBTtgrS3hli\r\nB5sbGwznUremBdvQBk29xrQiG5UpE2+WY4dXU9uVHWINV4jKCSz/1gWu+omN\r\nSKcMgjkIurR4NFSFpAwEX5s5j6DIQrxTqnriIgIPrCnyb6KWqJnKyGv3Uys8\r\ngqNYDFC11XsX611lIqjrVzRrBxTeuxGCqvZBeTD9eXdziCot55EHcLWWkofL\r\nzpXkKmurw4svB4X8MrP0CGBvARkTTJocCbN7+oZaT2Q8aFRlFgk/WcxHm0Sf\r\nz6PVeLn3b4XuAzC2F+MYQLFnb+C8FcrSKMtEe3b39OIBW9RDf0TN4tZA53sp\r\njnDAeo9ETPdSlTFDQeniCo4bGXe1gaJCvCz+4yyjURycy6cxTLWH2OJBoBnU\r\nKCEiPcotbS5VcG4rAOTK6Cz+1h5SBo3og5HwDVUK/HSWH3e5JzJT3NNqlCUv\r\nNuZEVaWSDZ6oj01nauceKaNjJOO47BOSNs4=\r\n=FYvH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs/index.js","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":"8791470de938716884b4c4b932d32a6a80226922","scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose && pnpm test:ts","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build","release":"pnpm --workspace-root plugin:release --pkg $npm_package_name","test:ts":"tsc types/index.d.ts test/types.ts --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/replace"},"_npmVersion":"8.19.2","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"18.11.0","dependencies":{"magic-string":"^0.26.4","@rollup/pluginutils":"^5.0.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^3.2.3","del-cli":"^5.0.0","source-map":"^0.7.4","typescript":"^4.8.3","locate-character":"^2.0.5","@rollup/plugin-buble":"^1.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_5.0.1_1666379410520_0.9336956853319827","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"@rollup/plugin-replace","version":"5.0.2","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"workerThreads":false},"dist":{"shasum":"45f53501b16311feded2485e98419acb8448c61d","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-5.0.2.tgz","fileCount":7,"integrity":"sha512-M9YXNekv/C/iHHK+cvORzfRYfPbq0RDD8r0G+bMiTXjNGKulPnCT9O3Ss46WfhI6ZOCgApOP7xAdmCQJ+U2LAA==","signatures":[{"sig":"MEYCIQCUOdfvztBbYfgIa4U3TJfONDe6Skz49a5WRthYWb5fzAIhAKlhIBWu9hC9/vNPsNdxhH9xHcC1/TjFx0c23YVA6S88","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24827,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjndpMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmovow//aU3stPqINBQRX6EGh4QtlIHkaBHmhYfXbtLyf5BNaOnSHPP2\r\nUMaWqw+u8L7e7axsXD6SRgptI3iwKPRDxLkpoCqkuvNXWAx4JeKcKI3Ui1g7\r\n1IQEu8kDVucdwrTuuBa5DaGOfsslg3dk5zSv3Vc17vKrteyse46sb3b1cDkI\r\nzDSsIAtRkUvj34ZRJyssjFq38wUXG/tuXcKcGgcr25btW7IOtmJ3GfCDmunj\r\nHB1LDPOLEBHeWuBPJZxZ0OZxoZQFU7aJRLQ2R9Kz1d7HsknbUspO7hzxU8pn\r\nTjB3FdF42nrfVhlt2tSTpoVQMel/Xnfc5d3lBW182+3ssdX1u7NiRxkIwbKD\r\nlR7IXx8x7zHRTF8aW+c6QECaw1Khgxn/pfTKRjCG0nweKT9HJxALn281op8i\r\n+Az88HucfWuPLkblLGxavycQKcz0UnHgfc3z8yQsnuXaPiT9XjLkwYeM1Dpm\r\nrKELKC9uHsXNcNGkQ1GW/la35j2kIguoBpJVDVr/Rdo2TJq20I0pV+FYfq9p\r\nki++ONfenkbDyLa/nNe3BExWOMS9ZXUSY9teoY6kBiTMS5rBlHuEV2wTGw0m\r\nNEmmQpOzej3QsFHnyhu4+Aox8MdkPV3QhZpBRwh/qdT+QYF/2ydeIUlJbJs8\r\nwGIKHdddhgJsFQzFMMjwWaGqB6E72jxgw0I=\r\n=H2Vk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/cjs/index.js","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":"ec974f2b2894ede07fffd12d8bdfd01a08e5b8e9","scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose && pnpm test:ts","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build","release":"pnpm --workspace-root plugin:release --pkg $npm_package_name","test:ts":"tsc types/index.d.ts test/types.ts --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/replace"},"_npmVersion":"8.19.2","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"18.12.1","dependencies":{"magic-string":"^0.27.0","@rollup/pluginutils":"^5.0.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^3.2.3","del-cli":"^5.0.0","source-map":"^0.7.4","typescript":"^4.8.3","locate-character":"^2.0.5","@rollup/plugin-buble":"^1.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_5.0.2_1671289420635_0.15144899804694112","host":"s3://npm-registry-packages"}},"5.0.3":{"name":"@rollup/plugin-replace","version":"5.0.3","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"workerThreads":false},"dist":{"shasum":"55a4550bd6d5e83a65df3d201e0b3d219be7b4b2","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-5.0.3.tgz","fileCount":7,"integrity":"sha512-je7fu05B800IrMlWjb2wzJcdXzHYW46iTipfChnBDbIbDXhASZs27W1B58T2Yf45jZtJUONegpbce+9Ut2Ti/Q==","signatures":[{"sig":"MEUCIQCi+fWwL8UrsfL88/4xPFvrG4AfL7uzS4bEpDjWhfn8BQIga+iheyeALRGAdQups6toeWceqbjLFXzIR3rqUPQ1TGY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24838},"main":"dist/cjs/index.js","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":"f579f68c5719f44861f8f4b28dbdb54dc82f6bf9","scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose && pnpm test:ts","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build","release":"pnpm --workspace-root plugin:release --pkg $npm_package_name","test:ts":"tsc types/index.d.ts test/types.ts --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/replace"},"_npmVersion":"10.1.0","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"20.8.0","dependencies":{"magic-string":"^0.27.0","@rollup/pluginutils":"^5.0.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^4.0.0-24","del-cli":"^5.0.0","source-map":"^0.7.4","typescript":"^4.8.3","locate-character":"^2.0.5","@rollup/plugin-buble":"^1.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_5.0.3_1696507557218_0.17063676728024668","host":"s3://npm-registry-packages"}},"5.0.4":{"name":"@rollup/plugin-replace","version":"5.0.4","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"workerThreads":false},"dist":{"shasum":"fef548dc751d06747e8dca5b0e8e1fbf647ac7e1","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-5.0.4.tgz","fileCount":7,"integrity":"sha512-E2hmRnlh09K8HGT0rOnnri9OTh+BILGr7NVJGB30S4E3cLRn3J0xjdiyOZ74adPs4NiAMgrjUMGAZNJDBgsdmQ==","signatures":[{"sig":"MEQCIFoBM9YMxWRCgzzFhCwY6JnTpNMQROvp/Xj0BCcnVosgAiBEaY3Ad77I8tSNjJjCb4GHgDYHdmbs9dIG/KlCcR20Wg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24838},"main":"dist/cjs/index.js","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":"563d83a5294299f40ad1ed18c4124f5a01435d8d","scripts":{"test":"ava","build":"rollup -c","ci:lint":"pnpm build && pnpm lint","ci:test":"pnpm test -- --verbose && pnpm test:ts","prepare":"if [ ! -d 'dist' ]; then pnpm build; fi","pretest":"pnpm build","release":"pnpm --workspace-root plugin:release --pkg $npm_package_name","test:ts":"tsc types/index.d.ts test/types.ts --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/replace"},"_npmVersion":"10.1.0","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"20.8.0","dependencies":{"magic-string":"^0.30.3","@rollup/pluginutils":"^5.0.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^4.0.0-24","del-cli":"^5.0.0","source-map":"^0.7.4","typescript":"^4.8.3","locate-character":"^2.0.5","@rollup/plugin-buble":"^1.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_5.0.4_1697384830961_0.801399342659227","host":"s3://npm-registry-packages"}},"5.0.5":{"name":"@rollup/plugin-replace","version":"5.0.5","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"workerThreads":false},"dist":{"shasum":"33d5653dce6d03cb24ef98bef7f6d25b57faefdf","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-5.0.5.tgz","fileCount":8,"integrity":"sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==","signatures":[{"sig":"MEUCIQCuloauAOTVHof5fNSHwdi8LMuYmzYjesLtcqICJSHWsgIgVMi93qlwLBQoxcwbSeFwZ3wBalMUVAyYMFiGqqJ0ZEc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25938},"main":"dist/cjs/index.js","_from":"file:rollup-plugin-replace-5.0.5.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 && pnpm test:ts","pretest":"pnpm build","release":"pnpm --workspace-root package:release $(pwd)","test:ts":"tsc types/index.d.ts test/types.ts --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/51aceb918bc3e92b30a1035d1a3d407d/rollup-plugin-replace-5.0.5.tgz","_integrity":"sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==","repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/replace"},"_npmVersion":"10.1.0","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"20.9.0","dependencies":{"magic-string":"^0.30.3","@rollup/pluginutils":"^5.0.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^4.0.0-24","del-cli":"^5.0.0","source-map":"^0.7.4","typescript":"^4.8.3","locate-character":"^2.0.5","@rollup/plugin-buble":"^1.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_5.0.5_1698604184870_0.2737185004940239","host":"s3://npm-registry-packages"}},"5.0.6":{"name":"@rollup/plugin-replace","version":"5.0.6","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@5.0.6","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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"workerThreads":false},"dist":{"shasum":"3a1ea14525424152bb19638500695fd6a21906f1","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-5.0.6.tgz","fileCount":8,"integrity":"sha512-n/Eea4MuS38M5iT+0nz7UzSbI4H4hVTKV5hOTAQzNVKT3nYxj8iaG4t9IW86Ugv/jApGY+O+SANAFqWPzZ9xkw==","signatures":[{"sig":"MEUCIQDkbMMkOOndsghjRImigKxWuhau7e8ayYm7uZAy5YnRjgIgKreaGgrxidphOFhmU7wXqloSh7DOF2pXt66fadkT4Wc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26196},"main":"dist/cjs/index.js","_from":"file:rollup-plugin-replace-5.0.6.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 && pnpm test:ts","pretest":"pnpm build","release":"pnpm --workspace-root package:release $(pwd)","test:ts":"tsc types/index.d.ts test/types.ts --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/daf26f15b25ec88340926f0cd07595d9/rollup-plugin-replace-5.0.6.tgz","_integrity":"sha512-n/Eea4MuS38M5iT+0nz7UzSbI4H4hVTKV5hOTAQzNVKT3nYxj8iaG4t9IW86Ugv/jApGY+O+SANAFqWPzZ9xkw==","repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/replace"},"_npmVersion":"10.5.2","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"20.13.1","dependencies":{"magic-string":"^0.30.3","@rollup/pluginutils":"^5.0.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^4.0.0-24","del-cli":"^5.0.0","source-map":"^0.7.4","typescript":"^4.8.3","locate-character":"^2.0.5","@rollup/plugin-buble":"^1.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_5.0.6_1717551508457_0.6391739694914169","host":"s3://npm-registry-packages"}},"5.0.7":{"name":"@rollup/plugin-replace","version":"5.0.7","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@5.0.7","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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"workerThreads":false},"dist":{"shasum":"150c9ee9db8031d9e4580a61a0edeaaed3d37687","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-5.0.7.tgz","fileCount":8,"integrity":"sha512-PqxSfuorkHz/SPpyngLyg5GCEkOcee9M1bkxiVDr41Pd61mqP1PLOoDPbpl44SB2mQGKwV/In74gqQmGITOhEQ==","signatures":[{"sig":"MEQCIHWhjtekb6nvJDD8oV0u19D3OaqtcuUOw7eE3v8VYK29AiATWSA/evkJQcQ0FAcT2M+JRWd0NdZMajM8XWOZyAgN3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26414},"main":"dist/cjs/index.js","_from":"file:rollup-plugin-replace-5.0.7.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 && pnpm test:ts","pretest":"pnpm build","release":"pnpm --workspace-root package:release $(pwd)","test:ts":"tsc types/index.d.ts test/types.ts --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/b833c00d88b40ea023bf206b889c2408/rollup-plugin-replace-5.0.7.tgz","_integrity":"sha512-PqxSfuorkHz/SPpyngLyg5GCEkOcee9M1bkxiVDr41Pd61mqP1PLOoDPbpl44SB2mQGKwV/In74gqQmGITOhEQ==","repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/replace"},"_npmVersion":"10.5.2","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"20.13.1","dependencies":{"magic-string":"^0.30.3","@rollup/pluginutils":"^5.0.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^4.0.0-24","del-cli":"^5.0.0","source-map":"^0.7.4","typescript":"^4.8.3","locate-character":"^2.0.5","@rollup/plugin-buble":"^1.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_5.0.7_1717599997216_0.3415573205735374","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"@rollup/plugin-replace","version":"6.0.0","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@6.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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"workerThreads":false},"dist":{"shasum":"44373054722709a734dd0cf69857c3fcdfe8ad5a","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-6.0.0.tgz","fileCount":8,"integrity":"sha512-jjT3IUHPoJIPYLnu2eRaO04Np+0RkO+xYb/qhuz50QMYaHLFJ92jEWHoud5jpEg52k8h22HxO1GHqFQSTb83jQ==","signatures":[{"sig":"MEUCIAdcM4pXHfGR4JgYMSXSpxxZIlo37Na9lYxIe4R2oTa4AiEAotw5tv3oDC9+lCFXNWxryZKOgDNaXMNpYR4fERy6gK4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23233},"main":"dist/cjs/index.js","_from":"file:rollup-plugin-replace-6.0.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 && pnpm test:ts","pretest":"pnpm build","release":"pnpm --workspace-root package:release $(pwd)","test:ts":"tsc types/index.d.ts test/types.ts --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/c1589b99f8f8244b382e274c34c158e1/rollup-plugin-replace-6.0.0.tgz","_integrity":"sha512-jjT3IUHPoJIPYLnu2eRaO04Np+0RkO+xYb/qhuz50QMYaHLFJ92jEWHoud5jpEg52k8h22HxO1GHqFQSTb83jQ==","repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/replace"},"_npmVersion":"10.8.2","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"20.17.0","dependencies":{"magic-string":"^0.30.3","@rollup/pluginutils":"^5.0.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^4.0.0-24","del-cli":"^5.0.0","source-map":"^0.7.4","typescript":"^4.8.3","locate-character":"^2.0.5","@rollup/plugin-buble":"^1.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_6.0.0_1727104560077_0.5251567558302308","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"@rollup/plugin-replace","version":"6.0.1","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@6.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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"workerThreads":false},"dist":{"shasum":"547e238f7db994ebe63dd5329ec46ffccf696029","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-6.0.1.tgz","fileCount":8,"integrity":"sha512-2sPh9b73dj5IxuMmDAsQWVFT7mR+yoHweBaXG2W/R8vQ+IWZlnaI7BR7J6EguVQUp1hd8Z7XuozpDjEKQAAC2Q==","signatures":[{"sig":"MEYCIQD1pSzTdspZEWj3xxWJ5QjD6LD8UvnEwSnhbhvnzIAF9gIhAMPNCTvAnr1YpNm+7WfDjLORCFlD/pRdTHC0riyx9RV3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23338},"main":"dist/cjs/index.js","_from":"file:rollup-plugin-replace-6.0.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 && pnpm test:ts","pretest":"pnpm build","release":"pnpm --workspace-root package:release $(pwd)","test:ts":"tsc types/index.d.ts test/types.ts --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/d1955fdca799ad75ede092af9548d2fc/rollup-plugin-replace-6.0.1.tgz","_integrity":"sha512-2sPh9b73dj5IxuMmDAsQWVFT7mR+yoHweBaXG2W/R8vQ+IWZlnaI7BR7J6EguVQUp1hd8Z7XuozpDjEKQAAC2Q==","repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/replace"},"_npmVersion":"10.8.2","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"20.17.0","dependencies":{"magic-string":"^0.30.3","@rollup/pluginutils":"^5.0.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^4.0.0-24","del-cli":"^5.0.0","source-map":"^0.7.4","typescript":"^4.8.3","locate-character":"^2.0.5","@rollup/plugin-buble":"^1.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_6.0.1_1727105158606_0.1209896672942039","host":"s3://npm-registry-packages"}},"6.0.2":{"name":"@rollup/plugin-replace","version":"6.0.2","keywords":["rollup","plugin","replace","es2015","npm","modules"],"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"license":"MIT","_id":"@rollup/plugin-replace@6.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/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"ava":{"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.ts"],"workerThreads":false},"dist":{"shasum":"2f565d312d681e4570ff376c55c5c08eb6f1908d","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-6.0.2.tgz","fileCount":8,"integrity":"sha512-7QaYCf8bqF04dOy7w/eHmJeNExxTYwvKAmlSAH/EaWWUzbT0h5sbF6bktFoX/0F/0qwng5/dWFMyf3gzaM8DsQ==","signatures":[{"sig":"MEUCIFbNsEeI5wtxtmwj8HCWgc2NUzjVDwJ72Z3YenVVTh7HAiEA9XkglDppqmEZzHwZQuMsn1+I/uIHcgNgbHi93IonUtY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23613},"main":"dist/cjs/index.js","_from":"file:rollup-plugin-replace-6.0.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 && pnpm test:ts","pretest":"pnpm build","release":"pnpm --workspace-root package:release $(pwd)","test:ts":"tsc types/index.d.ts test/types.ts --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/bbe27d5cb86cba0269d9a0508ad941b0/rollup-plugin-replace-6.0.2.tgz","_integrity":"sha512-7QaYCf8bqF04dOy7w/eHmJeNExxTYwvKAmlSAH/EaWWUzbT0h5sbF6bktFoX/0F/0qwng5/dWFMyf3gzaM8DsQ==","repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/replace"},"_npmVersion":"10.8.2","description":"Replace strings in files while bundling","directories":{},"_nodeVersion":"20.18.1","dependencies":{"magic-string":"^0.30.3","@rollup/pluginutils":"^5.0.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^4.0.0-24","del-cli":"^5.0.0","source-map":"^0.7.4","typescript":"^4.8.3","locate-character":"^2.0.5","@rollup/plugin-buble":"^1.0.0"},"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/plugin-replace_6.0.2_1734278789794_0.2427283760119323","host":"s3://npm-registry-packages-npm-production"}},"6.0.3":{"name":"@rollup/plugin-replace","version":"6.0.3","publishConfig":{"access":"public"},"description":"Replace strings in files while bundling","license":"MIT","repository":{"url":"git+https://github.com/rollup/plugins.git","directory":"packages/replace"},"author":{"name":"Rich Harris","email":"richard.a.harris@gmail.com"},"homepage":"https://github.com/rollup/plugins/tree/master/packages/replace#readme","bugs":{"url":"https://github.com/rollup/plugins/issues"},"main":"dist/cjs/index.js","module":"dist/es/index.js","exports":{"types":"./types/index.d.ts","import":"./dist/es/index.js","default":"./dist/cjs/index.js"},"engines":{"node":">=14.0.0"},"keywords":["rollup","plugin","replace","es2015","npm","modules"],"peerDependencies":{"rollup":"^1.20.0||^2.0.0||^3.0.0||^4.0.0"},"peerDependenciesMeta":{"rollup":{"optional":true}},"dependencies":{"@rollup/pluginutils":"^5.0.1","magic-string":"^0.30.3"},"devDependencies":{"@rollup/plugin-buble":"^1.0.0","del-cli":"^5.0.0","locate-character":"^2.0.5","rollup":"^4.0.0-24","source-map":"^0.7.4","typescript":"^4.8.3"},"types":"./types/index.d.ts","ava":{"workerThreads":false,"files":["!**/fixtures/**","!**/helpers/**","!**/recipes/**","!**/types.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 && pnpm test:ts","prebuild":"del-cli dist","prerelease":"pnpm build","pretest":"pnpm build","release":"pnpm --workspace-root package:release $(pwd)","test":"ava","test:ts":"tsc types/index.d.ts test/types.ts --noEmit"},"_id":"@rollup/plugin-replace@6.0.3","_integrity":"sha512-J4RZarRvQAm5IF0/LwUUg+obsm+xZhYnbMXmXROyoSE1ATJe3oXSb9L5MMppdxP2ylNSjv6zFBwKYjcKMucVfA==","_resolved":"/tmp/1c404525e01ea7f76299e49d28edca09/rollup-plugin-replace-6.0.3.tgz","_from":"file:rollup-plugin-replace-6.0.3.tgz","_nodeVersion":"20.19.5","_npmVersion":"10.8.2","dist":{"integrity":"sha512-J4RZarRvQAm5IF0/LwUUg+obsm+xZhYnbMXmXROyoSE1ATJe3oXSb9L5MMppdxP2ylNSjv6zFBwKYjcKMucVfA==","shasum":"0f82e41d81f6586ab0f81a1b48bd7fd92fcfb9a2","tarball":"http://tools.bpmhome.cn:8082/nexus/repository/npm-lc/@rollup/plugin-replace/-/plugin-replace-6.0.3.tgz","fileCount":8,"unpackedSize":23925,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQD9/wyWh3NBK8J2Eq5MWdZyLiMrReTBFTBFLUt0CmP3VAIhALQ+dnrPS5JGRTk43j7+a1mHq2O4w+SKkm40pYYGiudy"}]},"_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/plugin-replace_6.0.3_1761744123866_0.1420691110766077"},"_hasShrinkwrap":false}},"name":"@rollup/plugin-replace","time":{"created":"2019-10-28T13:46:46.934Z","modified":"2020-11-01T07:43:24.368Z","2.2.0":"2019-10-28T13:46:46.934Z","2.2.1":"2019-11-06T18:03:43.572Z","2.3.0":"2019-12-21T21:21:40.212Z","2.3.1":"2020-02-01T18:26:40.018Z","2.3.2":"2020-04-19T00:24:45.529Z","2.3.3":"2020-06-05T13:46:38.749Z","2.3.4":"2020-10-27T02:45:08.923Z","2.4.0":"2021-02-22T01:03:34.213Z","2.4.1":"2021-02-22T17:41:55.408Z","2.4.2":"2021-03-26T18:45:47.320Z","3.0.0":"2021-07-16T14:30:02.662Z","3.0.1":"2021-12-28T18:51:43.185Z","3.1.0":"2022-02-11T22:39:48.445Z","4.0.0":"2022-02-22T22:53:30.425Z","5.0.0":"2022-10-10T11:54:42.284Z","5.0.1":"2022-10-21T19:10:10.747Z","5.0.2":"2022-12-17T15:03:40.788Z","5.0.3":"2023-10-05T12:05:57.368Z","5.0.4":"2023-10-15T15:47:11.211Z","5.0.5":"2023-10-29T18:29:45.054Z","5.0.6":"2024-06-05T01:38:28.617Z","5.0.7":"2024-06-05T15:06:37.382Z","6.0.0":"2024-09-23T15:16:00.266Z","6.0.1":"2024-09-23T15:25:58.790Z","6.0.2":"2024-12-15T16:06:29.955Z","6.0.3":"2025-10-29T13:22:04.097Z"},"readmeFilename":"README.md","homepage":"https://github.com/rollup/plugins/tree/master/packages/replace#readme"}