{"_id":"conf","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"dist-tags":{"latest":"15.1.0"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"description":"Simple config handling for your app or module","readme":"# conf\n\n> Simple config handling for your app or module\n\nAll you have to care about is what to persist. This module will handle all the dull details like where and how.\n\n**It does not support multiple processes writing to the same store.**\\\nI initially made this tool to let command-line tools persist some data.\n\n*If you need this for Electron, check out [`electron-store`](https://github.com/sindresorhus/electron-store) instead.*\n\n## Install\n\n```sh\nnpm install conf\n```\n\n## Usage\n\n```js\nimport Conf from 'conf';\n\nconst config = new Conf({projectName: 'foo'});\n\nconfig.set('unicorn', '\uD83E\uDD84');\nconsole.log(config.get('unicorn'));\n//=> '\uD83E\uDD84'\n\n// Use dot-notation to access nested properties\nconfig.set('foo.bar', true);\nconsole.log(config.get('foo'));\n//=> {bar: true}\n\nconfig.delete('unicorn');\nconsole.log(config.get('unicorn'));\n//=> undefined\n```\n\nOr [create a subclass](https://github.com/sindresorhus/electron-store/blob/main/index.js).\n\n## API\n\nChanges are written to disk atomically, so if the process crashes during a write, it will not corrupt the existing config.\n\n### Conf(options?)\n\nReturns a new instance.\n\n### options\n\nType: `object`\n\n#### defaults\n\nType: `object`\n\nDefault values for the config items.\n\n> [!NOTE]\n> The values in `defaults` will overwrite the `default` key in the `schema` option.\n\n#### schema\n\nType: `object`\n\n[JSON Schema](https://json-schema.org) to validate your config data.\n\nThis will be the [`properties`](https://json-schema.org/understanding-json-schema/reference/object.html#properties) object of the JSON schema. That is, define `schema` as an object where each key is the name of your data's property and each value is a JSON schema used to validate that property.\n\nExample:\n\n```js\nimport Conf from 'conf';\n\nconst schema = {\n\tfoo: {\n\t\ttype: 'number',\n\t\tmaximum: 100,\n\t\tminimum: 1,\n\t\tdefault: 50\n\t},\n\tbar: {\n\t\ttype: 'string',\n\t\tformat: 'url'\n\t}\n};\n\nconst config = new Conf({\n\tprojectName: 'foo',\n\tschema\n});\n\nconsole.log(config.get('foo'));\n//=> 50\n\nconfig.set('foo', '1');\n// [Error: Config schema violation: `foo` should be number]\n```\n\n> [!NOTE]\n> The `default` value will be overwritten by the `defaults` option if set.\n\n#### rootSchema\n\nType: `object`\n\nTop-level properties for the schema, excluding `properties` field.\n\nExample:\n\n```js\nimport Conf from 'conf';\n\nconst store = new Conf({\n\tprojectName: 'foo',\n\tschema: { /* … */ },\n\trootSchema: {\n\t\tadditionalProperties: false\n\t}\n});\n```\n\n#### ajvOptions\n\nType: `object`\n\n[Options passed to AJV](https://ajv.js.org/options.html).\n\nUnder the hood, the JSON Schema validator [ajv](https://ajv.js.org/json-schema.html) is used to validate your config. We use [JSON Schema draft-2020-12](https://json-schema.org/draft/2020-12/release-notes) and support all validation keywords and formats.\n\n> [!NOTE]\n> By default, `allErrors` and `useDefaults` are both set to `true`, but can be overridden.\n\nExample:\n\n```js\nimport Conf from 'conf';\n\nconst store = new Conf({\n\tprojectName: 'foo',\n\tschema: { /* … */ },\n\trootSchema: {\n\t\tadditionalProperties: false\n\t},\n\tajvOptions: {\n\t\tremoveAdditional: true\n\t}\n});\n```\n\n#### migrations\n\nType: `object`\n\n**Important: I cannot provide support for this feature. It has some known bugs. I have no plans to work on it, but pull requests are welcome.**\n\nYou can use migrations to perform operations to the store whenever a **project version** is upgraded.\n\nThe `migrations` object should consist of a key-value pair of `'version': handler`. The `version` can also be a [semver range](https://github.com/npm/node-semver#ranges).\n\nExample:\n\n```js\nimport Conf from 'conf';\n\nconst store = new Conf({\n\tprojectName: 'foo',\n\tprojectVersion: …,\n\tmigrations: {\n\t\t'0.0.1': store => {\n\t\t\tstore.set('debugPhase', true);\n\t\t},\n\t\t'1.0.0': store => {\n\t\t\tstore.delete('debugPhase');\n\t\t\tstore.set('phase', '1.0.0');\n\t\t},\n\t\t'1.0.2': store => {\n\t\t\tstore.set('phase', '1.0.2');\n\t\t},\n\t\t'>=2.0.0': store => {\n\t\t\tstore.set('phase', '>=2.0.0');\n\t\t}\n\t}\n});\n```\n\n> [!NOTE]\n> The version the migrations use refers to the **project version** by default. If you want to change this behavior, specify the [`projectVersion`](#projectVersion) option.\n\n#### beforeEachMigration\n\nType: `Function`\\\nDefault: `undefined`\n\nThe given callback function will be called before each migration step.\n\nThe function receives the store as the first argument and a context object as the second argument with the following properties:\n\n- `fromVersion` - The version the migration step is being migrated from.\n- `toVersion` - The version the migration step is being migrated to.\n- `finalVersion` - The final version after all the migrations are applied.\n- `versions` - All the versions with a migration step.\n\nThis can be useful for logging purposes, preparing migration data, etc.\n\nExample:\n\n```js\nimport Conf from 'conf';\n\nconsole.log = someLogger.log;\n\nconst mainConfig = new Conf({\n\tprojectName: 'foo1',\n\tbeforeEachMigration: (store, context) => {\n\t\tconsole.log(`[main-config] migrate from ${context.fromVersion} → ${context.toVersion}`);\n\t},\n\tmigrations: {\n\t\t'0.4.0': store => {\n\t\t\tstore.set('debugPhase', true);\n\t\t},\n\t}\n});\n\nconst secondConfig = new Conf({\n\tprojectName: 'foo2',\n\tbeforeEachMigration: (store, context) => {\n\t\tconsole.log(`[second-config] migrate from ${context.fromVersion} → ${context.toVersion}`);\n\t},\n\tmigrations: {\n\t\t'1.0.1': store => {\n\t\t\tstore.set('debugPhase', true);\n\t\t},\n\t}\n});\n```\n\n#### configName\n\nType: `string`\\\nDefault: `'config'`\n\nName of the config file (without extension).\n\nUseful if you need multiple config files for your app or module. For example, different config files between two major versions.\n\n#### projectName\n\nType: `string`\n\n**Required unless you specify the `cwd` option.**\n\nYou can fetch the `name` field from package.json:\n\n```js\nimport Conf from 'conf';\nimport packageJson from './package.json' assert {type: 'json'};\n\nconst config = new Conf({projectName: packageJson.name});\n```\n\n#### projectVersion\n\nType: `string`\n\n**Required if you specify the `migrations` option.**\n\nYou can fetch the `version` field from package.json.\n\n#### cwd\n\nType: `string`\\\nDefault: System default [user config directory](https://github.com/sindresorhus/env-paths#pathsconfig)\n\n**You most likely don't need this. Please don't use it unless you really have to. By default, it will pick the optimal location by adhering to system conventions. You are very likely to get this wrong and annoy users.**\n\nOverrides `projectName`.\n\nBy default the config is stored in the [system user's config directory](https://github.com/sindresorhus/env-paths#pathsconfig); running under another user reads a different store. Set `cwd` to share across users.\n\nThe only use-case I can think of is having the config located in the app directory or on some external storage.\n\n#### encryptionKey\n\nType: `string | Uint8Array | TypedArray | DataView`\\\nDefault: `undefined`\n\n> [!CAUTION]\n> This is **not intended for security purposes**, since the encryption key would be easily found inside a plain-text Node.js app.\n\nIts main use is for obscurity. If a user looks through the config directory and finds the config file, since it's just a JSON file, they may be tempted to modify it. By providing an encryption key, the file will be obfuscated, which should hopefully deter any users from doing so.\n\nWhen using `aes-256-gcm`, the config file is authenticated. If the file is changed in any way, the decryption will fail. With `aes-256-cbc` and `aes-256-ctr`, tampering can go undetected.\n\nWhen specified, the store will be encrypted using the `encryptionAlgorithm` option (defaults to `aes-256-cbc`).\n\n#### encryptionAlgorithm\n\nType: `'aes-256-cbc' | 'aes-256-gcm' | 'aes-256-ctr'`\\\nDefault: `'aes-256-cbc'`\n\nEncryption algorithm to use when `encryptionKey` is set.\n\nUse `aes-256-gcm` if you want authentication, otherwise use `aes-256-cbc` or `aes-256-ctr`.\n\nChanging `encryptionAlgorithm` will make existing encrypted data unreadable.\n\nWhen using `aes-256-gcm` or `aes-256-ctr`, existing plaintext config files are not supported. Delete the config file or migrate it before enabling encryption. With `aes-256-cbc`, existing plaintext config files are still readable for backward compatibility.\n\n#### fileExtension\n\nType: `string`\\\nDefault: `'json'`\n\nExtension of the config file.\n\nYou would usually not need this, but could be useful if you want to interact with a file with a custom file extension that can be associated with your app. These might be simple save/export/preference files that are intended to be shareable or saved outside of the app.\n\n#### clearInvalidConfig\n\nType: `boolean`\\\nDefault: `false`\n\nThe config is cleared if reading the config file causes a `SyntaxError` (malformed JSON), a schema validation error when using the `schema` option, or a decryption failure when using `encryptionKey`. This is a good behavior for unimportant data, as the config file is not intended to be hand-edited, so it usually means the config is corrupt and there's nothing the user can do about it anyway. However, if you let the user edit the config file directly, mistakes might happen and it could be more useful to throw an error when the config is invalid instead of clearing.\n\n#### serialize\n\nType: `Function`\\\nDefault: `value => JSON.stringify(value, null, '\\t')`\n\nFunction to serialize the config object to a UTF-8 string when writing the config file.\n\nYou would usually not need this, but it could be useful if you want to use a format other than JSON.\n\n#### deserialize\n\nType: `Function`\\\nDefault: `JSON.parse`\n\nFunction to deserialize the config object from a UTF-8 string when reading the config file.\n\nYou would usually not need this, but it could be useful if you want to use a format other than JSON.\n\n#### projectSuffix\n\nType: `string`\\\nDefault: `'nodejs'`\n\n**You most likely don't need this. Please don't use it unless you really have to.**\n\nSuffix appended to `projectName` during config file creation to avoid name conflicts with native apps.\n\nYou can pass an empty string to remove the suffix.\n\nFor example, on macOS, the config file will be stored in the `~/Library/Preferences/foo-nodejs` directory, where `foo` is the `projectName`.\n\n#### accessPropertiesByDotNotation\n\nType: `boolean`\\\nDefault: `true`\n\nAccessing nested properties by dot notation. For example:\n\n```js\nimport Conf from 'conf';\n\nconst config = new Conf({projectName: 'foo'});\n\nconfig.set({\n\tfoo: {\n\t\tbar: {\n\t\t\tfoobar: '\uD83E\uDD84'\n\t\t}\n\t}\n});\n\nconsole.log(config.get('foo.bar.foobar'));\n//=> '\uD83E\uDD84'\n```\n\nAlternatively, you can set this option to `false` so the whole string would be treated as one key.\n\n```js\nimport Conf from 'conf';\n\nconst config = new Conf({\n\tprojectName: 'foo',\n\taccessPropertiesByDotNotation: false\n});\n\nconfig.set({\n\t`foo.bar.foobar`: '\uD83E\uDD84'\n});\n\nconsole.log(config.get('foo.bar.foobar'));\n//=> '\uD83E\uDD84'\n```\n\n#### watch\n\ntype: `boolean`\\\nDefault: `false`\n\nWatch for any changes in the config file and call the callback for `onDidChange` or `onDidAnyChange` if set. This is useful if there are multiple processes changing the same config file.\n\n#### configFileMode\n\nType: `number`\\\nDefault: `0o666`\n\nThe [mode](https://en.wikipedia.org/wiki/File-system_permissions#Numeric_notation) used when creating the config file.\n\nThe mode is modified by the [process umask](https://en.wikipedia.org/wiki/Umask). With the typical umask of `0o022`, the default results in `0o644`. Config files are also stored in the user's home directory (`~/.config/`), which is typically protected.\n\nYou would usually not need this, but it could be useful if you use a custom `cwd`. Setting `0o600` would make the file only readable by the owner.\n\n> [!NOTE]\n> Setting restrictive permissions can cause problems if different users need to read the file. A common problem is a user running your tool with and without `sudo` and then not being able to access the config the second time.\n\n### Instance\n\nYou can use [dot-notation](https://github.com/sindresorhus/dot-prop) in a `key` to access nested properties.\n\nThe instance is [`iterable`](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Iteration_protocols) so you can use it directly in a [`for…of`](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Statements/for...of) loop.\n\n#### .set(key, value)\n\nSet an item.\n\nThe `value` must be JSON serializable. Trying to set the type `undefined`, `function`, or `symbol` will result in a TypeError.\n\n#### .set(object)\n\nSet multiple items at once.\n\n#### .get(key, defaultValue?)\n\nGet an item or `defaultValue` if the item does not exist.\n\nTip: To get all items, see [`.store`](#store).\n\n#### .reset(...keys)\n\nReset items to their default values, as defined by the `defaults` or `schema` option.\n\nUse `.clear()` to reset all items.\n\n#### .has(key)\n\nCheck if an item exists.\n\n#### .appendToArray(key, value)\n\nAppend an item to an array.\n\nIf the key doesn't exist, it will be created as an array. If the key exists and is not an array, a `TypeError` will be thrown.\n\nThe `value` must be JSON serializable. Trying to set the type like `undefined`, `function`, or `symbol` will result in a `TypeError`.\n\n```js\nconfig.set('items', [{name: 'foo'}]);\nconfig.appendToArray('items', {name: 'bar'});\nconsole.log(config.get('items'));\n//=> [{name: 'foo'}, {name: 'bar'}]\n\n// Creates array if key doesn't exist\nconfig.appendToArray('newItems', 'first');\nconsole.log(config.get('newItems'));\n//=> ['first']\n```\n\n#### .delete(key)\n\nDelete an item.\n\n#### .clear()\n\nDelete all items.\n\nThis resets known items to their default values, if defined by the `defaults` or `schema` option.\n\n#### .onDidChange(key, callback)\n\n`callback`: `(newValue, oldValue) => {}`\n\nWatches the given `key`, calling `callback` on any changes.\n\nWhen a key is first set `oldValue` will be `undefined`, and when a key is deleted `newValue` will be `undefined`.\n\nReturns a function which you can use to unsubscribe:\n\n```js\nconst unsubscribe = config.onDidChange(key, callback);\n\nunsubscribe();\n```\n\n#### .onDidAnyChange(callback)\n\n`callback`: `(newValue, oldValue) => {}`\n\nWatches the whole config object, calling `callback` on any changes.\n\n`oldValue` and `newValue` will be the config object before and after the change, respectively. You must compare `oldValue` to `newValue` to find out what changed.\n\nReturns a function which you can use to unsubscribe:\n\n```js\nconst unsubscribe = config.onDidAnyChange(callback);\n\nunsubscribe();\n```\n\n#### .size\n\nGet the item count.\n\n#### .store\n\nGet all the config as an object or replace the current config with an object:\n\n```js\nconsole.log(config.store);\n//=> {name: 'John', age: 30}\n```\n\n```js\nconfig.store = {\n\thello: 'world'\n};\n```\n\n#### .path\n\nGet the path to the config file.\n\n## FAQ\n\n### How is this different from [`configstore`](https://github.com/yeoman/configstore)?\n\nI'm also the author of `configstore`. While it's pretty good, I did make some mistakes early on that are hard to change at this point. This module is the result of everything I learned from making `configstore`. Mainly where the config is stored. In `configstore`, the config is stored in `~/.config` (which is mainly a Linux convention) on all systems, while `conf` stores config in the system default [user config directory](https://github.com/sindresorhus/env-paths#pathsconfig). The `~/.config` directory, it turns out, often have an incorrect permission on macOS and Windows, which has caused a lot of grief for users.\n\n### Can I use YAML or another serialization format?\n\nThe `serialize` and `deserialize` options can be used to customize the format of the config file, as long as the representation is compatible with `utf8` encoding.\n\nExample using YAML:\n\n```js\nimport Conf from 'conf';\nimport yaml from 'js-yaml';\n\nconst config = new Conf({\n\tprojectName: 'foo',\n\tfileExtension: 'yaml',\n\tserialize: yaml.dump,\n\tdeserialize: yaml.load\n});\n```\n\n### Can I use `conf` with strict Content Security Policy (CSP)?\n\n`conf` depends on [`ajv`](https://ajv.js.org) for the `schema` option, which uses `unsafe-eval`. Even without using the `schema` option, `ajv` is still bundled and may cause CSP errors. As a workaround, you could configure your bundler to replace `ajv` with a stub:\n\n```js\n// webpack.config.js\nmodule.exports = {\n\tresolve: {\n\t\talias: {\n\t\t\t'ajv': false,\n\t\t\t'ajv-formats': false\n\t\t}\n\t}\n};\n```\n\n### Can I use async operations in migrations?\n\nConf is synchronous by design, so this is not possible. As a workaround, you could use [`make-synchronous`](https://github.com/sindresorhus/make-synchronous) to convert asynchrnous functions to synchronous (with caveats):\n\n```js\nimport Conf from 'conf';\nimport makeSynchronous from 'make-synchronous';\n\nconst config = new Conf({\n\tmigrations: {\n\t\t'0.0.1': store => {\n\t\t\tconst syncAsyncFunction = makeSynchronous(asyncFunction);\n\t\t\tconst result = syncAsyncFunction();\n\t\t\tstore.set('migrated', result);\n\t\t}\n\t}\n});\n```\n\n## Related\n\n- [electron-store](https://github.com/sindresorhus/electron-store) - Simple data persistence for your Electron app or module\n- [cache-conf](https://github.com/SamVerschueren/cache-conf) - Simple cache config handling for your app or module\n","repository":{"type":"git","url":"git+https://github.com/sindresorhus/conf.git"},"users":{"dntx":true,"heartnett":true,"drmercer":true,"davidbwaters":true,"geekish":true,"studi11":true,"joelwallis":true,"alicebox":true,"soenkekluth":true,"rocket0191":true,"xudaolong":true,"sermir":true,"maxwang":true,"fabioper":true},"bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"license":"MIT","versions":{"0.8.2":{"name":"conf","version":"0.8.2","keywords":["dsl","conf","config","script","general"],"author":{"url":"https://github.com/jfd/","name":"Johan Dahlberg","email":"dahlberg.johan@gmail.com"},"_id":"conf@0.8.2","homepage":"https://github.com/jfd/node-conf","os":["macos","linux"],"dist":{"shasum":"1f213f89b9c742cd4d60861852f8cbd7c1adaaca","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-0.8.2.tgz","integrity":"sha512-d0CpX/3QH/xWt/HS4VcdOQYfTIJ4yUg3oLXkJ7CrJurk2LDSq0FcYmVZiAaYgLhppERqu9a+R51CJd6DDQ+DzA==","signatures":[{"sig":"MEUCIHbHSx154W8R7khcr9ofcxCP8GmwlY0rEE6eloqtulkfAiEAxmAbwv71U9R63fzTZI0DM0/I++MCxJuJWVGh1qxkCpE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./conf","engines":{"node":">=0.3.0"},"scripts":{},"repository":{"url":"git://github.com/jfd/node-conf.git","type":"git"},"_npmVersion":"1.0.3","description":"Config library for Nodejs","directories":{},"_nodeVersion":"v0.4.7","dependencies":{},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true},"0.8.3":{"name":"conf","version":"0.8.3","keywords":["dsl","conf","config","script","general"],"author":{"url":"https://github.com/jfd/","name":"Johan Dahlberg","email":"dahlberg.johan@gmail.com"},"_id":"conf@0.8.3","homepage":"https://github.com/jfd/node-conf","os":["macos","linux"],"dist":{"shasum":"ddc5bb65f209ea6a554e8c9815106b1d62cd3e42","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-0.8.3.tgz","integrity":"sha512-oBFIEfTNAwgciL1fmu/K6lmpMkWq3GNNUTbvyxW4FB8mFhHJZe3DgY0yZafyRE9yJueDgVTF6Q5Jax5nm7EZ2A==","signatures":[{"sig":"MEQCIHwFk6qUZX+lraNmos72wqImOThWSYVFDli/yEQqVWx2AiAToshiKjr5p4PzSogOLzygLGUFVAFu8z3MyuuMPDS6eA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./conf","engines":{"node":">=0.3.0"},"scripts":{},"repository":{"url":"git://github.com/jfd/node-conf.git","type":"git"},"_npmVersion":"1.0.3","description":"Config library for Nodejs","directories":{},"_nodeVersion":"v0.4.7","dependencies":{},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true},"9.0.0":{"name":"conf","version":"9.0.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@9.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"@typescript-eslint/no-implicit-any-catch":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"86fd1a8e58da81a8fae2a8a9feeb3a45ef68d303","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-9.0.0.tgz","fileCount":7,"integrity":"sha512-TGrWTD/tviifvdeoOZIYBmlceYJ0wq2lCzqbv7bT4KgostaCyyYe9uYWZdzPdhl4mROQXwMcc/iuAUsMTzf7pQ==","signatures":[{"sig":"MEUCIQDEzOHEMfnP3EenEijMw5Kkmg/Hojk298O8thMpKcEoNQIgCRi78NaAu9dHWNvgT0ZEnTV7LA3N4g8Dr67nIobCnlU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45053,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgCwuBCRA9TVsSAnZWagAAx5QP/iSdBzmJiXBB01J8Nn/W\n/CQEZ1Q+z170rhd4ZhYbEwIKeMpCWYwxn8iPetsQNzLTeGPeuG4wGNcLlUGi\nvkeWjTxGuNlxEV379Z/y16LiYeRYYgb8vuyqvx8vUbvQulLdNTv4Pv6coHOl\nno4BH55QxTRkZMfh7Wn09E2l8bBE2A77OOmqmE13BYAt1ZC4Q/FRLI78QBOn\ngME6k1Fy4xU7kCQFpPNn7OcJtVpg3NN1iRAMn/eUaOlMiRb9skcsblZOOVFf\n+HfPIAk2jVwHIxwhlM+oJ5LxPc41BvW+m8fLX4ozm3wRqyhajuBDuIHlUSha\n4UonqkWbBcXFIHrcVjaLtKMJYrOdcSLg3rSLyOXm8wPQ+H60i2KIYRp3u/n8\nj8gUEqRrBwGHDOc0Ebx0mhe51rGkwpGkQD5svy/b5DLZsgvfcnKqLGsOkkur\nKcMKhbZZOJZnHtsgFJrsileSfLRlXAb6jw28CxOu9P2J5/CYFK+Bs7PKyJd0\nZpI0K1Da23YQ9Cg8E+4M3+a+x0d4XZzeIF5i95f5M+g9LiCb1J0QGX4siWPo\noS1LTdF7wrXXZjFgPqvBAPglWabIgCWll2Y+APPOXS6xGB9mYVAvsgzjuuhC\nCDas3OWj84mG7djJzWHgSCQDStcE1moMTteJ9RI8ViOJa7DgM3RQNdWuXwnk\nefga\r\n=j8AR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"8ba18f960ae6483d1057db4d717d871f40564cdd","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.14.10","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"12.20.1","dependencies":{"ajv":"^7.0.3","pkg-up":"^3.1.0","semver":"^7.3.4","onetime":"^5.1.2","dot-prop":"^6.0.1","make-dir":"^3.1.0","env-paths":"^2.2.0","atomically":"^1.7.0","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.37.1","ava":"^3.15.0","del":"^6.0.0","nyc":"^15.1.0","tsd":"^0.14.0","delay":"^4.4.0","tempy":"^1.0.0","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"4.1.3","@types/node":"^14.14.20","clear-module":"^4.1.1","@types/semver":"^7.3.4","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_9.0.0_1611336577271_0.7356004419941413","host":"s3://npm-registry-packages"}},"0.8.0":{"name":"conf","version":"0.8.0","keywords":["dsl","conf","config","script","general"],"author":{"url":"https://github.com/jfd/","name":"Johan Dahlberg","email":"dahlberg.johan@gmail.com"},"_id":"conf@0.8.0","homepage":"https://github.com/jfd/node-conf","os":["macos","linux"],"dist":{"shasum":"84ff8578cb6027866cce518357e2e135aa13f198","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-0.8.0.tgz","integrity":"sha512-pcO34orHi58WzAZjR6P9Nttky6mY5YdKkxzNJfI5oGzx+U+hSOSa5PsMoFf0W6jt3+vZ8L5X0fVtBhYogty/SA==","signatures":[{"sig":"MEQCIA0YCV5LwW+8e/iQKRplh5xcRojufz96SpUNwIGQ16jVAiBzuuIyFUo0JRs7P6vb26+GmXSTaoSIKJLaGJeUE2cyGQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"conf","files":[""],"engines":{"node":">=0.3.0"},"repository":{"url":"git://github.com/jfd/node-conf.git","type":"git"},"_npmVersion":"0.3.9","description":"Config library for Nodejs","directories":{},"_nodeVersion":"v0.4.1","_defaultsLoaded":true,"_engineSupported":true},"9.0.1":{"name":"conf","version":"9.0.1","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@9.0.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"@typescript-eslint/no-implicit-any-catch":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"ac4808521490b791136e2a771e2b53caf7c49df8","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-9.0.1.tgz","fileCount":7,"integrity":"sha512-Ef+z0hdK0ZqcUdmijaVA1kYW0OXJDBfBWPzBWsPYQn/72PQyiq04jcuRbs7l8R/4v3MKGBIcYVxsIllCEFlXrw==","signatures":[{"sig":"MEYCIQCbyI8UKa88XvXipm4pMQRWE7XvtHEvDSmkDo51Qtlz9AIhAPi3ToLi5R4TIdtJdbOuhX4Yj8RodkGkFWU68VyTmd8N","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45139,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgH+DcCRA9TVsSAnZWagAAkDQQAKQoPGXXDLpcL4EAYIc8\nzHMKAqdK5YuyGu3y+5lllLrKuoHMdc4D190ET2/q5TRYBn0a63KElcHsukfj\nsOX690lOls1vu25lCLD7QCtaTVAml6iVTFwqFerDGM+WRQ/wvX+whRedmMe5\nSa9AxTjfqkLfY4hgowt/8fFX6blfVBjTnO1fbxd26nWPvUHKi0JKvdaan99u\nUHbDa/sOoL1G64pa2xA2+tZAUX+spbhcEd2dBO/v0Rf6vvw1vNrmNeyfy5s4\nE4H1HCxqPGbCj1b/x746TBZZV+gNyc48FHNr3bSwMnZwahUrj7G6rgCAzrjp\neIkiyqlbvEuRVMxctTDCaRQy7CkAWS/s2HQ7FRKGaub+lkC+DcpjPOw2vW58\nui2M52Qcx8ux4QZsldn+kpyrWbsFltxl6OL7thXs/bOTivVCvCDKiYGnmxq+\nSTUU0cVZ9NHYA3IPoCbf6nMsw2QSFicGe98R2yifHOqoQVjCrKRJ8lecdvwD\nr9olDPkbgzMFcMB/gflMayPbD3u9R2YWMW8FQPXYZoo4qoWoT9HB9TB6IW2a\nSU61brwBuijzYw96XsZNdRCUDrzWu+RxlmHLTAaokt5EUm6l/odLWQ5a26Mt\nuAfwQBUFp+v0Zu1y7qPMOVFSFUhybBXDR+MGzA5rufy3frxb0fKPR4bAjQVr\n0wqu\r\n=AN4T\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"804394321c1be9f2df37ff39fbbf3a76775e0f6b","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.14.10","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"14.15.1","dependencies":{"ajv":"^7.0.3","pkg-up":"^3.1.0","semver":"^7.3.4","onetime":"^5.1.2","dot-prop":"^6.0.1","make-dir":"^3.1.0","env-paths":"^2.2.0","atomically":"^1.7.0","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.37.1","ava":"^3.15.0","del":"^6.0.0","nyc":"^15.1.0","tsd":"^0.14.0","delay":"^4.4.0","tempy":"^1.0.0","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"4.1.3","@types/node":"^14.14.20","clear-module":"^4.1.1","@types/semver":"^7.3.4","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_9.0.1_1612701915536_0.2585954191260891","host":"s3://npm-registry-packages"}},"0.8.1":{"name":"conf","version":"0.8.1","keywords":["dsl","conf","config","script","general"],"author":{"url":"https://github.com/jfd/","name":"Johan Dahlberg","email":"dahlberg.johan@gmail.com"},"_id":"conf@0.8.1","homepage":"https://github.com/jfd/node-conf","os":["macos","linux"],"dist":{"shasum":"d1953e023a4f1ac908d810e0ab80c384dfeb03b2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-0.8.1.tgz","integrity":"sha512-/53OoPBy89JeFIPsZ5yV24P3cki/r+J1gyTbOUToRVRSLFY8dLcx+pzeCgIOY6zR5k07EEdGjPX77o8bgOQp6Q==","signatures":[{"sig":"MEYCIQDUMaXAWeAHaKybCLmC7On18R+G7BG1sNZOtK8mJw7KXAIhAKgZZzSxScwkUSLmhbIcoFf6Z+jqrLHg175aHasgp2Bt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"conf","engines":{"node":">=0.3.0"},"repository":{"url":"git://github.com/jfd/node-conf.git","type":"git"},"_npmVersion":"1.0.1rc6","description":"Config library for Nodejs","directories":{},"_nodeVersion":"v0.4.7","dependencies":{},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true},"9.0.2":{"name":"conf","version":"9.0.2","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@9.0.2","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"@typescript-eslint/no-implicit-any-catch":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"943589602b1ce274d9234265314336a698972bc5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-9.0.2.tgz","fileCount":7,"integrity":"sha512-rLSiilO85qHgaTBIIHQpsv8z+NnVfZq3cKuYNCXN1AOqPzced0GWZEe/A517VldRLyQYXUMyV+vszavE2jSAqw==","signatures":[{"sig":"MEUCIQCH4taIy+NxTz7axS32B6Vc1XntfCbCPT54Pui3mF5YIgIgTVAnQ03BShG94Uf84PuvQGjp9Tg3X378BQyYncKndvc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45252,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgJkrnCRA9TVsSAnZWagAAAt4P/2jNy3aagdNHsKbfbQp0\nM+DOdnydtB5vGd5UKKdqe3sPeVnFRbOS4feXta0+/A0SRkT0slWRxetE4u92\n9EDs9ojXg6mfnOm75WbpPeSPP/HIyW+yJnW/fgytdc/l7Ap39JPUngWDg1J1\nUpsPYBpv7NlsM7xRqEFHEJ+rIZUz7D2ebWwlSSUWKsP0te2G6RJYOwjZOSzT\nVnJr+u3Lh6E6j0rCjYpK2h6aF5hFPWUPvC5Kw61By3MJMIFssAurMFndV4Lq\nmVAe+2f1C7sKleWON5RnqXfI5R9Qj+mCVZjhrDeCZSGkXksPWa50rW13o8PQ\npyIiK9BD7OlexKFEtYubHuDRXZwCjlPZEvNcwaSnWC50F4Xc8kMFdA6S3nQW\nvI2KiaT9R9kwljzELajJmSDGEYSwnqdq486Z2ZlKRBPRr7tFzEojfdUMvoH9\nz69d4anQSdDR9XZQaDGGwrvjz5QmerL9izScx3nyiLaHed/YRnLBxsvk2zJt\ne1gLqWk6UyGYGwR3IxYJFbEvLLmuPUC+qNdk2c5Dd9iop/xENlzqSy/7y47z\npFuPmr/X4rAYdggU1xXkGbx04EmPRxEBPbb66G3OBQx5VG1Sylu2cxuNoEeD\ny+ZyZQ90yepChLWnOVdcgeSFXWF/w8a3+Sp54mXXm3C0un3i2kxvU5fgY9Wo\nk44j\r\n=KdIF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"c92c032062a41f8d2c590ccfedcab32b03d6dd61","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.14.10","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"10.22.1","dependencies":{"ajv":"^7.0.3","pkg-up":"^3.1.0","semver":"^7.3.4","onetime":"^5.1.2","dot-prop":"^6.0.1","make-dir":"^3.1.0","env-paths":"^2.2.0","atomically":"^1.7.0","ajv-formats":"^1.5.1","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.37.1","ava":"^3.15.0","del":"^6.0.0","nyc":"^15.1.0","tsd":"^0.14.0","delay":"^4.4.0","tempy":"^1.0.0","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"4.1.3","@types/node":"^14.14.20","clear-module":"^4.1.1","@types/semver":"^7.3.4","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_9.0.2_1613122279171_0.7378956100086531","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"conf","version":"4.1.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@4.1.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"c7029f629d7158eaf03ae118484d100f878c28b2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-4.1.0.tgz","fileCount":5,"integrity":"sha512-/G++SsVVt4MkKYZ1E+XdNEyCYghM7e7SSgx4PA55lQrmJjUY1APGGfz42YX9YpRkhLFvlhkJ5S341FWsufZZ5w==","signatures":[{"sig":"MEQCIHXe4IWEb5iTX95i40tGFJ/gEnsMsGIRyN3IO4if6dm0AiAWv6TDoTXu3fq6koLjz9DPdcRARXqkhQ0lj3qyrNLp0A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27054,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc8jtuCRA9TVsSAnZWagAAgbYP/1yCWOHyqqqViHXqVrnt\nN0O7DuWAHp6H6ju7rqMiGRs5W4eBimUDTKm3mPYPdllNVeL4p6posVKqdBvS\nRF1ybsiErkAeAia+fWS0rnCLpmUiGqbrls2+fBy9rOSb72KwywIAvkRicv30\nUEzdsDzo/hgwg1PlkKARXLvQe/utvgl+Puew8bhUVFFPi9BbdTcX1CCx1vUN\n0NwUH2bOoS5fOTr68iIX0iqG+aRVnYj+wg/ZqgB2/93Pe1JhE/CIGmpziXHU\nGbhPLI16xzfAcDN1Isd9QkcFv7dKCYUImW72VRoIz/Ea5ZygrNZlREyQO9Y0\np9uICBjeunyrfBGxlvgpBEv8VYEPNtxmNaDBjUBZxysS2izPV9qbFByFTuSm\nTtBHtFQTZeYb9WDsrhnF6x61sr8ZyBXjKKwx6UCONcmnO1d0hMYcsiwHmDcG\nd/wraLmdZg4QRKqAXOncPqFIBu5WomO84mEgCC75faCq40vmpuE65z7IBCCR\n+8qwaz5agyTnPifeG19Az9VFE+zrvQhFe4swvuZPC0Gz18aYt4mDGywnNt5K\nKe7I2svim9esvsy8ov2YU9rXFhsz5vEgQyFSwv/ZMLzAX8oCKGl3PShmtHeB\nvB+BIdnRLQ9QnztEaXp4Q9vg6xJM+hYzYxXizetZI/EAP8qDmbTionWdum+M\nN+AW\r\n=gNNP\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"gitHead":"5ca798df680954eb94862123da0385267c560622","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.9.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"8.16.0","dependencies":{"ajv":"^6.10.0","pkg-up":"^3.0.1","dot-prop":"^5.0.0","make-dir":"^3.0.0","env-paths":"^2.2.0","json-schema-typed":"^7.0.0","write-file-atomic":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.4.1","del":"^4.1.0","tsd":"^0.7.3","tempy":"^0.3.0","@types/node":"^12.0.4","clear-module":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_4.1.0_1559378797726_0.1577581699500772","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"conf","version":"8.0.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@8.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"@typescript-eslint/no-implicit-any-catch":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"cf99eb9e56b1bf287c2e8a90f7cf7d73704950e5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-8.0.0.tgz","fileCount":7,"integrity":"sha512-2dGJNRnHMR62CMCbevzBac1VNcEyxG0SEymKAzD2av5FZTzoPOhps+28E7nsJocNDJWHvBK16FfGiqJ2wqUBqA==","signatures":[{"sig":"MEUCIDm3eaJqlPGgRRWwzqJ0aWw2amRgne0rA+A3nKlN6fZyAiEA0D+eDD3faFKCye4xfaQYmpGlPkSYbJqzKVeGUmjMPBE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45198,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf91IoCRA9TVsSAnZWagAA6HQP/3RdIcq0KLQGBMqwdpaf\n+CM2jAcXw61LRZT1dzAOEJLsIz0C6kqggAmhysBQH3E2k2sZImhB+y0rNQft\nUpqTiOp8f4tOYyQaic4IatSNvEthv2XBytS+E+Z1No2P9WTysyzwr50eyoj2\nkvx9cWY+kywcegdYjYNHJcsvdIbiHSPBnAwPwbHu9RACyYXUN98VBlFit0t1\n+tG18OGzrUfVkA+ekHmFnOuQ/P0t9q8jxTnkG8rCej7KeKwTMMHYnA7nZawd\nl8/npQ2KL5OE+Tj1aYH2dUz/NNTxwOlHSoHzDKcMo9frMkD7IyUzf2hvXKNe\nK+Eq/T0EN2TDndVGXrjIPGOOkXGtdCXEwICfWnTKBdzrJf1Uu8fKcQfCXBmD\n7LTcbLvqPBNl53Eq5nR3aH07v2J6kpRns/5NXKn7Y6AjiBVzt2SCT2iYcj49\nCf4huXXvmCyMQiXC1nZXxLLz2hgUTFxGQ1y8IMGwIQyWOwPVkZ86DThzPxET\no9xfZsJXwcclEbp2Xd+aiKo9osD4ql/mNxelzzJHxZjpRzJUhoEKWTyDG5nc\n7c/EO87bjeFsrZHkuTcRCq5WbV5xCHrRVLlHRb6qAJz1fqoAoDlncuvEv2aM\nc7tZepqBchSdPzH5ILsuFD+wQ0uRAhMcSZEP8hIF5DRqQBS8Mg9HIcL/C/55\n9+U5\r\n=pB18\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"a96e9d78ac7e675a24ed702f1c21dd46a0b3ae0e","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.14.10","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"15.5.0","dependencies":{"ajv":"^7.0.3","pkg-up":"^3.1.0","semver":"^7.3.4","onetime":"^5.1.2","dot-prop":"^6.0.1","make-dir":"^3.1.0","env-paths":"^2.2.0","atomically":"^1.7.0","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.37.1","ava":"^3.15.0","del":"^6.0.0","nyc":"^15.1.0","tsd":"^0.14.0","delay":"^4.4.0","tempy":"^1.0.0","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"4.1.3","@types/node":"^14.14.20","clear-module":"^4.1.1","@types/semver":"^7.3.4","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_8.0.0_1610043943594_0.48361812851179775","host":"s3://npm-registry-packages"}},"0.10.0":{"name":"conf","version":"0.10.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@0.10.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"esnext":true},"dist":{"shasum":"df73a4a280a7c8217c34f48bebd29d56048b413d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-0.10.0.tgz","integrity":"sha512-uuHDPQXl7TAj5phvus55O06Qwb1p5GVcGYH1CYNpHi1nQ2uIj+FHJ+vfAF0nzzyIIt9YZpLx26HdrdLoPSuWqA==","signatures":[{"sig":"MEYCIQC8JB9BlVah2OGeyl51e8YKBPK/I7t2oK/0E3pvIZBEtAIhAJYgjgKsd1dkxNaRo7dZ1lkq3zhIeQHlpEIUXfYlE0vw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"df73a4a280a7c8217c34f48bebd29d56048b413d","gitHead":"fd07b54796481e151a0f0d4da444cfe902419ac3","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"2.15.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"4.4.2","dependencies":{"mkdirp":"^0.5.1","pkg-up":"^1.0.0","dot-prop":"^3.0.0","env-paths":"^0.1.0"},"devDependencies":{"xo":"*","ava":"*","tempfile":"^1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/conf-0.10.0.tgz_1466549696937_0.032492544734850526","host":"packages-12-west.internal.npmjs.com"}},"7.0.1":{"name":"conf","version":"7.0.1","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@7.0.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"a3ddd860db0357219b9ccdf92fd618e161fe6848","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-7.0.1.tgz","fileCount":7,"integrity":"sha512-UFA9EPFKK+tedCjz4JKQSxAN0/0r0rjURdq9N805JXWOhFzmr7fTLmG1cnsHCvyYYd65wRjf0KB8zg+WPelkvA==","signatures":[{"sig":"MEUCIQCSSI/t9VbB+oIdA/fDtWeyxoKLmlPAj7aF9jl9N3PVgwIgBWYyfY46ZbhT4ghll/MPZhh/NfTMkrGBqWXWZ+y9ldE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45206,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe/1gQCRA9TVsSAnZWagAAkKgQAJWoPaAj0tEqMR8/5mHV\nrYcGHeMdvlMsuRHGxLWNCEe1+8CWGsM/46PSaXXcudiO0w7F6qTbgKWqj9py\n9QsEw/on2oQ/MnQr5Rhdirn0fTDuchP509kOW4SIxPXDxuxD4Wq8c/4Vj7wE\nVS8Xuv1Wn6SU45uyo8dpOU+laJ7GJtIZbWrFugG+txebJTn2bdj62W6YYwHa\nyQuVRRHxOm+cBXoRmyrByHPY3LKSl8ECUuvK9GcM86KNPRRYWhQEsa/fu3AF\nczT32uHVuk/XPOlGdApNXZLYNMNIAiGeySFOBWRoDFbIUPl7UD1RqMoNBmi9\nPQhI8oRu2MKBupX+ypGfv36VwFqRIqpsjoTUM9wJpfTMDuRzxr9zCAC6q2Ds\noYtOmv2DCQ5FcXTWv2lovD3Mz+9OI8xwjtim8muMGlR8NYoe0v02mB2ioAdH\niTyClL6EEyTaHjt2nslh8JtD2M9S98IKyfEjV06PNHZ4o9c0lf6gGnwPWZLD\nhYvOPRorfIo4gP5zYQncqdyBfsj7p+FAKsyhNfVJi8mlG96mir4YalBsrDhg\npd4nFnfifuUX99zT7yPOLfNCAazNPIsGOKEutqQWNhsLWlAgbDQsAEK8tgH7\nh7IhCPaiQVX24krxwWnYqsd2xxElaK4qw+4939cde6l+UpGBEdU3U3LuJ0RI\npQsP\r\n=n7Ub\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"bbf4fd40e944146f63f40a06fe14a531dcf8e941","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepare":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.14.5","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"14.5.0","dependencies":{"ajv":"^6.12.2","pkg-up":"^3.1.0","semver":"^7.3.2","onetime":"^5.1.0","dot-prop":"^5.2.0","make-dir":"^3.1.0","env-paths":"^2.2.0","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3","write-file-atomic":"^3.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.32.0","ava":"^3.9.0","del":"^5.1.0","nyc":"^15.1.0","tsd":"^0.12.1","delay":"^4.3.0","tempy":"^0.5.0","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"3.9.6","@types/node":"^14.0.14","clear-module":"^4.1.1","@types/semver":"^7.3.1","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_7.0.1_1593792528260_0.6129460540748946","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"conf","version":"2.1.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@2.1.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"43ade5879a82ff23dbeb466995d50209f7dfcd07","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-2.1.0.tgz","fileCount":4,"integrity":"sha512-IcWtHiBjeNtyCG+XK/v9Pz8Q4+nsyvO60Zabn6SsHTR2TMaLN6os/jrUtuQnATb12RI82RHKt+PVEXTsH6XMXQ==","signatures":[{"sig":"MEYCIQD79Q1BVnORUGe3DmJSCs/H/0U1xbHIuTO1cimvVyuAjAIhAJhmjwU1y2sR7TNC1zjiJe2Zhl2TwQbXF5xcQVrNwnKW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12326,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb6YzNCRA9TVsSAnZWagAA/5IP/1Vo/TV4iUxt6QNRqbR2\nljiAh8gnVo5UVPGnCnW/zrdv1aOu+gZuh/SCBDH9lLQ0nqBzlbFIFIJ6gD/b\n9q9c1oZEW8yX7F7dXWO3quzJHqe/Pp9QjfML+e7MjunQNui4zVjlHqlw+cuz\nUg3AsKsSbIcyZ68f4cUN90rIdOnM0cPzeEidoxPfOa/VXDGTu37O95sYq3Zy\ncqWN9uVltlIvy63gsmZvlLJ6QCofsbwfEo3CaucywVtTdR1Z3GRq5BkfCpWH\nu0cn7udOpfsVr8OiZiHtuFpT3kL4SnnGRSe40QQyFuTK8XkGgs6Ono0O4hun\nU9U3qXpfNTiDwi0PN82V0JJnLE0YCncy0zAAKmG/+BVBUEbA48U7ICUfI8vm\nnh74xCOlmyRKrnjVatjzzJqyUCMkicFi6l+ajEM8ZFR/vygOT5RxhTKh1vry\n/hLRw+ZfO/94OL7bzpb+pMQJZQVtKOgyb72SER7oDo1n52/XEsniNSPKwits\ngovmsWm/TiV2F0odQZhT9/MRBd2+jpf/jDXnuJGLPXWCthrbB3IoaCtJonmG\n2WNkC/ep5DIMx6GO7n8HTK0VtZx7a3B3qEVbuYRdGeI128IApYJbHZQQ/QlS\nbZl+Kfa/duwMgJQYlu1itXpFqDkMHuaO47skxfIJM/Rrpe0cyDvmJViZ/PkD\nYxfB\r\n=ZhaL\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"},"gitHead":"5787a7c5e4415e8b7f45291ff4c5aac0234eef57","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.4.1","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"11.1.0","dependencies":{"pkg-up":"^2.0.0","dot-prop":"^4.1.0","make-dir":"^1.0.0","env-paths":"^1.0.0","write-file-atomic":"^2.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.23.0","ava":"^0.25.0","del":"^3.0.0","tempy":"^0.2.1","clear-module":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_2.1.0_1542032588695_0.9549573012007351","host":"s3://npm-registry-packages"}},"0.12.0":{"name":"conf","version":"0.12.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@0.12.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"8498c599e2487fec703505d181c113875b8c310c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-0.12.0.tgz","integrity":"sha512-dHDwL2TBTq8ECH4ab8x33Tq54i3oCy8ZwvIJ685k8moYkayf2bgoamuFE0Wn++Iwe+CmM4ajOiML/t3Zb9Plrw==","signatures":[{"sig":"MEQCIDSazK6qr0OzWNmkxT8nY4TMHsPENhtlUdZYbjiYzsSfAiBfpGLacYqHNo2V0Nv4ur2/KGKznjhE3ruSCerrD8WEOQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"8498c599e2487fec703505d181c113875b8c310c","gitHead":"51c6c89c45011dbd8a18bd8fdd14b504054279af","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"4.0.5","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"7.4.0","dependencies":{"mkdirp":"^0.5.1","pkg-up":"^1.0.0","dot-prop":"^4.1.0","env-paths":"^1.0.0"},"devDependencies":{"xo":"*","ava":"*","del":"^2.2.1","tempfile":"^1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/conf-0.12.0.tgz_1484650944723_0.31656090170145035","host":"packages-18-east.internal.npmjs.com"}},"13.0.1":{"name":"conf","version":"13.0.1","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@13.0.1","homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"unicorn/prevent-abbreviations":"off","@typescript-eslint/ban-ts-comment":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","extensions":{"ts":"module"},"nodeArguments":["--loader=ts-node/esm"],"workerThreads":false},"dist":{"shasum":"a98693789c28507994f06ea0121922dab76591df","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-13.0.1.tgz","fileCount":7,"integrity":"sha512-l9Uwc9eOnz39oADzGO2cSBDi7siv8lwO+31ocQ2nOJijnDiW3pxqm9VV10DPYUO28wW83DjABoUqY1nfHRR2hQ==","signatures":[{"sig":"MEUCIQDiemt00LtfTqAXcQoITL21a4dbuf8gtOzVyCRDgMCTHQIgZkjbd9ToDRVqIzaSrZKwKKnZS0H4m18DuzF+h3WTjMY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45760},"type":"module","engines":{"node":">=18"},"exports":{"types":"./dist/source/index.d.ts","default":"./dist/source/index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"608adb0c46fb1680ddbd9833043478367a64c120","scripts":{"test":"xo && npm run build && ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"10.6.0","description":"Simple config handling for your app or module","directories":{},"sideEffects":false,"_nodeVersion":"22.2.0","dependencies":{"ajv":"^8.16.0","semver":"^7.6.2","dot-prop":"^9.0.0","env-paths":"^3.0.0","atomically":"^2.0.3","ajv-formats":"^3.0.1","debounce-fn":"^6.0.0","json-schema-typed":"^8.0.1","uint8array-extras":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.58.0","ava":"^6.1.3","del":"^7.1.0","tsd":"^0.31.0","delay":"^6.0.0","tempy":"^3.1.0","del-cli":"^5.1.0","p-event":"^6.0.1","ts-node":"^10.9.2","typescript":"^5.4.5","@types/node":"^20.14.2","@types/semver":"^7.5.8","@sindresorhus/tsconfig":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_13.0.1_1719050929688_0.5031618971913452","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"conf","version":"7.0.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@7.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"693f5a776c868f6b3bec9133bee62074673f971d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-7.0.0.tgz","fileCount":4,"integrity":"sha512-RjnDPZL07SWOj10eyEHcVYWNnhr83jldz4sqozUKZlhbgn59CiJAe/QeENouYwpn6oM9GRBYa9y8AK2p48nDtw==","signatures":[{"sig":"MEYCIQCToNBtiy13v/v/DHWcX1ZJkrFHwpv17F75cGmFYSaxZAIhALgAn+VX3B1IHW3EfIEN08qBoXJJV+4SQq9VSb39kk5t","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16893,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe/0goCRA9TVsSAnZWagAAfF0QAIZa8oFRn9saLMIK2a7t\nr1dFd1cRmMSCAdao5oTOThKi7AEhjO8Iws8mlxQEtIISHbJqhmwEd7GIlkos\n0OJ0pkdJoOUyXTUFXBRaxuMEJiBcZjJRntqZMpJaw2WFVi5mW2GbuYXh5O7Z\nXFE34CZ/lFj0qM078HKSecTgezUZYkOhcccdAeUrKvW23whTZa3Tzu8pXRSq\n+WHIsMDJSLkoy5SEoRuTFAyREI6dFku79KAPxOvaGoSuNw4/By/joicGspMN\nC5l/sD3AiN9Mb3TY35CDJy0y9LYKgLnsjJNHa3xJmD150Uvzzf+yOv/2lbM1\nrfEj52tk6Kb8jq1k+r2qHVb1miKJbN1JcVVDOwbQRKbVQEwAvPBSS9SkZPHM\nMPeQyy+Cs7cc2rfXEWkTXyBTFQZb2RKYfK/M5TXenukxT2hmSq37qqvRkePK\nDcgQ5cV8TM2NvtL9jXBcz+wUpdL3Ya+st0fbZGi+haI0+BKiANF2hsBD0GMs\nYG9j/SYYh09KpCi9Fh8CvNm8tRd8dTEzrgDkOBbZ9/UOcHpWLFTwQ29/AyY2\nMcnNlXxEHtj3ej6E4mxaPN6GAoblFIM/gPTMHMBbtBx1asgENNhlc1VLrIqH\nnu4jnSn9GY9YrT9Jo2wLLRndKzAZkzwO9urlacl/6zJ9foxL//W1fev8JK4U\nmohm\r\n=cujT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"a4107f033d8d38ff59c6f81d3b24d273507f2650","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepare":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.14.5","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"14.5.0","dependencies":{"ajv":"^6.12.2","pkg-up":"^3.1.0","semver":"^7.3.2","onetime":"^5.1.0","dot-prop":"^5.2.0","make-dir":"^3.1.0","env-paths":"^2.2.0","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3","write-file-atomic":"^3.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.32.0","ava":"^3.9.0","del":"^5.1.0","nyc":"^15.1.0","tsd":"^0.12.1","delay":"^4.3.0","tempy":"^0.5.0","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"3.9.6","@types/node":"^14.0.14","clear-module":"^4.1.1","@types/semver":"^7.3.1","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_7.0.0_1593788456299_0.9610092977482148","host":"s3://npm-registry-packages"}},"13.0.0":{"name":"conf","version":"13.0.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@13.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"unicorn/prevent-abbreviations":"off","@typescript-eslint/ban-ts-comment":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","extensions":{"ts":"module"},"nodeArguments":["--loader=ts-node/esm"],"workerThreads":false},"dist":{"shasum":"465691883c81942b42b018591db6f8ad7f09dceb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-13.0.0.tgz","fileCount":7,"integrity":"sha512-S+xFDZ9UDDNJu+cD42hu4MUaeIslm6EMAE8Gqwh2n31P85zJnkvATWsczyHR22G+8SSa4a9P+sf5dTfz/sSPkg==","signatures":[{"sig":"MEYCIQCdxmHQZKGcIUhUh0nPAOeCjkJ/LHmaqucOWhalHIqIKwIhAJLewkzMydg+V9vWG0FpBFCDfBXsvdaAgyNSogPKuVMw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45747},"type":"module","engines":{"node":">=18"},"exports":{"types":"./dist/source/index.d.ts","default":"./dist/source/index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"8904e973e8fe16b0517e4c02df5f697b9baebf11","scripts":{"test":"xo && npm run build && ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"10.6.0","description":"Simple config handling for your app or module","directories":{},"sideEffects":false,"_nodeVersion":"20.12.2","dependencies":{"ajv":"^8.16.0","semver":"^7.6.2","dot-prop":"^9.0.0","env-paths":"^3.0.0","atomically":"^2.0.3","ajv-formats":"^3.0.1","debounce-fn":"^6.0.0","json-schema-typed":"^8.0.1","uint8array-extras":"^1.1.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.58.0","ava":"^6.1.3","del":"^7.1.0","tsd":"^0.31.0","delay":"^6.0.0","tempy":"^3.1.0","del-cli":"^5.1.0","p-event":"^6.0.1","ts-node":"^10.9.2","typescript":"^5.4.5","@types/node":"^20.14.2","@types/semver":"^7.5.8","@sindresorhus/tsconfig":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_13.0.0_1718385908749_0.9672443903450905","host":"s3://npm-registry-packages"}},"14.0.0":{"name":"conf","version":"14.0.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@14.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"unicorn/prevent-abbreviations":"off","@typescript-eslint/ban-ts-comment":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","extensions":{"ts":"module"},"nodeArguments":["--loader=ts-node/esm"],"workerThreads":false},"dist":{"shasum":"39b9969ebfaa31ec3e3d3f177943cbbcb9062788","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-14.0.0.tgz","fileCount":7,"integrity":"sha512-L6BuueHTRuJHQvQVc6YXYZRtN5vJUtOdCTLn0tRYYV5azfbAFcPghB5zEE40mVrV6w7slMTqUfkDomutIK14fw==","signatures":[{"sig":"MEYCIQDp7U4oQxJf4PruXOTlEZH9a649AY/Y7mtj1ViHo0Ti7AIhALApEyONupjdRgZNkbEMQr/ss5K7Z1BXvpW+puZ91Nnj","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":49153},"type":"module","engines":{"node":">=20"},"exports":{"types":"./dist/source/index.d.ts","default":"./dist/source/index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"655f87c61bbf8240dfdedcd4fdf34a0457708b27","scripts":{"test":"xo && npm run build && ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"10.9.2","description":"Simple config handling for your app or module","directories":{},"sideEffects":false,"_nodeVersion":"20.19.1","dependencies":{"ajv":"^8.17.1","semver":"^7.7.2","dot-prop":"^9.0.0","env-paths":"^3.0.0","atomically":"^2.0.3","ajv-formats":"^3.0.1","debounce-fn":"^6.0.0","json-schema-typed":"^8.0.1","uint8array-extras":"^1.4.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.0.5","ava":"^6.3.0","del":"^8.0.0","tsd":"^0.32.0","delay":"^6.0.0","tempy":"^3.1.0","del-cli":"^6.0.0","p-event":"^6.0.1","ts-node":"^10.9.2","typescript":"^5.8.3","@types/node":"^22.15.30","@types/semver":"^7.7.0","@sindresorhus/tsconfig":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_14.0.0_1749167856210_0.11492609810313548","host":"s3://npm-registry-packages-npm-production"}},"1.1.2":{"name":"conf","version":"1.1.2","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@1.1.2","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"a164003022dd1643cd5abd9653071bd3b0a19f50","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-1.1.2.tgz","integrity":"sha512-0ZvmcIhd7IGdB2Kx4Uz9/dRibqLb2c9q2uaMQJmq54m1qSZfULL0RzU+APThtAxiXM/iNbZ346EeX7BtukJZOg==","signatures":[{"sig":"MEYCIQCx1oqjl+fxOb4TGV2GxuB42TM2peDcrpyp8hV67KBdGgIhAJ8iZGleFSCZ4gVgJ1AgYi3gX88D989sROUZmk+3LHue","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js"],"gitHead":"cb68aa177e03529e5e5aac84e49ffa98c69be97e","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"5.0.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"8.0.0","dependencies":{"pkg-up":"^2.0.0","dot-prop":"^4.1.0","make-dir":"^1.0.0","env-paths":"^1.0.0"},"devDependencies":{"xo":"*","ava":"*","del":"^2.2.1","tempy":"^0.1.0","clear-module":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conf-1.1.2.tgz_1496849018030_0.6094776936806738","host":"s3://npm-registry-packages"}},"1.3.0":{"name":"conf","version":"1.3.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@1.3.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"da154500e7f2842fcd8bcc5d5882aaadac5e00d4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-1.3.0.tgz","integrity":"sha512-EAvmxprAKRtArjTAj0qFnbFyweCiuFEUy/JbPnKlZ6xqLFSBIs0e/PVP0kyGbsXsma+WpWFy2MrPWEcReyDFgw==","signatures":[{"sig":"MEUCIQDGKarGxRl+lcYTsXqQtw8pmsQ3WUBa9J7h18RdJWSgegIgEfgy8BbvmLwKfnWSY/BmaLqcoYUkty2a5fXmve51tmA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js"],"engines":{"node":">=4"},"gitHead":"f68e16b2ad849e5be368ed935ac64858104b85c0","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"5.3.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"8.4.0","dependencies":{"pkg-up":"^2.0.0","dot-prop":"^4.1.0","make-dir":"^1.0.0","env-paths":"^1.0.0","write-file-atomic":"^2.3.0"},"devDependencies":{"xo":"*","ava":"*","del":"^3.0.0","tempy":"^0.1.0","clear-module":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conf-1.3.0.tgz_1505626587866_0.7392974025569856","host":"s3://npm-registry-packages"}},"6.2.2":{"name":"conf","version":"6.2.2","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@6.2.2","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"8371a76cf3513a326fa1d4e2b64b28dc4591a80d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-6.2.2.tgz","fileCount":5,"integrity":"sha512-hnmqRsFZLB+2ZBnGaGOPAUFwnw9bTspkIcy1C6ul7nEElSV9/qvYyGY8qHw97DMk06pleAkgWbh/z/gwG34Fyw==","signatures":[{"sig":"MEQCIBkmClf4yTitzquZbnOfIsKZ3+xusMnqCW4uramBF0KqAiBjZmasGFL2/FkHj6Uv6opZa9vrIDitp/6rgmNoTFzOuw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeiamYCRA9TVsSAnZWagAAPSgP/idd5K46FLQZpfI90qMO\nkN2FJXNT9luztHzJNub1AxQCjSOk6g8powJ8Txd5/8g+djNMFeUHUSHME1AW\nnFC91rHmfCLEpyWo4Fg2Sia5hUvB/rto4FdAwj76gbIkHGerz462R+yE45tA\nUagqxsv1Aea/dTsBb85/LqlZtBnr8AO2kU2fQcu3exh/sDSkV0m3OvADkHIK\nbtBwROEE1tsA0UcLlETUsOKscg2GJDgECZjp6sS36gtdLADGH80O628Ivl8R\nTuOPu6d37eiHOy2D0wqnwUXyGYeGY/dW5CkcT1Dz5FudVMgzcUSuqMCeaxD4\nRlJ5aUfsQE6aYf6/uqQMN7Ik17GPjeKZf38bNjEXP8Pu88sB/AISSdRNl1XK\nS7SLJNzhb+qcJ4y5j6QTIHgbAs7Ktn/qVsMb2WNKbLJPWuKaaPyOCMKXjDDe\nXoe9WqYBzCsgC+JpwnekejIOho+xD1qhiKGdaCcaUcrDf1EjS4v+v5h0Ucw1\nOZQepWyUzJVUDzffDtQRUwpq48XeKp5c3af2VnZAp+k+Cak/vXZDhCzsNIzb\nxTDmmrfg94bvPqRvAmVuUtJY5n7I3UohAKKSpugr1pjj32gfD6a3lzK2EojL\nB65qqCD/fKrrtgdx4ZQJm7reI21aJnX1piivzHtCy0dGsEaHjocPwV0bF7b6\n+xlO\r\n=whgq\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"06cf8c827b66ed90b5883b8e7b75eb52ec6814e0","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.13.4","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"10.19.0","dependencies":{"ajv":"^6.10.2","pkg-up":"^3.0.1","semver":"^6.2.0","onetime":"^5.1.0","dot-prop":"^5.0.0","make-dir":"^3.0.0","env-paths":"^2.2.0","debounce-fn":"^3.0.1","json-schema-typed":"^7.0.1","write-file-atomic":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^2.3.0","del":"^5.1.0","tsd":"^0.11.0","delay":"^4.3.0","tempy":"^0.3.0","p-event":"^4.1.0","@types/node":"^12.7.4","clear-module":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_6.2.2_1586080151822_0.9323493573431527","host":"s3://npm-registry-packages"}},"1.3.1":{"name":"conf","version":"1.3.1","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@1.3.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"829a82b081bb355129992333be1598f797a56f58","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-1.3.1.tgz","integrity":"sha512-SGcfliUdpz5h1oZjCN5tgUwRQ/kCrTbo/PsG0yW1enGsZL5EpHVkBZoj2ERlJ8F7SiD/GfXfGm6WTHA+4OcxNA==","signatures":[{"sig":"MEYCIQD3lL0tcpK8oMXZ3pyOBJ7osyOaSCdCOdfGPZ2dB0RLEgIhAN2UP2JBcyoVmhRMtZUhhoD4yJ04qocQIZ9QVCvgjwEq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js"],"engines":{"node":">=4"},"gitHead":"1d674a7cf780f455eb8aee1e34cc6b8cab212c7c","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"5.3.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"8.5.0","dependencies":{"pkg-up":"^2.0.0","dot-prop":"^4.1.0","make-dir":"^1.0.0","env-paths":"^1.0.0","write-file-atomic":"^2.3.0"},"devDependencies":{"xo":"*","ava":"*","del":"^3.0.0","tempy":"^0.1.0","clear-module":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conf-1.3.1.tgz_1506321933724_0.26697653951123357","host":"s3://npm-registry-packages"}},"6.2.3":{"name":"conf","version":"6.2.3","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@6.2.3","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"0c0611f0fca25174d72c7b633ff6af9173a55f62","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-6.2.3.tgz","fileCount":5,"integrity":"sha512-xwce2fuN77kiXiUq0tQImwJM0SXkGKt1/uZYyiQ9OWUKUQmF6gzIMyCL0idlpgQelKomSFMkAGn2QK7JJ2c1Cg==","signatures":[{"sig":"MEQCIF8LZiJ8sLCTTH6Rv2wi0lhvxblVM3J3keNcyLiOqBUPAiAgkQnh9hYTjUCZh9NndUfJyXH7VHP7S3ReKHSq5dEbbA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36570,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeiapcCRA9TVsSAnZWagAAymYP/jAErQBoIKB+nzKkiCsh\ns6UMiji4cIFzf2PW40B+cMJBPZR+7BzkEHDvpcZzyPPFpxhv5RNFj355oXZc\nCunNsvzZz+xUTHGTLIfoCIQUrffyk32tuN5hyhMTc18W3OwELMDHNnPV+ae8\nzFX8KwMFDKnZXYE7m37j+UOQ7Qv7w+i0V0PGrOoDmSnh1JBJq9AH5804tW7d\nhT6gw76bPocJDLQiB5w8GdI+WVwLBvBYV8T2B44rtg8x3I3C1vH7CyviXzVX\nyLEDZhia8qaQlYPF64mpGj6Lz4UFhPmt9acVBUymAn29+BJMCibvCpsFY8gK\n6v7SF95d2Zk1iplVQmwBF+SGJUcyXWpzFX3EWYjS5NR07WNt0EcfNuk4YRj0\n7OOLQDZdpwXIC+w81n6DYGrNvWGvopma3RHiqYbUb+yak+EfgPq0yi2nAuyE\nbKNJRgrogqIs4qlMU4xLWyDQ1iiu9Z0HYiJBD9TqeiDN1mFSiU4Dwlxp0F2Z\naZosCRz/1Y0YgjeKTVzqq7q2ZLOJLbh7X241JmLnN5llHOw2J8IljNweDDn1\nkiE3MhB9anFkhHVMklGYY6B3Z26CRsRm9T5OG/BisGexMDCLwRsK9L2KSCcR\nsi0eVF+SzDXVsWpaWRuSlB+STQjqgB0IiW8wAb5CzddXvcCLjC469Zj91Aok\n8RRN\r\n=kBm8\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"ebde077dce0eeb4aef533ac440ae54d1aab269a0","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.13.4","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"10.19.0","dependencies":{"ajv":"^6.10.2","pkg-up":"^3.0.1","semver":"^6.2.0","onetime":"^5.1.0","dot-prop":"^5.0.0","make-dir":"^3.0.0","env-paths":"^2.2.0","debounce-fn":"^3.0.1","json-schema-typed":"^7.0.1","write-file-atomic":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^2.3.0","del":"^5.1.0","tsd":"^0.11.0","delay":"^4.3.0","tempy":"^0.3.0","p-event":"^4.1.0","@types/node":"^12.7.4","clear-module":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_6.2.3_1586080348320_0.13277568709268128","host":"s3://npm-registry-packages"}},"10.1.2":{"name":"conf","version":"10.1.2","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@10.1.2","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"@typescript-eslint/no-implicit-any-catch":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"50132158f388756fa9dea3048f6b47935315c14e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-10.1.2.tgz","fileCount":7,"integrity":"sha512-o9Fv1Mv+6A0JpoayQ8JleNp3hhkbOJP/Re/Q+QqxMPHPkABVsRjQGWZn9A5GcqLiTNC6d89p2PB5ZhHVDSMwyg==","signatures":[{"sig":"MEQCICF6/MT21kiF/RjAOXOCm6o6AXM9EUQoCi+dwImL+aduAiASvSqjk4Ouf/lejDrxcQUsanGEWssMwvf6ryWQWX/ISw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47849,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiRKtPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmov0A//R0XsEr/QTn+Ya3bmg2Y/kCOBR56tAIv1ITnjBDRK7v36FVSs\r\nGMBGfwZB1O5KOv4mWgYtYAwQmAtY5VUQJe3WIvVQ06auv4GKWvqNM7+JzSr2\r\nJt8cGh3MUL39eEgRTPBJucdxAfPeCgOmkSPqUbIg3lntixrJjymuLjXLpf3c\r\nb5WHkMobger3dhv6SWfUPB+ZU5wIsCXIg5p0DvCg+ZYmABnL/c4Xumh+7pGY\r\nR5frZLZdGCuQKn9jGGJehiLslamt3/IbLARjdOXvFCTGNoSx/EMkmobDKZfV\r\nijZ7YaEIny1kWktT8ldZKkA1k0Vei2BmvJwAB4BrxgU9sxCJ1/Td47CYGHgr\r\nb+22eLrbP9/wHlttGl+qZvxsVmKlhT/YAEJGFsHFP8EJQdJBnrLMh007ek3o\r\niaTfNuiQT8WLO1Djj63hQRrbCWBfqdXvcdVEWCRzqOMzJm27BtdXPfbEOI3x\r\nutxb6c3v/8iu+49tR6GVZlfLyXQ5HP1B4cRM8hUS7fmp+hOn55P5DvTwjNQD\r\n/T4qOpi6p9R0E1zK/mhNA9006er/jEU5npqtzTP3Bdu1XBcdbatfJPNN4ULn\r\nsL6h1zQ6uZGTrtzYr22ddzOrI/XtBzpEfvpQM7DZKmB5ywdGwEsK5oSLqwzS\r\n1XxOD9GF+LGs6zB/v+itA3AlDZbFGkfg2E4=\r\n=9syl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=12"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"06b640d8cfa22d020b1ac1996a9dca0fc0289f83","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"8.3.2","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"16.14.0","dependencies":{"ajv":"^8.6.3","pkg-up":"^3.1.0","semver":"^7.3.5","onetime":"^5.1.2","dot-prop":"^6.0.1","env-paths":"^2.2.1","atomically":"^1.7.0","ajv-formats":"^2.1.1","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.38.2","ava":"^3.15.0","del":"^6.0.0","nyc":"^15.1.0","tsd":"^0.14.0","delay":"^5.0.0","tempy":"^1.0.1","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"^4.4.3","@types/node":"^14.14.41","clear-module":"^4.1.1","@types/semver":"^7.3.4","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_10.1.2_1648667471511_0.5991782874446019","host":"s3://npm-registry-packages"}},"6.2.0":{"name":"conf","version":"6.2.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@6.2.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"274d37a0a2e50757ffb89336e954d08718eb359a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-6.2.0.tgz","fileCount":5,"integrity":"sha512-fvl40R6YemHrFsNiyP7TD0tzOe3pQD2dfT2s20WvCaq57A1oV+RImbhn2Y4sQGDz1lB0wNSb7dPcPIvQB69YNA==","signatures":[{"sig":"MEUCICoZ+22dP0RxMn2OfOqMlvTucvcFtqQ8Q/FPjpNZd7PFAiEA7ivpkLYdHt6Xm2TDig05GGLw/0+f/gAZ1DX6vnWb1PU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35639,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdu9nCCRA9TVsSAnZWagAAxOsP/1ZjKMq/JNRBmEuaUrYP\ncIi3ukKAJznpQWl0Lg6Svj9TyT4jyr/m7bTBK1Vm/NAbSIHYt1/FTXQJFf2I\nsg7i5jqlLNO04Gosha/UGxWjvOUQPsvPFBnjh0UoJl2y/Y12i+LzygOUFfQY\nFn84Dnbzx9k36cgZajSa5KZpYllS5let/wb2BYqFzPQFL+V1gxP+LaZ3jZkd\nnOyQKKNc6IIXJdJ58lFhwSqKmWjJRHBGfZSpS1SZfoybq6MYJ2ToP3HTGTwL\nlkmZ31W8Ov4DShdZkmTddhZ3RDaHXBzSLm+wkPMGOFt+pgCZZZpCXda7P2eQ\nyU1xEtsezaSb2kU0wEicdtAKHcgAAxF7ffqcnWz4Uck7pQlMcpVTgmAEUWP1\nyWDfIg/LoAuT7R/z6AwIH167q0pvrZiRQoXngHvGKshKdgeFVlKUs4wew8a9\n+yZnrOrYXAIDbwbopVo4iEiaCNfDKJoY//Jsz/AXkLMYdf8xwuSoF3Ql0hqo\nWPaneZNek7R4k3i1hX/7m9WA8sEYg8fGChHInbzlXIiGFT45QlaYmJasmAZt\nZMeCplIREl0cl8k1qPFBhkqKS8Bw5ArzyXLsS2ppr/6JTLNwK3Cof84pOcB7\ngjER8WzXY59oEUiN1czGdhsI+eNvvXBy5W4k72vYuYM2xfa9J/VWVy5Krccf\nc08x\r\n=UOO6\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"gitHead":"97bcc918a109ba964f7ef8a091cc5a762ae03576","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.12.1","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"10.16.3","dependencies":{"ajv":"^6.10.2","pkg-up":"^3.0.1","semver":"^6.2.0","onetime":"^5.1.0","dot-prop":"^5.0.0","make-dir":"^3.0.0","env-paths":"^2.2.0","debounce-fn":"^3.0.1","json-schema-typed":"^7.0.1","write-file-atomic":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^2.3.0","del":"^5.1.0","tsd":"^0.7.4","delay":"^4.3.0","tempy":"^0.3.0","p-event":"^4.1.0","@types/node":"^12.7.4","clear-module":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_6.2.0_1572592066323_0.4766519875469706","host":"s3://npm-registry-packages"}},"10.1.1":{"name":"conf","version":"10.1.1","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@10.1.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"@typescript-eslint/no-implicit-any-catch":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"ff08046d5aeeee0eaff55d57f5b4319193c3dfda","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-10.1.1.tgz","fileCount":7,"integrity":"sha512-z2civwq/k8TMYtcn3SVP0Peso4otIWnHtcTuHhQ0zDZDdP4NTxqEc8owfkz4zBsdMYdn/LFcE+ZhbCeqkhtq3Q==","signatures":[{"sig":"MEUCIAf3rbllnqP8YdOt+KJMOot48udTv79eGlS/d2dtvlLKAiEAtw6amStFiTgctzViyRH+xXwakm2aMYUeYFS58zyN9/8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47793,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhpHHJCRA9TVsSAnZWagAASyEP/05ZPvwN/uN0hzxAol/5\nJ/2kOeNiWNbyNHGizFXGI/cocZmISc4fWcDC5cBIRNf/zCUdE+KsaAetHdX1\nfZqZUJ7h1M2WupNBM5Heon+VWjS6liul+w7m6ymL+UlhQeKrBsEP+F27fBxD\ntpWk7tcx2iS+YSFykqp31Q9awT7Bgk8V4Si+jZOELI2jfbsUOvUtFXuIx6zN\nMYIs1gMfPr52H5TwGj4SuajM2Y7MxJgVPX3I96O/MiX0vgxBo5NX39E7bP36\nzqtYYXwr0PJr5d7e19qeD5k5Yvm85YhzZdmBJylUFPKNM01foXW2rk0NPosW\nu6W4vBJwJLE2AJvQU/bfYUFgUgmKu4fmF8iv0loB1t+Y8+Y6MQJjo9QBNuZk\nVgk5l0IlETuMEjTJZGD9jQSEfhiMjRc10H/X6Ze236vxv3R8vquI1M5BHaNw\n36SStg1YTy20yxedamfZik6BMumwEG6uItEhgh5DerF44D6qb/fYGch8pVLa\nDy+7Y6sOEqHl+05IRw8zwE0VygEbm6qslCNJVtzrxFZLAMkV96gNR8JgF7IL\nxgOHR7+1UTEqYqeVEImcHtOqoMnIpe7wbyrst6UAupVAgm5bt41J0SzfPxam\n5O2GgBz995lRx1zn3a8/+lkSl9QBo9jH1Jy4ipX6AIPdQLXo1+quUUYtx15R\nIXuP\r\n=sV3L\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=12"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"9d535a3d05a4cfd6bce4d033a1690b9c7d3b7bb9","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"8.1.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"12.22.1","dependencies":{"ajv":"^8.6.3","pkg-up":"^3.1.0","semver":"^7.3.5","onetime":"^5.1.2","dot-prop":"^6.0.1","env-paths":"^2.2.1","atomically":"^1.7.0","ajv-formats":"^2.1.1","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.38.2","ava":"^3.15.0","del":"^6.0.0","nyc":"^15.1.0","tsd":"^0.14.0","delay":"^5.0.0","tempy":"^1.0.1","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"^4.4.3","@types/node":"^14.14.41","clear-module":"^4.1.1","@types/semver":"^7.3.4","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_10.1.1_1638166985773_0.27627492129892706","host":"s3://npm-registry-packages"}},"6.2.1":{"name":"conf","version":"6.2.1","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@6.2.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"b87ebc901945d43d32cd6855ba60d4ce66a5676d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-6.2.1.tgz","fileCount":5,"integrity":"sha512-GbPshJUwZY8/+WXTLLyJplzCVAljX0vECBdUy1Es8npc8naGIEivexdhZP2zt8x/REzgtB9IONaB+ZNB9Ciz6w==","signatures":[{"sig":"MEUCIQCvgiHnSULAfPqU8bAHt79LGTuJ9cNQgIGIL0rmydJlDwIgb40eAh0sr4SCGbkhOc7Frhm5vXDh/RJdFRC0oTBq/Uo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36194,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUPVvCRA9TVsSAnZWagAA9wEQAJlUOMNpOOquESvY31u9\n2GTi0a7XxL3Q1+jJaA0/KOOJKJ+pdhEre0nUTdqCGnyu8rOnyBjQBkgwLy3F\ngAPW/C9F0M3AEfqOVUprZ0sEn8DQCTVeERTEQIDfA167M5A4r2VfCyZoJQxb\ncHRX2ne274vHTINDcBNLjBP8zqMIfsV5CyeT1nQLUX0GKxwzru7pXBHhjVLJ\nOccwSm3n81XkU1E3QurEO+44uiHb74d88Hpag9Mlz0FKuquERzs2fuc9gibg\nMCnerhQPidVNK6pu+awvRW0XZdraNtdRrIueg6qTPGr9jEgk3jnHd0/Pmmt1\nxcEJ/6G3aKhgD/l9VDAN61J2HLxzxRxk226fJNVeEw0ZqNIUF+h6VxWeM4Ym\ncGS5uVxYJAyC7+V34jz+elcoLVbBDcst67f/tCYytFa2TOWfeD0jztoXcjqD\nHXmBbCfEqr165VjxRl9wLJL3rlunQ9GnCLncKgSH5NFEcTDBXyAfFGhA9usu\nYgmZ3m5aNHVE1fFXn/d4MygyiV+On/LmaYjRWvUUTr9fgXTDkVHGjVeMVwcd\nPLnBcU3rF4ls3m02POMHS9rg/MWnpeL2TJNRlblNkkDRnqNWTaXgqRjiOalX\nvxqx0n4ZLcuUutykk/2KPwlOMk8xFgkhMeIVbEQMRCtyE7Q4BcgSz7DifQ4j\nk/5r\r\n=kGiJ\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"514469ad4cdf42658492cee5e3d0b4eadbf3de33","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.13.4","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"10.18.1","dependencies":{"ajv":"^6.10.2","pkg-up":"^3.0.1","semver":"^6.2.0","onetime":"^5.1.0","dot-prop":"^5.0.0","make-dir":"^3.0.0","env-paths":"^2.2.0","debounce-fn":"^3.0.1","json-schema-typed":"^7.0.1","write-file-atomic":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^2.3.0","del":"^5.1.0","tsd":"^0.11.0","delay":"^4.3.0","tempy":"^0.3.0","p-event":"^4.1.0","@types/node":"^12.7.4","clear-module":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_6.2.1_1582364014451_0.7815147453446611","host":"s3://npm-registry-packages"}},"10.1.0":{"name":"conf","version":"10.1.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@10.1.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"@typescript-eslint/no-implicit-any-catch":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"d1c161f7e956aaa1a001051f9430b50869eaec68","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-10.1.0.tgz","fileCount":7,"integrity":"sha512-qZ+642TRK8uQq7IFL/c0iw9UsgowK0jkNpDeQMY2znki6Rvlm6ks+YljmaIayIRaTrLk0eJvyFgY0hOByxvmmw==","signatures":[{"sig":"MEQCIDhqraFIBXEYDLfU/YrCi9KVewuWMq6Mti2onY5cQGFkAiA//Rqio6IvGCS7D+qjoZZvkxJEj6QvxnCzJOZeeY5NDw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47792,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmfEOCRA9TVsSAnZWagAAyqkP/ikXHRJB9flMPienz0GV\nIPI2R/ZqSjKLWY6CLfM8GbPN5xfCg2j3ZTHhy23B+BfCcVxmL04f0VFzHoka\nRS/xMSpU3+jk45U5cRONYYCEDFf+EQ2jV++PjNvNBXnNfoxHM+LSLx/RifU4\nvf/raZAHH+ZA8HcRlkLy5GsBvIYM5N98LT+1UJqdvRawt/YgZqD5haY1WWG8\nIEtcT2EFMR7OL5fSzZzADLBSQOXeVXcxjdtANksr/cldZ5K5chuVZ3XhATSE\nm/B8BQFmkKC+tyO0tCYAWnzlfT9PAGj4fQ2vqSx8Iq9aeVowp+kzxTYgKjAq\nOFt7i4mlsxMEKHIUOr/2g35kPssT1idBWbG6tLdSQapejJb0ZioIWi/18OkL\nA0DRyrBFDw4CLfi6boYCT+IRaSjjtEQ9CrTivoNBrZzCvQfzIWr4y1skAJKg\nuUAullPl2aNWkmJ2jMZ9WUF5m/fBqqk+zHbCV+TCFAz7aLQGLyUTgHfB31vf\n7DvD2CqNlt2llxl6GEP8lD/2dvGTHiW2wrsVRLsUGazgPOsUnG6YEfdLRGFP\nNivy2taD3YI5Dlhyxm8UteT21i8coCTE4ec9pUkpLBKp23ODs4vimG5MePzN\nLppaOvYs2D/w/0eBx6ILLbjZNesttJkbmE513u4HGypg1lJcx++7zEdwyCPh\nLd24\r\n=jXCp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=12"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"995ba2983d2067d5af0721979b500010cee81584","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"8.1.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"17.0.1","dependencies":{"ajv":"^8.6.3","pkg-up":"^3.1.0","semver":"^7.3.5","onetime":"^5.1.2","dot-prop":"^6.0.1","env-paths":"^2.2.1","atomically":"^1.7.0","ajv-formats":"^2.1.1","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.38.2","ava":"^3.15.0","del":"^6.0.0","nyc":"^15.1.0","tsd":"^0.14.0","delay":"^5.0.0","tempy":"^1.0.1","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"^4.4.3","@types/node":"^14.14.41","clear-module":"^4.1.1","@types/semver":"^7.3.4","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_10.1.0_1637478670153_0.3203351487648105","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"conf","version":"6.0.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@6.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"558faae909dd7fcdc231c1cf24f55e2a96aa06b0","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-6.0.0.tgz","fileCount":5,"integrity":"sha512-Y3fH0IrB0mpj3nT+3MR4Y+cvzvmSMOQBDJYJ9E8Fqjqj2/b5pKzEpVD9Fi+iSkcixCdA+/JGV5Y8K8AqP5t9fQ==","signatures":[{"sig":"MEQCIBqDUsmDsOflzkC7lXOB4GyAjIIUxcfh5B5M6AnOB4GYAiAx1tBsMlx9+tiUMMJYAG0p9Jd5upkKYLLZReo/grw5AQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32620,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJddfxBCRA9TVsSAnZWagAAwtgP/i1I/u5UBP+eZEnhItK7\nrP+Kk7MPPZzbsjnuFRlJjJ9+5TgQ9bukBL2+L6QS3rhLiFhZrlPoyoU3iug/\nlGZeG37Gf17SdRi0ZqRBWjUK2zP7powEZy5DsMQ0cSYPp3H/DrjBM4uc9I17\n8rjvwBsjOlPnw6K7EoSrvgQwcdMRTgsLu/RvEU40mQfCczWmC++jAOpvgJqg\nJ47pkfOnD2GE2HJog87YF5yh1kW0lchFsHoJ4wSKkbO2svdjCwKEKTtzBe0T\nJ26PS7/P+N1jKR1uPXhnao8h1kKEeeZtKfr2Pan62wah+pmj80E4DJAP9CVH\nbUvBSUZtzkNODn1eDZJ44eU61q5QW6N+Ta1xOBOgtSQ7iSebxMkaxhqYHDem\nZ5puFQeEuwDIjDXNpR+QhDNwSKfm1I61A5By4QplYBqs36yMbLrGVkgtxh5k\ngHAr4B/4CEacDQxDTwshCR+HZmuoNcVTWx4jZmdj5zm0LIf7BdOsd2Sj/+21\nLnjIHtQoJ6+EmG2fKzn/RklspL37e2Ba6754xkwWgU9Hp/p+TGA8i/MI5alG\nNl3FyQNJczllH54HwOBapL4Y97pr26IQksBufmUo1M3Cefv50zCbH0Qte1+S\nJK8ch/R0YE8uF6iWnoZjx3HcRn+i1sZ47PHxmp2DTvmcah4QqQMOiOFhUnds\n1xxN\r\n=HHtD\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"gitHead":"bb24cfe32d39617a4b3983a92bd81596bd87c312","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.11.3","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"10.16.0","dependencies":{"ajv":"^6.10.2","pkg-up":"^3.0.1","semver":"^6.2.0","onetime":"^5.1.0","dot-prop":"^5.0.0","make-dir":"^3.0.0","env-paths":"^2.2.0","json-schema-typed":"^7.0.1","write-file-atomic":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^2.3.0","del":"^5.1.0","tsd":"^0.7.4","tempy":"^0.3.0","@types/node":"^12.7.4","clear-module":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_6.0.0_1568013376387_0.27866487211678637","host":"s3://npm-registry-packages"}},"15.0.1":{"name":"conf","version":"15.0.1","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@15.0.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"unicorn/prevent-abbreviations":"off","@typescript-eslint/ban-ts-comment":"off","@typescript-eslint/no-floating-promises":"off"}},"dist":{"shasum":"789c5bad63b706446afbe04eb5347abb0792c44d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-15.0.1.tgz","fileCount":7,"integrity":"sha512-o+5tWvGsNr94HWWgNmagXsGWd5kEgsJfEbg1L3OOZUORj/8A/H05othZduVz+IZSsT/uNQHdTYQuQh/8UJz+ig==","signatures":[{"sig":"MEYCIQDFiotBdLWQtFddEFyqyIdJfCQD0rcleuNaljmuRhPoUAIhAMF7jPMa1qaBHN9qinyIy+yYP4fY/4gAawVxEZWSq05F","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":59278},"type":"module","engines":{"node":">=20"},"exports":{"types":"./dist/source/index.d.ts","default":"./dist/source/index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"4e9762841fe74844e50c61691fcde662fd62766b","scripts":{"test":"xo && tsc --noEmit && tsx --test test/**.ts","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"11.6.1","description":"Simple config handling for your app or module","directories":{},"sideEffects":false,"_nodeVersion":"20.19.5","dependencies":{"ajv":"^8.17.1","semver":"^7.7.2","dot-prop":"^10.0.0","env-paths":"^3.0.0","atomically":"^2.0.3","ajv-formats":"^3.0.1","debounce-fn":"^6.0.0","json-schema-typed":"^8.0.1","uint8array-extras":"^1.5.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.2","del":"^8.0.1","tsx":"^4.20.6","delay":"^6.0.0","tempy":"^3.1.0","del-cli":"^7.0.0","p-event":"^7.0.0","ts-node":"^10.9.2","typescript":"^5.9.2","@types/node":"^24.5.2","expect-type":"^1.2.2","@types/semver":"^7.7.1","@sindresorhus/tsconfig":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_15.0.1_1759461394029_0.3513765708736625","host":"s3://npm-registry-packages-npm-production"}},"6.0.1":{"name":"conf","version":"6.0.1","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@6.0.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"3d0f681ac62e2c528c8a854dfb7ff42ee93195db","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-6.0.1.tgz","fileCount":5,"integrity":"sha512-duXnchU76Vlln/WuTZ1tISi81FrLywqMuMU8vdAmBZpWLmTteRNAHbmaiAg5QDAvBAn5VS1Ie4p+sHeA+j/gEw==","signatures":[{"sig":"MEYCIQCZVZCIgYArpgjdjdd70YFj2deh/Cotw7AOip2XSY3mrAIhAOUvnoZbkwDe5W7dRSzTUnKGHcqCTCKGxtVFPlDHbqWB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32718,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdd/9FCRA9TVsSAnZWagAAnqgP/jmh+DUzjvQ53UPzBmPL\nxtyOeXLzw0fltRlaQLGp0qQFcD0xnrPABz6zH3+WvpzZfwwMiVd85TMDud6J\nptCFkoCFj0hjPXGeaZlxgI3UigskvmxAWebmMKJhWy6DfP+pdOEN9U/SMSSs\nMeiBjC/YGnzv57sC0LMSFuXiGSKQ1QG7vzcLv6L0IvodVVJ00Wc41UzQ/4bq\n4aYrFzh8yfQ/FKQefp7COO7z9nxDRR32jQ8aa6+93LX6uikQuutwtL+d9Q1A\njv7BMCP1duZT8YiZXPkLZtKGXbv5Octa50kiACh4QxfpU5N/Ppoq3mR+6T6S\nieEovKszxuneEM2ajfj1wrYrlJFedWuSbPG6dYIlA0YQMC17+Gx/IH/dQZpe\nPqwRhqE69G1Ku8pzutuCTp6EppUKabO5NqD+axUGrL67tJn40iXIrFTI6lZG\nBK2NtNtvQkxW2s5ACmjH/wCFrZP20sjh3VDztuPrGsevGcOedh0fAwd8tFnd\ni0OCCs3zlrpUFG4xUsqsw5oXqDj7Gb8uoAM58W1ZMOoPnaJEjzMIAh1iOeSm\nG9bj4cKs+bZDFxqqzTOtgucjNJWCFkKIep/K2DWdiv7AxqCVUnzA73k5dtkI\n7Aiw1PqjZvqAhRpSKVYl9WtqzrLkFBmXPn2ZcNXpw/kO/fPP8WR7P6fG5hiC\n0L9P\r\n=c070\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"gitHead":"997e29312cf0f2782e84e0ac37da5e7889e8f56a","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.11.3","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"10.16.0","dependencies":{"ajv":"^6.10.2","pkg-up":"^3.0.1","semver":"^6.2.0","onetime":"^5.1.0","dot-prop":"^5.0.0","make-dir":"^3.0.0","env-paths":"^2.2.0","json-schema-typed":"^7.0.1","write-file-atomic":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^2.3.0","del":"^5.1.0","tsd":"^0.7.4","tempy":"^0.3.0","@types/node":"^12.7.4","clear-module":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_6.0.1_1568145221200_0.8988689632553379","host":"s3://npm-registry-packages"}},"15.0.0":{"name":"conf","version":"15.0.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@15.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"unicorn/prevent-abbreviations":"off","@typescript-eslint/ban-ts-comment":"off","@typescript-eslint/no-floating-promises":"off"}},"dist":{"shasum":"640e26ec4f6ae7ef57d15ab3601cd6f919a70c96","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-15.0.0.tgz","fileCount":7,"integrity":"sha512-w9BzJHS5swhxUq3+nF5hbI0XbfCNH5nfP/IL4HpkmdLtejSPen20hvRkcnk8Xht7YyLoHjvxDm99bqsa1l9qlw==","signatures":[{"sig":"MEUCIFJt0Featwz+MKSTjnzOIGd+8Ps31pIo0iIrDlukXWNfAiEAg/KsjqhAGVkHvEvrOGme+rWcL5xCp7dne87gecbzXm0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":59278},"type":"module","engines":{"node":">=20"},"exports":{"types":"./dist/source/index.d.ts","default":"./dist/source/index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"dd46c07fa9b91f100c855e298e8d852e57dc8cf8","scripts":{"test":"xo && tsc --noEmit && tsx --test test/**.ts","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"11.6.1","description":"Simple config handling for your app or module","directories":{},"sideEffects":false,"_nodeVersion":"20.19.5","dependencies":{"ajv":"^8.17.1","semver":"^7.7.2","dot-prop":"^10.0.0","env-paths":"^3.0.0","atomically":"^2.0.3","ajv-formats":"^3.0.1","debounce-fn":"^6.0.0","json-schema-typed":"^8.0.1","uint8array-extras":"^1.5.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.2","del":"^8.0.1","tsx":"^4.20.6","delay":"^6.0.0","tempy":"^3.1.0","del-cli":"^7.0.0","p-event":"^7.0.0","ts-node":"^10.9.2","typescript":"^5.9.2","@types/node":"^24.5.2","expect-type":"^1.2.2","@types/semver":"^7.7.1","@sindresorhus/tsconfig":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_15.0.0_1758983502803_0.771996296798579","host":"s3://npm-registry-packages-npm-production"}},"15.0.2":{"name":"conf","version":"15.0.2","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@15.0.2","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"unicorn/prevent-abbreviations":"off","@typescript-eslint/ban-ts-comment":"off","@typescript-eslint/no-floating-promises":"off"}},"dist":{"shasum":"b983be81227a304b9f885fde6c86c7fe5902dc9d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-15.0.2.tgz","fileCount":7,"integrity":"sha512-JBSrutapCafTrddF9dH3lc7+T2tBycGF4uPkI4Js+g4vLLEhG6RZcFi3aJd5zntdf5tQxAejJt8dihkoQ/eSJw==","signatures":[{"sig":"MEUCIERW9ILIS1vVl0a1X0LoRCGqMiti0IHDm37kPrGe6jcqAiEA6plOiSSTfnYq8QGKAVLA0SRh0yNYGEFDXMI9+OnRd68=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":60258},"type":"module","engines":{"node":">=20"},"exports":{"types":"./dist/source/index.d.ts","default":"./dist/source/index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"2d7fb50d21a78ddf75f068d40629638521083365","scripts":{"test":"xo && tsc --noEmit && tsx --test test/**.ts","build":"del-cli dist && tsc","prepare":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"11.6.1","description":"Simple config handling for your app or module","directories":{},"sideEffects":false,"_nodeVersion":"20.19.5","dependencies":{"ajv":"^8.17.1","semver":"^7.7.2","dot-prop":"^10.0.0","env-paths":"^3.0.0","atomically":"^2.0.3","ajv-formats":"^3.0.1","debounce-fn":"^6.0.0","json-schema-typed":"^8.0.1","uint8array-extras":"^1.5.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^1.2.2","del":"^8.0.1","tsx":"^4.20.6","delay":"^6.0.0","tempy":"^3.1.0","del-cli":"^7.0.0","p-event":"^7.0.0","ts-node":"^10.9.2","typescript":"^5.9.2","@types/node":"^24.5.2","expect-type":"^1.2.2","@types/semver":"^7.7.1","@sindresorhus/tsconfig":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_15.0.2_1759673809869_0.9530819326149735","host":"s3://npm-registry-packages-npm-production"}},"5.0.0":{"name":"conf","version":"5.0.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@5.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"6530308a36041bf010ab96b05a0f4aff5101c65d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-5.0.0.tgz","fileCount":5,"integrity":"sha512-lRNyt+iRD4plYaOSVTxu1zPWpaH0EOxgFIR1l3mpC/DGZ7XzhoGFMKmbl54LAgXcSu6knqWgOwdINkqm58N85A==","signatures":[{"sig":"MEUCID3ptGYx+VsFAoFQT+F0TKuzg9Ffy9mxvCRGv53XHmvyAiEApb/ylRupMyyb3bLDWylad/EIObtti1PwbcrEGiSBFEM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdC5NsCRA9TVsSAnZWagAAx34P/30cHuaKcq4ThBZKsMgR\nlaN++a1ve0iZAfsaTaWUrEhaInjS81LKTsNjOfdIC+zkP9simv3Z3xPgZy8A\n7u3EJROyAVEvUpQa5YuDhftDjykxAbbfMuXK12DYQC6Bfs80EpYbYB+K9KoV\nuPwOVeb27GOTtYy/eG55WWkeVrCiRXgZmYBp9rvXKHNj6lsmnyjS/3NcmeoK\nHn8BWs5lTXgemb6Cv9dFdyRR07sG/ihlsTqMZhU4CHsWDMlJ9C7s4vLIufKm\ns/Q6bUP9RCT1ccGrZGUZw7nTf3RXK10+9un0LWAOR7tZpibc3HjR5R2dVvzL\nz/9xsNI16iTEDpu6I5NOia/IK9zN/eINoa7dAToM4vqLIjYpcMheml+/fJw/\naU8NklY5552zedW9gP18Q9VavoXx1yhsAdOO3SaqhLXNJrwOuHEv4vDOLCo6\nVkKgm+iPKPcEV0835I7hImlSMvkwV+pzBLO8dBn3z2uv+qK8xClcg0RL25vz\nWfSMssgTLkaBxDQpicUYu79IIlpyIP+f+nbSUsPiUXwmf7wQMo7RmzGUJamG\nKk3c1/NloK/Vr3X4UBA+LnmPWPhoS8kFjxsYo46OqxpHdU3IS+D6tHvl+jOm\nAw0BPIAQV1uIoNy7qGVsaNd4PqBOx3XHofH8OUlNlqYdxAm0GGYYLNCn0haL\nheIv\r\n=Y/U0\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"gitHead":"888279a479174e5c10624c918e9db7e476e6e2fc","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.9.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"8.16.0","dependencies":{"ajv":"^6.10.0","pkg-up":"^3.0.1","dot-prop":"^5.0.0","make-dir":"^3.0.0","env-paths":"^2.2.0","json-schema-typed":"^7.0.0","write-file-atomic":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^2.0.0","del":"^4.1.0","tsd":"^0.7.3","tempy":"^0.3.0","@types/node":"^12.0.4","clear-module":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_5.0.0_1561039723899_0.8481593122713833","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"conf","version":"1.1.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@1.1.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"db5c4f9dc691c3c098b482d3d0c60a4e7a554d1c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-1.1.0.tgz","integrity":"sha512-xln7nXg3Vh3lUiSRPNy33TnjtNT9pFsQS4pSzMIN7VAY/IgVg5Ell3DvNOwUR0dCc53oOC6cLhpGoHAhQZ0kqg==","signatures":[{"sig":"MEQCIBdXV/pEiX/zh5PaR7PmPVu3CpK/PKH0QBlawxT0hmbRAiB2iXGUFS20B/XyFm609K7NIJjhvUiIv0RSmfizSeQhKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"db5c4f9dc691c3c098b482d3d0c60a4e7a554d1c","gitHead":"3c90d58179d8d184f3429c269629739c48286e1d","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"2.15.11","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"4.8.3","dependencies":{"mkdirp":"^0.5.1","pkg-up":"^2.0.0","dot-prop":"^4.1.0","make-dir":"^1.0.0","env-paths":"^1.0.0"},"devDependencies":{"xo":"*","ava":"*","del":"^2.2.1","tempy":"^0.1.0","clear-require":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf-1.1.0.tgz_1494393443602_0.2508915695361793","host":"packages-12-west.internal.npmjs.com"}},"1.1.1":{"name":"conf","version":"1.1.1","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@1.1.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"238d0a3090ac4916ed2d40c7e81d7a11667bc7ba","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-1.1.1.tgz","integrity":"sha512-H7GriwhA2acfxraUl6T2wnOBKT6OBpzQ5bcx9m8rsiDAUSdMrPlgyZtj4wNYP14nkFTDWvrI4C5J4zvryqrumg==","signatures":[{"sig":"MEYCIQC+uNtcsDnXMysACht5mwNpoyn9/Mf7ZIDxnVm949ZuLwIhAMa8peSmE7IWKthOJQFWReSr2elYNpBe5jLvh0OCjpYj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"238d0a3090ac4916ed2d40c7e81d7a11667bc7ba","gitHead":"6036afce76b736a65075c715126e0d0d57411c8b","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"2.15.11","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"4.8.3","dependencies":{"pkg-up":"^2.0.0","dot-prop":"^4.1.0","make-dir":"^1.0.0","env-paths":"^1.0.0"},"devDependencies":{"xo":"*","ava":"*","del":"^2.2.1","tempy":"^0.1.0","clear-require":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf-1.1.1.tgz_1494605251434_0.893836761591956","host":"packages-12-west.internal.npmjs.com"}},"11.0.1":{"name":"conf","version":"11.0.1","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@11.0.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"@typescript-eslint/ban-ts-comment":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","extensions":{"ts":"module"},"nodeArguments":["--loader=ts-node/esm"]},"dist":{"shasum":"0555825ae5e84f4c043597ed1c25caa028c5b2c1","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-11.0.1.tgz","fileCount":7,"integrity":"sha512-WlLiQboEjKx0bYx2IIRGedBgNjLAxtwPaCSnsjWPST5xR0DB4q8lcsO/bEH9ZRYNcj63Y9vj/JG/5Fg6uWzI0Q==","signatures":[{"sig":"MEUCIQD00kz0VumsdCvCdO50rHwK0P5FHrUfUMPgIXBNps88hwIgfk5aEkZK/m8kdwrGRMvD/lXnndpx2bLxhccchO4uPhc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48580,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxP90ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpanRAAnUlEKgLRpU9ASJ6iGmWivNdyJpmO1cn1MUlVh5PeKrJ/Q/lg\r\nv/Vmigb5BIA1OvsuPFD/lNWMyeBGXfwwdlkHHpVfyUjr3Tr+/v1T2xgU6vIj\r\ncI5GzMQ7HMwtkFylq7Y/2lQtj3gXf3zCbT+FELducKxti/lDvXZ5DbANjBAc\r\n9D8j/xauMfPbQUUVCwV3iZzOWBi0m9CCs2QhLybDa+QA8yjAVB58tvKx0qEb\r\nse/5SAE20sS7l+HsBK1eLM8fAYHgC8WQ1bbUeATwbo0etEJz8Yazo+0ZA1qT\r\nN+6yYpYHDuqFRdI6ds7Xx9hyGURvX08MzSzGNHfy3ZCArtR9oc4syAng9o+S\r\nLF6OmEJ/2QDHSfSUgLFcfxnMiSq0HqtJAAZtKBjSO+PQ+fDguelf1DcnUq4g\r\ndnBb5iVY+vbllzaNg5dgMrSUC8ZsnYLdvIL4T1Y366J6q5t76dgWkMkKToiK\r\nDOJxnCaBI6n1eUHhaOTlmDLY8J4d/nOghKRJqDFTEa9XXuAYLwb8RVzk0z2R\r\nRkBjhaxmx1Ops6rzJ34sZ8Fmxjmt3FpVBElcMhZB6A27c/ghgN7cxjC0sZb1\r\nqnVgaE+3XPxd+rl9w0FI1ZOLSlL44a3LeMtTZ2cFMq1h4BS1TLdzHWHQepvH\r\nPeH86V5LotAMntBGq3AC3RFfPj7Wmdqi05s=\r\n=7pjx\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","engines":{"node":">=14.16"},"exports":{"types":"./dist/source/index.d.ts","default":"./dist/source/index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"184fc278736dee34c44d4e7fa7e1b2a16ffdd5be","scripts":{"test":"xo && npm run build && ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"9.2.0","description":"Simple config handling for your app or module","directories":{},"sideEffects":false,"_nodeVersion":"19.4.0","dependencies":{"ajv":"^8.12.0","semver":"^7.3.8","dot-prop":"^7.2.0","env-paths":"^3.0.0","atomically":"^2.0.0","ajv-formats":"^2.1.1","debounce-fn":"^5.1.2","json-schema-typed":"^8.0.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.53.1","ava":"^5.1.0","del":"^7.0.0","tsd":"^0.25.0","delay":"^5.0.0","tempy":"^3.0.0","del-cli":"^5.0.0","p-event":"^5.0.1","ts-node":"^10.9.1","typescript":"^4.9.4","@types/node":"^18.11.18","@types/semver":"^7.3.13","@sindresorhus/tsconfig":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_11.0.1_1673854836135_0.26878968461341923","host":"s3://npm-registry-packages"}},"11.0.0":{"name":"conf","version":"11.0.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@11.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"@typescript-eslint/ban-ts-comment":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","extensions":{"ts":"module"},"nodeArguments":["--loader=ts-node/esm"]},"dist":{"shasum":"a67dafe96b7ca08742ff2d2e7794fa8d48b9b064","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-11.0.0.tgz","fileCount":7,"integrity":"sha512-nRVGkjsqKrXAl0XrxPZ/griA+W8YwB2KJIoZuCdHhc+9mVsaPruJsxBR6wU0xhDsB6dlQrjTWJ6zAGnG4mw7Dw==","signatures":[{"sig":"MEQCIGxxkbKDXOY31XspVVO5RP0LfSF23xonpuvCdzoDSgo0AiAWoEIqwyR6SlbBTx9s/8Kef4mxnnTPx5QtovURBEttDw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxL2BACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo12A//RDyRtxANHOg9c8b5uJXuq/cqXf+2lD7BJV2CVe+oHMCr/7fp\r\npHs9iEUFccoIVWYqV0kcsvWQcyjw/YULjX7C2HjN7AUJgTvqIqHbrZxvOGZm\r\nOZpXnWdXYcrn9y+mDA5eMpMyajg2706dFlleXRZRsvyuj7wG6mvz5jZNpnwf\r\n5uuzVjSrATc+QWAySO6ypWo8noY1oHnSybSYLUtpz061nj+Gzy2VRivGcut6\r\nN+ZDRo6YmoIiqZBcoWzTYlCCX7IeU9XKFHDmq/GpcncQAQUiIubqqZn3XDBV\r\nTc2YkfJYhXB8ePOsVRABFnn/DjMYPMM2fGwAkHOR02f1q/HBcfQiUC7YX72o\r\ntD6P6UvDZbaY543Mj7SHb39cuot+q/UxKohV7bgaOjfPf75hpwptOH6vySRP\r\nj8OiQi5MMkx/lL9JdzM4cXNxiJSXNF2GqZbKxzw+XVu8f8AmNevjCNWpvPNb\r\naGAZ2pL52isUG2m5Qti/zHS5ZaNnNTzPHZOXIxK/QTE0703BFlbBsakyMuIj\r\nBwxVfLp41fbAVASgQCWgzpzpjjoy4FYv0W9c+0jeRjFrAF3OcQu9DcA3e4FL\r\n5J8ks8VQ5beNRTWUxlXd0tB7WSOhP2Yg1otdBNkaFIgLZNIu4vDgjAu99RXW\r\njk6WEegBKx8yl5OB9witkkVHfm1TdLGq30g=\r\n=YfMt\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","engines":{"node":">=14.16"},"exports":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"d0ede369b1e0fa75dacecf57cc9364d7519b189e","scripts":{"test":"xo && npm run build && ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"9.2.0","description":"Simple config handling for your app or module","directories":{},"sideEffects":false,"_nodeVersion":"19.4.0","dependencies":{"ajv":"^8.12.0","semver":"^7.3.8","dot-prop":"^7.2.0","env-paths":"^3.0.0","atomically":"^2.0.0","ajv-formats":"^2.1.1","debounce-fn":"^5.1.2","json-schema-typed":"^8.0.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.53.1","ava":"^5.1.0","del":"^7.0.0","tsd":"^0.25.0","delay":"^5.0.0","tempy":"^3.0.0","del-cli":"^5.0.0","p-event":"^5.0.1","ts-node":"^10.9.1","typescript":"^4.9.4","@types/node":"^18.11.18","@types/semver":"^7.3.13","@sindresorhus/tsconfig":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_11.0.0_1673837953002_0.40519808504130084","host":"s3://npm-registry-packages"}},"11.0.2":{"name":"conf","version":"11.0.2","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@11.0.2","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"@typescript-eslint/ban-ts-comment":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","extensions":{"ts":"module"},"nodeArguments":["--loader=ts-node/esm"]},"dist":{"shasum":"b48d526f1795b0cf40d332905a38bdf8a1558f76","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-11.0.2.tgz","fileCount":7,"integrity":"sha512-jjyhlQ0ew/iwmtwsS2RaB6s8DBifcE2GYBEaw2SJDUY/slJJbNfY4GlDVzOs/ff8cM/Wua5CikqXgbFl5eu85A==","signatures":[{"sig":"MEYCIQDLqTKAamWTY+oUFlZY0/Xcz5dLUHhh58/ssCP6qGZadgIhAIeUJq/suvMFKDvswEJ6Qh/ay6tcwetufnqo9jpV7mcr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48636},"type":"module","engines":{"node":">=14.16"},"exports":{"types":"./dist/source/index.d.ts","default":"./dist/source/index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"3f722c99bdb161f267d80a6f058795a315ed5a20","scripts":{"test":"xo && npm run build && ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"9.2.0","description":"Simple config handling for your app or module","directories":{},"sideEffects":false,"_nodeVersion":"16.20.0","dependencies":{"ajv":"^8.12.0","semver":"^7.3.8","dot-prop":"^7.2.0","env-paths":"^3.0.0","atomically":"^2.0.0","ajv-formats":"^2.1.1","debounce-fn":"^5.1.2","json-schema-typed":"^8.0.1"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.54.0","ava":"^5.1.0","del":"^7.0.0","tsd":"^0.28.1","delay":"^5.0.0","tempy":"^3.0.0","del-cli":"^5.0.0","p-event":"^5.0.1","ts-node":"^10.9.1","typescript":"^5.1.6","@types/node":"^18.11.18","@types/semver":"^7.3.13","@sindresorhus/tsconfig":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_11.0.2_1689682638870_0.3194792133530415","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"conf","version":"4.0.2","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@4.0.2","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"cc25649295259fc77f4606840b7718cca5c1d5bd","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-4.0.2.tgz","fileCount":5,"integrity":"sha512-SVEWGdAlA+BNfpJ5vF7S6SbkXA7Qk1ycWV6+UAWkC3vQvjxx7xxuYNriKnShjlbIPStUiTK0MZWdQYYtTYdwZw==","signatures":[{"sig":"MEQCIFVpOh1VTmA6m8Vx97cis29A0pUswm+U0g0cgv6WGDSqAiA0QHSlrPAvrI7r00KZOqgj7VI+18onCLVjRof3Jud5hw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24506,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcxccsCRA9TVsSAnZWagAApvEP/05u10Qvxu69/PRFjEzR\nJpxg8XVrKSS/yBk9hDxkmEQNuSmbZJaPdYzpLTsvMrXW1lC1+d0kbzXqns7p\nsMtMUEuolUQSv9IwQslUtFWLlZcE/52FRbepNA5yilO4cade0gXjAUsZY04P\nJQKfA1Z9/rmsuz6FiLjrygGutjY9zpT7jpgHwQu/JIuFpAXh36dJ2cacOJ8n\nIHEBM2/Ae329uqqgMPBnvRtxT42J2aQU9sCgJuCd2y1oGHmFMTeTRRTuHERa\npHg8L8Zk3Bhlc+LYQ++D+LNNPAns5syloP7NHdd15PvS4F+0g31c+lHZBTLn\naAW+naVXrd4HVKZrWb3B1BS/my+3fRP1HMSN0cjAkdIfDf6CQ3zSzWCZDdSg\nxIe4HmLM5/fWc/9tnOeNmMqZ0s12AiKhJRaaGbwT9PAhOFZws2/FJlrG5GDd\nrRO81lZh+gFWrYUnUW+FtmBplWxKffgdjc95GFaCGdXSmG0hAfWC6wWr3Nrx\nGDNtofASC3up1mOEsiFbXd12vSpFgbHEYjFM26cqLc++Cy42P8poYMFWoHKW\nq8y/rHaDgTgMXAhdjviudI+AWoaisbiKK5X7Kw8N8SY2lYVVR9JVgfmWTehd\n7QSqb1ohVPiVbTk32rVHaVivxIY0t3f1bdOXfmWA6A7rNuA/TN4UOxXeFJKG\nzwkP\r\n=wCRw\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"gitHead":"87fc5b1a0d5fc38297bfdda21ac72cc28925b9e3","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.9.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"10.15.3","dependencies":{"ajv":"^6.10.0","pkg-up":"^3.0.1","dot-prop":"^5.0.0","make-dir":"^3.0.0","env-paths":"^2.2.0","json-schema-typed":"^7.0.0","write-file-atomic":"^2.4.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.4.1","del":"^4.1.0","tsd":"^0.7.2","tempy":"^0.2.1","@types/node":"^11.13.4","clear-module":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_4.0.2_1556465451897_0.9304994420213979","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"conf","version":"4.0.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@4.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"c675f84ce1b8efeab21cd1399021b4f03b75ded2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-4.0.0.tgz","fileCount":5,"integrity":"sha512-g3kLYbvtnC6w1IEBalWQoetLq8WUsYVncW7mTBPsPKw4SkNGBj3AaEiRXYPCCW9DPqKdhs1S+f6babEZju0EhA==","signatures":[{"sig":"MEYCIQDoKuX0rfibhVIsXvzqBMCd0+RRD2jKBZEEEk006aUQMAIhAPvtYhkEoIROTDBGOasiRZjYRFkKS19t3zkXCh6KtKu7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24445,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcovZ9CRA9TVsSAnZWagAA0RsP/1ZTug3ZG49jSg3U+mzy\nZlhq6s57eI57yH+3AojDKzUgSGMpmbNw3+rhctKFLdJoqKmGJUaQGBmN9cef\nMMc3iYbcaWde9Y5ykAj05JFxsUFLeKBxcS1GeJtOxINvvaEU14tyyLJz4CT7\nDfnFTFzjgR9CzrwyftusMHLRNr4rmn9A9Ay9NjffF/oKI30Bw4Z764HVmt4n\nvDNTsEmGUMm9AeF8FIcgc4NMaZFpPXJytjZr0AsdojK8eSnixB5GgQjIrRAA\n6cYWVI7viBU8OeL1nlFBR3+CdSl+qEpZJXRtJotkc4NQ6smq2c3JZ59g0nc/\nDnY+71kOcloFVC9RqQlL20DA2GCqFCgYsY8NO1kf9C4NJufUTqj7ckz4uDVR\n8KFMTbP8frNcSjkH8Ataq8b8UeQSX9H5ff5szgxUv65rAaDAWr7VOLp4Q0nM\nRMgO6ukGCw8dCt+LtMmNgyJDBVVPN7dRqV2b/AOPt4ZGyTrueYfVZOxro+g7\nUYGbAgG+nUYqZGP0/JcRTCkSaG9ZAUJcGr5P+L0BS7ZnmgowogHaZF2Vw7GM\n8sDw11sqHgfpXdIIkLX3KXV8WpjtIESIW+XXqwfygmhWtpvwJD5HTmJgQfMz\n4akaag5AX6rHLaqJAwAMyS/zxA49AW6a3bBcRCXqt4PyVgykbZq5YrYOfnWR\nMUz5\r\n=VDr2\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"gitHead":"b25c837eef6b98ed814b7ed4f867529c7fbc7e2f","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.9.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"8.15.0","dependencies":{"ajv":"^6.10.0","pkg-up":"^3.0.1","dot-prop":"^4.2.0","make-dir":"^3.0.0","env-paths":"^2.1.0","json-schema-typed":"^7.0.0","write-file-atomic":"^2.4.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.4.0","del":"^4.1.0","tsd":"^0.7.1","tempy":"^0.2.1","@types/node":"^11.12.2","clear-module":"^3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_4.0.0_1554183804446_0.4320369401504569","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"conf","version":"4.0.1","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@4.0.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"a001a88fc2e999d0691fc9ebd89145d99edc9f1f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-4.0.1.tgz","fileCount":5,"integrity":"sha512-2imcmy0JZtOlksSkbbG/6h18YnNcg3GPTrQEofHXNYxqo2pofOBAHFKtqrQhY6KqNA9sxo0rJugGdjR8SnUZww==","signatures":[{"sig":"MEYCIQDjUpxGJNu9mW00TgjZ4UGqcODdBQr1LVOYs3Q+AxCdPQIhAObIbRogng+iXG5maHSmrvvgK5s2FPhIufdh6wFuH74g","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24451,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcruZaCRA9TVsSAnZWagAAVX0P/3Bb9HP5eTTbvadw0K5y\nQsWOKhcdgPmr8Gs7qLvt9+4Yr4dSuzprdsSqJZMmpE4gGedHd3gvETHHLJh5\n/RL5xTWI5kR1942lMMOX51AGUgo6+FwaGRdGoY0IvCQ2mYOJUgOJ8iPFmCzh\ndQl7Pq18QySx57VYMpzBc1TDfMQCe3eyp/yFBQIS1+68TSBgDy5qq2a6X/kJ\n7ZtVAhjdrFm4HnMCkwzkYuxR/pJzWY6oxdzhIbq024aTfgmu3xbF7CsJIwrS\njOZkX3GH3Z4GOkQ40Is4fP14wQWJk1wh2HHcS7JqrAj9xt18KQctA3D1R9I9\nSqgL71MdeJ6j0i3X4FG8X8pKDYro0Ap8MNOgT8F3JnUYuIHfPXExXwv8POiY\n+N8BEGOkLEhqEvPXnWjFb7LAr60gS0FqNxBJ5ImfnMlncALA64h073Q5tuEy\nnZDV5HR09Q91i5iH2hSrHsoaefRzHnL1kY0FKPZ2EoRlWWRbTgrL6HRkKNLj\n69CF1NsBShHCQMlyItGe2Qp3La3HkjHmw5dM5UMWPndU2XnsIaOop/RAt9JE\nsw7BAa3cez21b/GGTh0Xq4FlFN2k+29F+pXML+7w7VJ6jYIBOqa9FyENIgIF\n7GnJ3T6MNfsWXwTfq6UROmrG4qOjzoZZvT8oPyRv2YjzaioLCL06yEP4UicV\nW3qS\r\n=GC+u\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"gitHead":"a74d61bfb424911a9ae3209f904750588703105b","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.9.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"8.15.0","dependencies":{"ajv":"^6.10.0","pkg-up":"^3.0.1","dot-prop":"^5.0.0","make-dir":"^3.0.0","env-paths":"^2.2.0","json-schema-typed":"^7.0.0","write-file-atomic":"^2.4.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.4.1","del":"^4.1.0","tsd":"^0.7.2","tempy":"^0.2.1","@types/node":"^11.13.4","clear-module":"^3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_4.0.1_1554966105791_0.8986581907092703","host":"s3://npm-registry-packages"}},"6.2.4":{"name":"conf","version":"6.2.4","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@6.2.4","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"49d23c4e21ef2ac2860f7b5ed25b7b7e484f769f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-6.2.4.tgz","fileCount":5,"integrity":"sha512-GjgyPRLo1qK1LR9RWAdUagqo+DP18f5HWCFk4va7GS+wpxQTOzfuKTwKOvGW2c01/YXNicAyyoyuSddmdkBzZQ==","signatures":[{"sig":"MEQCIDX2l7P7mrXrCx+4N1ZUE3dXgh51LC+uy7DCym3d08lYAiBhRhV32fUp7WuMttiH8ghF/LcbrLlU8gHmBUsE1vu2fw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36577,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJekrX1CRA9TVsSAnZWagAAAiwP/AiaN6nEvfB+1x0gdObY\noIYhhw6+luwDVXtOdUVkYWtbtkTzfT3oyGBq3iMiW2m40FXNGvdcKpM5IMZi\nsLJgVl4jtTXivGgzEazCYG6rPrBBemO/FaJu9ypRHnfc0cqE0NUtD+lhztkg\noau88LeBTXfjJi7LcHMMPLfNcS8MgxC5vzsLk1fpM0rvmvPSL60/gPRj3W2+\nGUD5kqo93At7ZqW/roeNm//2BHTCnKHrx/VzHVMEvnm/npf4jvZPucl2HN+j\n9oPUMLlLX3h/VStMC73gO5Gta4vmdV8xf3biq04mGnoIPIbyr8CPiRpG9MtV\nXZce2zO8ph7gIJc+YiUHjXDDyS6GBjTAsNd6+/HE+u+21QLBtYhDj+POxes3\np09Sb0gMQNNgHMy0t7lIRJEuM0lsxweqxkix4jXwflpNYsm+tnANRosZHEdl\nNIlIG1/WhFkRgKOUxIawabILJWGt3Db8CYEmIlwfH8V7s4iz1tANNsqCBjtW\nIw31l2lWZ/zotPonzNc6325X6sMLv49jB/1cd6GU52ph04ZYpnD7kv9u2nW2\nKYYN9T7q9aYnmBMf/Sr8p2XfbrBXGKb/3OP1Yvo+dekZcHd0gASWWzTFgHcw\nrFYTKKE2ct60aRMO6cC28f5BJSq6YQ5Uvx48vCO6RL40iFp4VeUYM5hu6eqi\nk0Ym\r\n=SnMq\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"52765f431234089c5bd1d73cef057e90f9a58d94","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.13.4","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"10.19.0","dependencies":{"ajv":"^6.10.2","pkg-up":"^3.0.1","semver":"^6.2.0","onetime":"^5.1.0","dot-prop":"^5.0.0","make-dir":"^3.0.0","env-paths":"^2.2.0","debounce-fn":"^3.0.1","json-schema-typed":"^7.0.1","write-file-atomic":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^2.3.0","del":"^5.1.0","tsd":"^0.11.0","delay":"^4.3.0","tempy":"^0.3.0","p-event":"^4.1.0","@types/node":"^12.7.4","clear-module":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_6.2.4_1586673141041_0.5136355633866831","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"conf","version":"3.0.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@3.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"9b788f897e208684952058c38f01ddb1dff0c40b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-3.0.0.tgz","fileCount":5,"integrity":"sha512-z3XAlQY1pwHi+PFqWJ8lPqxSbHl0rlpgKpFSARGRw3Qj8zj0I1jNwLRjfDnUrjCtgea5HTf1YhdF5KKjDrUnTA==","signatures":[{"sig":"MEYCIQCk5XxVhPAkjjq0k0fmMrc6PElgJiJgFaLVGn9fUsRdZwIhAIXhMZIW/0AV18p8Qnot25/RcyboMtr/HbIlgdpAY25q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20659,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfVIzCRA9TVsSAnZWagAAxnIQAKQPApBLNweaUGnkb+Lw\nzX6TJLiFGOw+gs+s5uHSh43kxP5rDkO7dLOmdF8fRWUcRZBIOEq8QJvmmy7+\noVBMI40nZb9wtgmpqgibix8Jbe1/jnLhBqRXMRiOh/jzYr06LUAa2WaV0C62\nRCkqv/tkmDY6bDO9YWWiVTkn0uiRwC1MDhFdWpUD2FLnDvtxFzB/rJUd3nit\nBBB8kTYWWz2kiczx5RcovIYPLO09K7BR9Kh1f/hsB5k5sy7tyPgkvnhdpWbw\nYnCUeTNw7xxJUQSvv2M3mHmBV6s84qesN6MkjN2LItqutGx/gPI8BQgYR/Pu\nRWGRcEqmVBYdldJ3ElM/N/zxMNODg5i1jAr/iJABzBlZLLPFdAVsB11E+fLQ\ndtyntKX3aKcbV4HdrAv1wTY7/MwijbzePkmDS4OuFObS+URHAbmviNAtDapV\n1seP6uzdQDgdvHC8+hlIBzQ0z+SXKC35l7DtPq/TG+OCPOinc3zod8/re+lc\nMFsSVZ8F7ys+lVrVBFxLwqsRNZkMJ9pRslBWQB5DGbmxqwvkflLZDuEKSqYH\nOJcw8RvdArJ+FvV8dFQzwv4ejjM6VPyZSSu+iJYy8EHB2l1uI+1W1VB5s42m\nmDY4Md7NXhqm4PzOJLc7vu1mGaS0WRaLeeY5df6oEYvd2Qtiro0Zszthi0Q3\n81rS\r\n=WxT3\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"gitHead":"e6508a36c5487d21b393060c37c98c309f046d09","scripts":{"test":"xo && ava && tsd-check"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.8.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"10.15.1","dependencies":{"pkg-up":"^2.0.0","dot-prop":"^4.1.0","make-dir":"^2.0.0","env-paths":"^1.0.0","write-file-atomic":"^2.4.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^1.2.0","del":"^4.0.0","tempy":"^0.2.1","tsd-check":"^0.3.0","@types/node":"^11.10.4","clear-module":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_3.0.0_1551716914323_0.12423894677461678","host":"s3://npm-registry-packages"}},"12.0.0":{"name":"conf","version":"12.0.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@12.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"@typescript-eslint/ban-ts-comment":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","extensions":{"ts":"module"},"nodeArguments":["--loader=ts-node/esm"]},"dist":{"shasum":"de7a5f091114a28bc52aa5eecc920f4710d60d7f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-12.0.0.tgz","fileCount":7,"integrity":"sha512-fIWyWUXrJ45cHCIQX+Ck1hrZDIf/9DR0P0Zewn3uNht28hbt5OfGUq8rRWsxi96pZWPyBEd0eY9ama01JTaknA==","signatures":[{"sig":"MEQCIAQZK7Ry5dK8MiREL9pjlkcTyVDFmeiJ0GJ349OOkg+xAiAs3g7ePBXCeeYcjkhblifu4ozaFDEiS/WVaTJ9BlkUaQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45683},"type":"module","engines":{"node":">=18"},"exports":{"types":"./dist/source/index.d.ts","default":"./dist/source/index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"ff1cc63a372823e7d68afa8a40a1e600fd36e82b","scripts":{"test":"xo && npm run build && ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"9.2.0","description":"Simple config handling for your app or module","directories":{},"sideEffects":false,"_nodeVersion":"18.17.1","dependencies":{"ajv":"^8.12.0","semver":"^7.5.4","dot-prop":"^8.0.2","env-paths":"^3.0.0","atomically":"^2.0.2","ajv-formats":"^2.1.1","debounce-fn":"^5.1.2","json-schema-typed":"^8.0.1","uint8array-extras":"^0.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.56.0","ava":"^5.3.1","del":"^7.1.0","tsd":"^0.29.0","delay":"^6.0.0","tempy":"^3.1.0","del-cli":"^5.1.0","p-event":"^6.0.0","ts-node":"^10.9.1","typescript":"^5.2.2","@types/node":"^20.8.8","@types/semver":"^7.5.4","@sindresorhus/tsconfig":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_12.0.0_1698225713625_0.9739996767113095","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"conf","version":"2.0.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@2.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"43f7e282b32faca31f4d18bf279d6841ad657d5a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-2.0.0.tgz","fileCount":4,"integrity":"sha512-iCLzBsGFi8S73EANsEJZz0JnJ/e5VZef/kSaxydYZLAvw0rFNAUx5R7K5leC/CXXR2mZfXWhUvcZOO/dM2D5xg==","signatures":[{"sig":"MEYCIQCuVyyOsNTBURUibLlAaYqA7+qvhV+6PrrakfKuR2X7XwIhAO5NfQif+WpEetsFKCd16S8a14lNS7rE3cxViAOrlnO2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12192,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCnrsCRA9TVsSAnZWagAACvEP/2uXNX8yJdhSYC+ZIE79\nEcat3vuQ+9OrrwYevJDr2FB6aqtn5/S2NEZZqGwmIh963USY9IA4rkTl/Aoj\nEuHsbxwyPBjVWhX1pew5iRvzOKDbGD6kjNemvjMTsM2bs2egK7Q1mKPLwbi0\nzIH2aSQDTN6oNv4iQnfT7RFb17q7KMiPuMXoO12DoPKzDuRSwK2HssxL4r31\nHl1YeBkymlUyudLl91CettqaabCXwfLfbiMQzCuYE4J1xPZGUsqqRrX01wVn\nfxdo+T5D4ccxZ1IXRaSSWVMeta3YfhDpb8K7i36bf51+FF9Jumm/afLRnahK\nNQPpDyV0L2du4PiFgsbu87uGvjE7Tln7Th+AiuW6k6pAQCdgN7auYyzmSbyI\niFa0KghZ5Ymgsz5Xn+YW/WqdlSX9p/ShFZ7ULEJ+tSnCYAjzckM1qXXyede/\n9pviLDsQ3HLwpQ04poo+z0XT6iCfzIf0hPby4aF7/qpeAE6ui66qfsyBHo0b\niP9Likm7FWKSb68T99d8wgX94KqYsjeznTOkLnGrIzjWU6Z/AiysVfDNuuWK\n5VNF4BMMz2YPisWzoOHDL0e0szhs/X3CJjesWEHRvWPGCToK3X3ZkWSHZBuF\nTOgwIX7PcFCqVpWGupMXi6LWHghwZG6m6UKc4M/70gv4Az1dAbfkSYNTum50\nsyQi\r\n=fIYr\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js"],"engines":{"node":">=6"},"gitHead":"9ac8f2a979ae38c50d2476e96e6031d634c754ef","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"5.6.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"10.2.1","dependencies":{"pkg-up":"^2.0.0","dot-prop":"^4.1.0","make-dir":"^1.0.0","env-paths":"^1.0.0","write-file-atomic":"^2.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"*","ava":"*","del":"^3.0.0","tempy":"^0.2.1","clear-module":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_2.0.0_1527413482833_0.6672240871672761","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"conf","version":"7.1.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@7.1.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"3f09caf8a1f7335dbc7694b6e3afd2374f6ea7b4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-7.1.0.tgz","fileCount":7,"integrity":"sha512-KhESMbqyuljBAwwXwnRiul0lpNQkex2VU1jvlQ4wziGyG8Wi3pnbEIG2y2WMxq7PdQwEo7PHLx7175BHLBUPAw==","signatures":[{"sig":"MEQCIHZwMlepY+X7hhzEfSsQW1O9tu2XfPndTEVBwsQXQAcDAiAqPCYdRxsKfXK1oYQtHY2tLeFtw/RDej46hpcGIiU3YA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45191,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEfJxCRA9TVsSAnZWagAA8DwP/0msZR3ymOuY9YCOqK9b\nowTHcHPDmYTwtgEqAr7UZxND0O6NEAnB3VE0ncppEmgrcCiAca5Ta3N9cBVy\njuSSgZ6H65gMSsdHSZXDu9qRLySd9ldRmvtpGyTEnQ8VgsaQEAXw9Jc26zDE\nklJ0vMMSJepglrCXO9eCNZSVeFacpIKZsB6jMePD3N9SAQLK3Y6++S/BFUzR\nWViC5+hym+36kMeVpPcTnxrPz/TabjYJQghQ0aLVNwrMv9UBE+Y/UFWv+uYv\n19F9Cgmo7IGbTCmxiLnQHaIWGwZx6O7ycOl7YbV9VzdrkekTpETYf7e5UbGu\nZp7kN/rOw4wHkYfR9JtRTAwUjMm4aCJUr0vPfC3oLfddA1OTxwoE5v9TqB7+\n5YU2y8294+kl30OyyThfNLAAFCc8aA2jzLr+umkdBfaVNxabQ4ZacBp7IDR7\n5B1HdbvCQfWq2anKi2lfpmDS0q/7efYaA2f4KiyK4HRlsinX0uOtLG3b+oQi\nvuKPgnUf5jev0pulaubEdM8p6AQkFKS/Mf685M1LcNG4wR5E6nl2ZTwg8BJ+\nNVnH5z+4yxz8HxCRgrI87ASm8MbNQ5ZTMrzXGxUYe4akEjumynLS8oibIfdJ\nXI0emcDecLozwt6zAZd30J1MhHFHe2ZRzeV+mD10T28de1OGfd57I+M4ZHF5\nBPIF\r\n=y+dI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"bb54c78a0f5a31c70551d0ec3de973e733671521","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepare":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.14.5","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"14.5.0","dependencies":{"ajv":"^6.12.2","pkg-up":"^3.1.0","semver":"^7.3.2","onetime":"^5.1.0","dot-prop":"^5.2.0","make-dir":"^3.1.0","env-paths":"^2.2.0","atomically":"^1.3.1","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.32.0","ava":"^3.9.0","del":"^5.1.0","nyc":"^15.1.0","tsd":"^0.12.1","delay":"^4.3.0","tempy":"^0.5.0","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"3.9.6","@types/node":"^14.0.14","clear-module":"^4.1.1","@types/semver":"^7.3.1","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_7.1.0_1595011696749_0.4547339005535376","host":"s3://npm-registry-packages"}},"7.1.1":{"name":"conf","version":"7.1.1","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@7.1.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"327698d294a5c76fac17f970e47f87bcf1f0dc5b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-7.1.1.tgz","fileCount":7,"integrity":"sha512-njOu3so+7zcR1oQzXKP0mpPMKRf+riaaWmxBUhgP/c9k32PuDX/SQ+N6cO6ZylY6NOZGPwgzicGxdlRGXUOkSQ==","signatures":[{"sig":"MEUCIQDZLBOTeeVhbFYfw7Kxbo8mxGOx94DvfHM56QsTwnXsYwIgM6Ffz++jja3ky5GaheVvEGWHTYjlRTVpFQKXzhikzwE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45200,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEfg1CRA9TVsSAnZWagAA35AP+gLFKAWlaFTtaKRqaz7M\nKr4jZylxQeyfNUrRYss5UQW8EP/vEltu3lEqTq1z9r85pcvlF84yfPrlETCz\nifUREWo6VeEavT3n0I8+scqYGesNO76U7m/isavgv7AsmoPM7YpxS5j6Ex4w\nQnUmC2PSLf9VMij6k+zgnVk08WxztOxXyFJqB17lWp9jSh+bOW6pmzEw8x6a\nf5LiWL1SJd1R7695O3urA/sPgPUBEHAzp/oSIn5C3EISE9L95hlwKZyZ1aia\n2z9DN7cxO521nJpK5h92gQv/kiaHjq84xgdBrZvxSfGowHHdLBmLdTyRCeB7\nTtpFvE0TBxz79bdL5i/tbYO5cfOEL1Dq/11CkLCApnUhwTvNu/0N7Nb32r3I\nomH9iZPXAeHaoLDLwT7ofBpdHOeTC+tty1nlOLhlLaepfn8NmDThQfSQZ+jc\nCjhKODD+Qh4IJ6b1TpU397TlN2XHcuz7RL5ZHoyS2qxInr144YeMr+oNw7vJ\n5VJy/1821Zm3+T3WiC0vcpOWz7OX2c2x6F/xKLxr5CtZN/efumaRPtNgTl7r\nawz8TXbv8C04+pr6Uc+wRNP3ftvfnBTlcxo0j61l2oj/hSoX/ufy1HMci6+F\nDt/wfgD+SrKC2/b8uBKAlP/jrLhMCf80EiSn+MvoAXlGIgGgRQKGeTZYYglJ\nSSqi\r\n=/0EH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"1dcfd0dddcadbdd0cd02193f5210cb20b9a37398","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepare":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.14.5","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"14.5.0","dependencies":{"ajv":"^6.12.2","pkg-up":"^3.1.0","semver":"^7.3.2","onetime":"^5.1.0","dot-prop":"^5.2.0","make-dir":"^3.1.0","env-paths":"^2.2.0","atomically":"^1.3.1","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.32.0","ava":"^3.9.0","del":"^5.1.0","nyc":"^15.1.0","tsd":"^0.12.1","delay":"^4.3.0","tempy":"^0.5.0","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"3.9.6","@types/node":"^14.0.14","clear-module":"^4.1.1","@types/semver":"^7.3.1","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_7.1.1_1595013172621_0.6406645459267126","host":"s3://npm-registry-packages"}},"7.1.2":{"name":"conf","version":"7.1.2","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@7.1.2","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"d9678a9d8f04de8bf5cd475105da8fdae49c2ec4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-7.1.2.tgz","fileCount":7,"integrity":"sha512-r8/HEoWPFn4CztjhMJaWNAe5n+gPUCSaJ0oufbqDLFKsA1V8JjAG7G+p0pgoDFAws9Bpk2VtVLLXqOBA7WxLeg==","signatures":[{"sig":"MEQCIAk+2Z99a81dL5T/Uy2pU5ANuuJk98RwS32ZfLfXzMMsAiAxF57rtgJfryctiYfKP7N4at9IffBp+e65dCKt5xki8Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45264,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfNXsfCRA9TVsSAnZWagAAJa4P/12h1nYG9rU2SrTsmiZm\n/pGRZkwIWK4BKDdZbVAtVrsk3mVC2MDPJhQECKGrGxtRY82TOi0b3fN16NJt\ns4tQ0jds5iEyHvoYYImfwxl6z2vtaTalV9/Tvg7+gYc6/2iFdMxgH0a+C0LP\nMAMm9sulIE6L2Y/j6U8428p/qiWdYIt7DlCmNdpzparFdxUr4c+wvsPr750e\nGDI45buvOyXb95Xa0SN1kSYrGPMEDBpjkozple0MAlXauXXFjQT+4/yokvng\nt/5U5LwOEV+XROI5RTPhWUwOTM6z+ByYMIAtCq4KcX29p6QHFIJrgwpAayBf\n/KjTIV3mgqPqqxQdvKlaVvRwxZVH6kf3o4HEtPrmIdfPM/2z2sThM73Qg3ce\n8uBMfQd3n3/2Ovqe6kHS53HALcxxGfbrfePAERXzp0SExggl4aI1qax12t0U\nVhxP0uMR4gQ19Iqr7OiGaYsxKhA4FNkGHci50xasy40dmJ2DrWUetIAolaZm\n5C+EKEcsKSpL5M4O07UUho0+iPrNir6SH8SqkTiPXKMBT9lGS+SZHMHjMB16\na8NMb8H8NyeTlZzhz3TWwDEAy3V5VkFyZudKndQpVusvh7mGxF+R5+GcNkUU\nH5+vgauNPE3zWlhvN3j+kFetKWVCn0HFBp7NhUu7xVrM/8OVAHw5UiLu0kGx\n9vvg\r\n=ATc/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=10"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"22b6ea30462df550a23c01650da1c26b1fd9657e","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepare":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.14.7","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"14.5.0","dependencies":{"ajv":"^6.12.2","pkg-up":"^3.1.0","semver":"^7.3.2","onetime":"^5.1.0","dot-prop":"^5.2.0","make-dir":"^3.1.0","env-paths":"^2.2.0","atomically":"^1.3.1","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.32.0","ava":"^3.9.0","del":"^5.1.0","nyc":"^15.1.0","tsd":"^0.12.1","delay":"^4.3.0","tempy":"^0.5.0","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"3.9.6","@types/node":"^14.0.14","clear-module":"^4.1.1","@types/semver":"^7.3.1","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_7.1.2_1597340446718_0.34154367383942175","host":"s3://npm-registry-packages"}},"0.11.2":{"name":"conf","version":"0.11.2","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@0.11.2","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"esnext":true},"dist":{"shasum":"879f479267600483e502583462ca4063fc9779b2","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-0.11.2.tgz","integrity":"sha512-R67kIMNnWF0C5kpRjIfjt+kp2jozJLQlbbaM+deYIfc0dOG25v6sQSXh7c+1WcOrytozquBCQRecLIWeJ0j52w==","signatures":[{"sig":"MEUCIDjbfVJMpYydrVauH2d0LExQx/uIOS4HIy8WgR8Bva8VAiEA/N2tvXcMSM1z2e/xHRySSGKnkTUtUWIn9RipReSK3Y4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"879f479267600483e502583462ca4063fc9779b2","gitHead":"c5a736b061f5a844e2e4dd99bfff8144dee5f47a","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"2.15.5","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"4.4.5","dependencies":{"mkdirp":"^0.5.1","pkg-up":"^1.0.0","dot-prop":"^3.0.0","env-paths":"^0.3.0"},"devDependencies":{"xo":"*","ava":"*","del":"^2.2.1","tempfile":"^1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/conf-0.11.2.tgz_1469094563178_0.1455078434664756","host":"packages-16-east.internal.npmjs.com"}},"0.11.1":{"name":"conf","version":"0.11.1","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@0.11.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"esnext":true},"dist":{"shasum":"f65c81fca34850959ceb6f248b62aaed3a734fe7","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-0.11.1.tgz","integrity":"sha512-jZYwjZjCsiBwj+9sCarJvWww4fjYDtKSEyhgU1uZSMleMCiZw8KIq2d59cjTToih0fhrA2CsJSBegHLrH+7mjQ==","signatures":[{"sig":"MEQCIE8FXzBMdFm3V1pFCso2GBREmwgWvO2Lh6mzrudDRH1MAiBw0RLLpI6hesy03kVH839pWvZVE1TsX6s7d5NIb+X3Zg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"f65c81fca34850959ceb6f248b62aaed3a734fe7","gitHead":"cffd7b58d6245c0f0c2e8b92d8bc45a4caf52a00","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"2.15.5","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"4.4.5","dependencies":{"mkdirp":"^0.5.1","pkg-up":"^1.0.0","dot-prop":"^3.0.0","env-paths":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*","del":"^2.2.1","tempfile":"^1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/conf-0.11.1.tgz_1468329937256_0.7889590172562748","host":"packages-16-east.internal.npmjs.com"}},"13.1.0":{"name":"conf","version":"13.1.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@13.1.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"unicorn/prevent-abbreviations":"off","@typescript-eslint/ban-ts-comment":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","extensions":{"ts":"module"},"nodeArguments":["--loader=ts-node/esm"],"workerThreads":false},"dist":{"shasum":"c6e797d6157253c1baac3788bb121f2ee085f902","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-13.1.0.tgz","fileCount":7,"integrity":"sha512-Bi6v586cy1CoTFViVO4lGTtx780lfF96fUmS1lSX6wpZf6330NvHUu6fReVuDP1de8Mg0nkZb01c8tAQdz1o3w==","signatures":[{"sig":"MEQCIEunWs6ARCJG6n8T1LNqxW+BzvWX/7ijav36qS5d96MRAiBN2zYTXFo+Va7vmPnl4ef1Rr6rfLN/hhNw4LzxAb4CLg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47457},"type":"module","engines":{"node":">=18"},"exports":{"types":"./dist/source/index.d.ts","default":"./dist/source/index.js"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"657ab92b31396c5e29f64a3da9beb8ce0f097e70","scripts":{"test":"xo && npm run build && ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"10.9.0","description":"Simple config handling for your app or module","directories":{},"sideEffects":false,"_nodeVersion":"23.3.0","dependencies":{"ajv":"^8.17.1","semver":"^7.6.3","dot-prop":"^9.0.0","env-paths":"^3.0.0","atomically":"^2.0.3","ajv-formats":"^3.0.1","debounce-fn":"^6.0.0","json-schema-typed":"^8.0.1","uint8array-extras":"^1.4.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.60.0","ava":"^6.2.0","del":"^8.0.0","tsd":"^0.31.2","delay":"^6.0.0","tempy":"^3.1.0","del-cli":"^6.0.0","p-event":"^6.0.1","ts-node":"^10.9.2","typescript":"^5.7.2","@types/node":"^22.10.1","@types/semver":"^7.5.8","@sindresorhus/tsconfig":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_13.1.0_1733586864797_0.0003715190067863361","host":"s3://npm-registry-packages"}},"0.11.0":{"name":"conf","version":"0.11.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@0.11.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"esnext":true},"dist":{"shasum":"1a3da303111b92b18e6eef8842531f5fce8b5bca","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-0.11.0.tgz","integrity":"sha512-AJ+58I4G8rF52HjS4ki9ZopKjvMfQSpHX3gPajNgMjTyll2K+1Rpa0wfVQIK8gJwVjtkhh3LWmAvvuUx3OvBnQ==","signatures":[{"sig":"MEQCIDiwbIWkoWcxnNcOzN0f9laiiMTPYPxYkNo/auBhkqWJAiAhCXM7TlSDPzH9cP/AXIJaUymYvU+B1TNRkyCjUSpTfw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"1a3da303111b92b18e6eef8842531f5fce8b5bca","gitHead":"c43229217cf98eeafb40a2a717533786c154f8c2","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"2.15.5","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"4.4.5","dependencies":{"mkdirp":"^0.5.1","pkg-up":"^1.0.0","dot-prop":"^3.0.0","env-paths":"^0.2.0"},"devDependencies":{"xo":"*","ava":"*","del":"^2.2.1","tempfile":"^1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/conf-0.11.0.tgz_1466765657432_0.4918784578330815","host":"packages-12-west.internal.npmjs.com"}},"2.2.0":{"name":"conf","version":"2.2.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@2.2.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"ee282efafc1450b61e205372041ad7d866802d9a","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-2.2.0.tgz","fileCount":4,"integrity":"sha512-93Kz74FOMo6aWRVpAZsonOdl2I57jKtHrNmxhumehFQw4X8Sk37SohNY11PG7Q8Okta+UnrVaI006WLeyp8/XA==","signatures":[{"sig":"MEUCIQDzsRKh5Db6FYWggNNna2LSIS2PJm/eU7/YEKYQ/2CZ5AIgNRpqgVc6zVrqHF93IaoJQxCJCtGlkqm1Lo3RJJ8xK7c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12634,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcQX1iCRA9TVsSAnZWagAA250P/02a5zXGUCwsxEA/XpoK\na+FMc1X1bJ9S05IF6P3ePjQXjysYtTIyrXf/aN4jc2n2UhFA0vp992w+Nnkn\nZ6VsTjL6NyQFd/uPANuHXbZDWTtRpNqGa59a/ZQRUti35Fj+g3m25zlXSdcb\nCylYQswFI2f/uf1zvrM58g2CoXXJUVYKIXYIs1Jae997/KTJIQrzS3BiKS7P\nEKmZuLJmhtz7d8UOqVDc13+GrM13kJJqstgR6M5yxr58y8zJkmBoMeCwbaGe\nw2u28II+o/s0w93NRaHaIU0ERPVByIUcIJYV756C+MHDlTV6YIG7XULSrK70\ndZJAJv6ejnzrMsr6o/STPwoSCudWFOuFQEkfZZW+YxLJawxGFlapYYVG1Wt3\nS0fUMcvDBb7Hv3oJnVXJ0Q6QwGy7aZTJA6cIf5Ra6HN04DB9bLmdJRZb+oN8\n6MiRcdaRt8Yu3RCt2i042BnJ1S9+ChTiCV5yXfOG3On1JgBkQnsToU8yzokw\n9aZBgN1EXakUKRugkLL8qgJwPEcUZYLz7wL8o8F82EW2CJGqqi3RyzTnDGL3\n975rP6fUJx8snkRS5No7LmK4RPUB956SaTIMLFZd56D9sulaSXWn3BV1CLOF\nvQNNZIEGBajmcy6oH9F9geJtco8ni9Q2ZOIBgP8p6CO3bewEttuXOmwWVFz1\nPXlb\r\n=c8Xz\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"},"gitHead":"fb9e84f42149d531f86d0a60dacd6e77a2a77bc2","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.5.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"10.13.0","dependencies":{"pkg-up":"^2.0.0","dot-prop":"^4.1.0","make-dir":"^1.0.0","env-paths":"^1.0.0","write-file-atomic":"^2.3.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.23.0","ava":"^0.25.0","del":"^3.0.0","tempy":"^0.2.1","clear-module":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_2.2.0_1547795810192_0.5387251833699003","host":"s3://npm-registry-packages"}},"1.4.0":{"name":"conf","version":"1.4.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@1.4.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"1ea66c9d7a9b601674a5bb9d2b8dc3c726625e67","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-1.4.0.tgz","integrity":"sha512-bzlVWS2THbMetHqXKB8ypsXN4DQ/1qopGwNJi1eYbpwesJcd86FBjFciCQX/YwAhp9bM7NVnPFqZ5LpV7gP0Dg==","signatures":[{"sig":"MEQCIAfKY3R6PBedd42AzCbMEW2xPimYevh/IEBRkqmDT7G3AiBHAyvfQGYvIrxp/Co9nNLhAygVHGufrvI/wKS0bmcaqQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js"],"engines":{"node":">=4"},"gitHead":"0e5558aae52e5b0420846520e163bcec7731e07e","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"5.5.1","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"8.9.0","dependencies":{"pkg-up":"^2.0.0","dot-prop":"^4.1.0","make-dir":"^1.0.0","env-paths":"^1.0.0","write-file-atomic":"^2.3.0"},"devDependencies":{"xo":"*","ava":"*","del":"^3.0.0","tempy":"^0.2.1","clear-module":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conf-1.4.0.tgz_1515088299723_0.8506107989232987","host":"s3://npm-registry-packages"}},"10.0.3":{"name":"conf","version":"10.0.3","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@10.0.3","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"@typescript-eslint/no-implicit-any-catch":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"af266186cc754daefd2749398861ec538c50da17","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-10.0.3.tgz","fileCount":7,"integrity":"sha512-4gtQ/Q36qVxBzMe6B7gWOAfni1VdhuHkIzxydHkclnwGmgN+eW4bb6jj73vigCfr7d3WlmqawvhZrpCUCTPYxQ==","signatures":[{"sig":"MEQCIFi6OlOFKVEASTXKn6AENszaHQ27gH2b5kefiNmV2S3iAiAIvGnXtvkhRhIvPc7PzP+Zb4dL14jHWy7loBTnRULMNw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46192,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhQk5TCRA9TVsSAnZWagAANfUP/i2NyS9STx2ZBwekZrJ1\nJAd93pnNApWZDzUGirB9KDjcoiBM9wrop1HN0+eMZw1jxHNkKF7Qoct4fD6q\nQeDrGgl23gRCcH2OB+NQT/OFgGHCvpXPQfgtJPsSgtx2LxRBjyEfRz54PvNs\n5KAuM7j9shTZGX6RHKR2EjTPThb4Qxxoex7xoEKFQxI1cOrLoscLxPKXZlF8\nYqwBAZWBI2G5IOE+XEVVBS0omAQXMlGrI9d2/Taw7UW5VXyoey1G9OtR6yr3\nOBLAgjg30qkBBRURX6/crBImNXxfwnLgxgXUaFwHInNxSbjBeUw6dUF7yG1Y\nd/Ns9/wCbMPnxA+kQkHc78NaLnJyGvl63oip2IX/2sKIlYNfsZj6u0CEzCAs\nox6/PhOsL8pW8c9hueevNXpgHCZ1xQBoXvQY/mFO2O7z3XnJUAkdDCeI1C8b\np6NnVAzMQtAstZlPVXhLCUNM2ucfAgtwCH0hkmwvi/bzQbwjloIJongRz86M\nWWZ0NVT2i01wtMK1MtnBbB7t1JgE8NjS2OxyFc/LR3EDS70gtP5/8ayWmUQ6\n6oiCTovHMYOZUeNM88ZeFcu70HyjbFuW5eYuBiFu7exHv424qMJR39e/fHR7\n9DHkcSLYTbHzzh4YQZfnlt9/TaQzB3TCsL6WV1oequ+uaIG8fK86O0vmMOIX\nYjuf\r\n=iRme\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=12"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"cfaac46c7972281434bd4f76c367117ae7f1ffdf","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"7.20.3","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"12.22.1","dependencies":{"ajv":"^8.6.3","pkg-up":"^3.1.0","semver":"^7.3.5","onetime":"^5.1.2","dot-prop":"^6.0.1","env-paths":"^2.2.1","atomically":"^1.7.0","ajv-formats":"^2.1.1","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.38.2","ava":"^3.15.0","del":"^6.0.0","nyc":"^15.1.0","tsd":"^0.14.0","delay":"^5.0.0","tempy":"^1.0.1","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"^4.4.3","@types/node":"^14.14.41","clear-module":"^4.1.1","@types/semver":"^7.3.4","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_10.0.3_1631735379250_0.9724605553885113","host":"s3://npm-registry-packages"}},"10.0.2":{"name":"conf","version":"10.0.2","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@10.0.2","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"@typescript-eslint/no-implicit-any-catch":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"2e0e89fb85ec2c6fba1efce652d7561ed0b70084","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-10.0.2.tgz","fileCount":7,"integrity":"sha512-iyy4ArqyQ/yrzNASNBN+jaylu53JRuq0ztvL6KAWYHj4iN56BVuhy2SrzEEHBodNbacZr2Pd/4nWhoAwc66T1g==","signatures":[{"sig":"MEQCIEmw6rZ6zVt/tAbpunH9ndFTbO5NLATDsXOlab4l/rlVAiA38Um80yRQ2FOg/0zlMg9YoaY1cZJ+c09XWWtdbzH+hg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46444,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhD6h8CRA9TVsSAnZWagAAqdYP/0kokVqxB/p3PWkqUh1L\n/AayM3Hp4NFDrExLZLbVd81giwwCiqQy0ijjzbuPk4JLk7T5VXvQAIfSxWn8\nqXsIwmT3vIiPFrO7YLFnVbvBBkCDXYwiBQti1tiMM6zAvShFFhSKlRjgMUyj\nNFPBYW/TmCr4kG1kaU4Np00QaEk2HFTxCu3q1GYY9+32znSrTFpyBmxwd7AH\nOiwjkP5gHdYrw/bmq8bWW6Ff0NoPO45zir4l+SbVNX9L6SpE4gbQKZt4Zj+Y\nZJXmXKA+Pq89t5MaUWwR+18p88g0f2jdc9nAuNi8U9DQaiGoL4HgOZYzsf3Y\nHxEqb2CV/ooOdPk6X8ddrVUsimVw3psd/Z6yWvfTwoR335jLAa/ciRsSd4nV\nrZxj7HGCMOdtlZQ6+rMT2gIg+Pggv3DyLcSaZ/BxRZ62kfjew7cW74H9M38Q\nCHsgAqxmvwUnldCrbtaKCrrCzMt0SZQviRbWh8jruOtDk7mvcQpdQ0qO+4Rp\no+ri2YYTNQJIHNyJkS/5G/xoq+l5MqG5/lpotZ2aPvvfkV3IexZs+ImX8Wq4\nT7VOIkn70DTBIEl6AYADpYPJxe/SvPkPM0D6cBbF9jVmC7GlgejgtwCXrBSW\numC3aSLraSrnXFGMhzQq+ssCxLQzf79alKQ2RSudu23rdTCV2nuF0Mbp3NJn\nIngo\r\n=wTVQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=12"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"e7eb75c5c576a91df9be53275f9d937665304cf9","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"7.10.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"12.22.1","dependencies":{"ajv":"^8.1.0","pkg-up":"^3.1.0","semver":"^7.3.5","onetime":"^5.1.2","dot-prop":"^6.0.1","env-paths":"^2.2.1","atomically":"^1.7.0","ajv-formats":"^2.0.2","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.38.2","ava":"^3.15.0","del":"^6.0.0","nyc":"^15.1.0","tsd":"^0.14.0","delay":"^5.0.0","tempy":"^1.0.1","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"^4.2.4","@types/node":"^14.14.41","clear-module":"^4.1.1","@types/semver":"^7.3.4","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_10.0.2_1628416124636_0.8581648951059055","host":"s3://npm-registry-packages"}},"10.2.0":{"name":"conf","version":"10.2.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@10.2.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"@typescript-eslint/no-implicit-any-catch":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"838e757be963f1a2386dfe048a98f8f69f7b55d6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-10.2.0.tgz","fileCount":7,"integrity":"sha512-8fLl9F04EJqjSqH+QjITQfJF8BrOVaYr1jewVgSRAEWePfxT0sku4w2hrGQ60BC/TNLGQ2pgxNlTbWQmMPFvXg==","signatures":[{"sig":"MEUCIQD2SG15TN45mxbhbIlUUcCW8v0wvnQnfrzN3ItlvN/SlgIgaHudQ8t3VPqTWxI0pH6zrzl61OXF31Vrc/YCVrA8Rs0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49972,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi5MzLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp9oQ//Z6lELyKnd7vl6yMWIJj24e4CB/3g0p8eene4v/mn1HOW5WRl\r\nhaxHqac2vLdhGRCg/e8V7eaMtfOHtAw0aL6R9rXm8RQCjDCV5OL5lSaKGCa9\r\ndaBSs4XkCSMAJ3a8JJxymtjCS64eHznbOeDe53ASbY8vCbcu/FUMUBsornPs\r\n6kDPD2BNc2hDRoGOeU0z/AKNbybIE5LEwVuEIQ7WaRYuQaiu/uSuCsJG/XPl\r\nBpD0SFSwh4bxcFOAHUtviGleJQ1YRi5Ks4XEeU9N+UwmiKDuxJ6Sx60wsFWP\r\n1bM64L4Csjgyq5VTqKNPFrSEf1JF8Ddw19+9nyUUwEtdyfJq+/ceV5edoyNu\r\nAKG78ht1mf7+ZjhuJPuBCjeyKx6HpWBLHZf6rKIM5ecEWL1tKmr+/qT8Fc0i\r\nDcDfn8ORCrmLrHZn9Jw+gmJrEZDUJa5G0BEtJAwZsduBHjHRefc3hLggVnmb\r\nPTcj9sLV9m4c9XRo9k38nHkv+xtT6neUWrSUcvuPGA89gVlDzdi7/mcO42WO\r\n+BJnsokGM7LumkFaEGyTtg3iyRcWWroje9s74OdoKBlOKjrfg2uI1f5bvfIj\r\nm9PE5Mh6fjwKPOH4qK1VHdp18PxOhmGTEmpJF/uNtkI73kdMqv/S57QbKOGJ\r\nxiJj4PvYLZQyHol/t9B3rSONMRLSEFFy16I=\r\n=ImrM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=12"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"00b0afad8e9544458d3f664711e8b60031ad2597","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"8.3.2","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"14.19.3","dependencies":{"ajv":"^8.6.3","pkg-up":"^3.1.0","semver":"^7.3.5","onetime":"^5.1.2","dot-prop":"^6.0.1","env-paths":"^2.2.1","atomically":"^1.7.0","ajv-formats":"^2.1.1","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.38.2","ava":"^3.15.0","del":"^6.0.0","nyc":"^15.1.0","tsd":"^0.14.0","delay":"^5.0.0","tempy":"^1.0.1","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"^4.4.3","@types/node":"^14.14.41","clear-module":"^4.1.1","@types/semver":"^7.3.4","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_10.2.0_1659161803031_0.3224852760141008","host":"s3://npm-registry-packages"}},"10.0.1":{"name":"conf","version":"10.0.1","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@10.0.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"@typescript-eslint/no-implicit-any-catch":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"038093e5cbddc0e59bc14f63382c4ce732a4781d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-10.0.1.tgz","fileCount":7,"integrity":"sha512-QClEoNcruwBL84QgMEPHibL3ERxWIrRKhbjJKG1VsFBadm5QpS0jsu4QjY/maxUvhyAKXeyrs+ws+lC6PajnEg==","signatures":[{"sig":"MEUCIAQuVNl9XwBOgw74Vr4nRkeyF4LHYb9rJav6YjuNe2hSAiEAwX7G83zO56kaWoidj/uLvesm0D4XNiE3YFFoYfknCFU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45580,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJggBojCRA9TVsSAnZWagAAdsQP/jekyeCEgirnCwHH7BBw\ne0/ax7TW8y+clx3EMge6tC5n+Lk1YVjHM5dCm6iBKHs9uItXOlK71vwL+vOu\nacbaCkjiHvGo3sx1D4y12SlaUrhVy7/wFtYvYa4HNfS5mhHcjmelHPwIbP+l\nZi8g3qtQmLibhOHTQJmCdu3uHrz9HvNkhZdLI1QDZeRukRXWhYeK56+YFR7o\nia2bYFFE5VX7H4rkr82Crw2aac9t/9Vxo3e78MF4bi75a/xJNp3t6j5/9IXy\n6AoktAhIRk+vNTkmEKpAgaoSu7DGq1iFEkYCxPFoIAtcW89tT8BRZPTokqZf\njb1kOU9glMGcWrd9+0cXJ6zpNAWOeLlF4rbm5wQw91DZHJuiKQbO87bmwgmE\naZXG68xwAMihxzCb0CJjCFYroha/wEBA69qfJnzS/MBCNpaf2+7WF0BVgl4V\nd039i0FqOHb/p+pJtlLgEo0LMs88wbgHGVhzAmPGFvfnYkBLIgdXBeJ2tL44\nSU4TM8lY1gtIZcl8c8EALBkssrRhlL4UUrF1BCWktk9nFZDpfDqfzIxexcFD\nOpSiBJAriBeKD6uSyGT/KEoP5xx9CQd9lQyPsAjqzJeow0S92XE7Cq/jK842\niTc4NEtzj7bqwLfgD5vFc4jub8oTWJaFcmpTYuRu8DzSk3Oy9XtFgp8M/4t8\nYom8\r\n=DmXC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=12"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"08f263963f48b25df8659bcbf6c3051a24d89471","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.14.10","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"12.22.1","dependencies":{"ajv":"^8.1.0","pkg-up":"^3.1.0","semver":"^7.3.5","onetime":"^5.1.2","dot-prop":"^6.0.1","env-paths":"^2.2.1","atomically":"^1.7.0","ajv-formats":"^2.0.2","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.38.2","ava":"^3.15.0","del":"^6.0.0","nyc":"^15.1.0","tsd":"^0.14.0","delay":"^5.0.0","tempy":"^1.0.1","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"^4.2.4","@types/node":"^14.14.41","clear-module":"^4.1.1","@types/semver":"^7.3.4","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_10.0.1_1619008035029_0.053563510540242776","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"conf","version":"10.0.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@10.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"xo":{"rules":{"@typescript-eslint/no-implicit-any-catch":"off"}},"ava":{"files":["test/*","!test/index.test-d.ts"],"timeout":"1m","typescript":{"rewritePaths":{"test/":"dist/test/"}}},"nyc":{"exclude":["**/test/**"],"extension":[".ts"]},"dist":{"shasum":"972e2a7b6171ad6e4eb9a071fecc2e1161aa87fb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-10.0.0.tgz","fileCount":7,"integrity":"sha512-oFpzKpAT7kHAL+wBW5cqeBUwcsetk662xF6966p0w2+lGjYzfnRvSZILYkYeBkdQjWfH4OjvTHr11jmz+Z9d5Q==","signatures":[{"sig":"MEYCIQDiYlGica1IoxsFRyJDPSiY8Csy5hNRiO0gKRpCP+OSbgIhAI2GdygIQBK0LKr615r17TQbQKr17xfbMYclAJ5cBB3o","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45330,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgfdpGCRA9TVsSAnZWagAAkCIP/330+Sq+H6SnWpvS6RZo\nemeP85/yggjRtXBeoS7rC+fRQ8gEZ7s2GU6quLYzQ0WHPovQi1j4hRrx1Xub\n3wfL71IqWQDleXOcYtBCaZ54wLqpGgGrASobm3bGIPeggozMu92FrzM56iFM\n1uZ428AU2nLMgheTtc+U2LYgEMLMWYJhYpi+Bn6p3+IjBq0qVCn9/qT/iRcq\n4k/af465LWcNTKEhNRLFYshWTGC1dac1l6dETCLwmdn7mC3VUxu/htGovkMr\n0SLz9JaRjfGms2f+jAfRZLFj4iqTzyfoB2XRxoDof+WTqZ+kSTMOC5VX/jQH\n76uoNt8C5lHU9z1NRe2laKGKkXgeXahXAvySKGrTqEHdWXZ96h3VCufcljqV\nVxvfPqa2qRGOUzpieTkUInkp/pMMstfqWs70qYWuRUgNt7wOcYTrxItE6mUr\nRw9u7b+0C+VVqbWE48uLL7wiVKdE5F2zRgvyafK+OKXuqPHp2Rd/d/Q8UFqb\nMoAQnpou2/f6aSgEJItasj2J4yF1XJuBbkuHO2y0Uf4VIp57BON3Oh4eEe45\na7aFEvQUohaXanLvmaEoeVxpMRPQqMcTFHHWM4tSrjEVU0y55N5rlwz7yRxJ\nZN/yojQ85HFFHRUnJep1wwNqtowyzx5r2YKz0N3E0AnhXY5KPe43GN6oF5rz\nVFeP\r\n=8dZU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/source","types":"dist/source","engines":{"node":">=12"},"funding":"https://github.com/sponsors/sindresorhus","gitHead":"8329e55448df581fdae63fd7bf67c0ab077997a7","scripts":{"test":"xo && npm run build && nyc ava","build":"del-cli dist && tsc","prepack":"npm run build"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.14.10","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"12.20.1","dependencies":{"ajv":"^8.1.0","pkg-up":"^3.1.0","semver":"^7.3.5","onetime":"^5.1.2","dot-prop":"^6.0.1","env-paths":"^2.2.1","atomically":"^1.7.0","ajv-formats":"^2.0.2","debounce-fn":"^4.0.0","json-schema-typed":"^7.0.3"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.38.2","ava":"^3.15.0","del":"^6.0.0","nyc":"^15.1.0","tsd":"^0.14.0","delay":"^5.0.0","tempy":"^1.0.1","del-cli":"^3.0.1","p-event":"^4.2.0","typescript":"^4.2.4","@types/node":"^14.14.41","clear-module":"^4.1.1","@types/semver":"^7.3.4","@ava/typescript":"^1.1.1","@sindresorhus/tsconfig":"^0.7.0","@types/write-file-atomic":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/conf_10.0.0_1618860614289_0.2791406575881281","host":"s3://npm-registry-packages"}},"15.1.0":{"name":"conf","version":"15.1.0","description":"Simple config handling for your app or module","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/conf.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{"types":"./dist/source/index.d.ts","default":"./dist/source/index.js"},"sideEffects":false,"engines":{"node":">=20"},"scripts":{"test":"xo && tsc --noEmit && tsx --test test/**.ts","build":"del-cli dist && tsc","prepare":"npm run build"},"keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"dependencies":{"ajv":"^8.17.1","ajv-formats":"^3.0.1","atomically":"^2.0.3","debounce-fn":"^6.0.0","dot-prop":"^10.0.0","env-paths":"^3.0.0","json-schema-typed":"^8.0.1","semver":"^7.7.2","uint8array-extras":"^1.5.0"},"devDependencies":{"@sindresorhus/tsconfig":"^8.0.1","@types/node":"^24.5.2","@types/semver":"^7.7.1","del":"^8.0.1","del-cli":"^7.0.0","delay":"^6.0.0","expect-type":"^1.2.2","p-event":"^7.0.0","tempy":"^3.1.0","ts-node":"^10.9.2","tsx":"^4.20.6","typescript":"^5.9.2","xo":"^1.2.2"},"xo":{"rules":{"@typescript-eslint/ban-ts-comment":"off","unicorn/prevent-abbreviations":"off","@typescript-eslint/no-floating-promises":"off"}},"gitHead":"49d77e86b886dc516368db34a7f665f8c93a1ea3","_id":"conf@15.1.0","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"homepage":"https://github.com/sindresorhus/conf#readme","_nodeVersion":"25.3.0","_npmVersion":"11.7.0","dist":{"integrity":"sha512-Uy5YN9KEu0WWDaZAVJ5FAmZoaJt9rdK6kH+utItPyGsCqCgaTKkrmZx3zoE0/3q6S3bcp3Ihkk+ZqPxWxFK5og==","shasum":"fa999989aa26d23b29665cf1ceb6e22331f30b41","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-15.1.0.tgz","fileCount":7,"unpackedSize":64545,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIFHyBecf1OC3GsSjWiJiOiEUtFdwHeR2fnYhXVgf1fqrAiEAgAp5ZhdX2jvwum3I6AY4NZRI5RBbr89DX+Yrzt3b8QY="}]},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/conf_15.1.0_1770180223209_0.2616731570639139"},"_hasShrinkwrap":false},"6.1.0":{"name":"conf","version":"6.1.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@6.1.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"6a667ec511f4b717c9aaba35551f34f912fa74aa","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-6.1.0.tgz","fileCount":5,"integrity":"sha512-NjzT0zGZ7iy88ybk4ysz4YDMcGTEJzS2wFNKyQd1ChqcZfF6IKY1j+1+q5Dubu8si2skcMfA86t13vNz1mJckA==","signatures":[{"sig":"MEYCIQDJVZhxGG8DlJhSudjDVOj++mRFsEH7GS2zTEjpeVrTPAIhANDZVxUmJuX7g492HkPDEKLsXDaUeDCoD7zZp5TFi2U1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34607,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdkEEECRA9TVsSAnZWagAAS+EP/RYrzt+0vIo22Cy9+w6T\n1yRRlBoZIynpMvVSHT8tWXYPYBOAJ/M6l3bk5tGVRr0aTqEABCjf0mdX5rSA\nsdaUpFuO8sN1OgQgPrbLps5Nr9V65Wb4oWiW/ad9bDdMDZqdg5iEFERTDTMK\nIOpG0DuK60akR7qWPqkUvT4yXUewFPf6ppEaN9ubPyOFPNapNYytHVu+tAPF\nNYxeAhs3GmHqUOumU+InVQoJSBte4eiyd1o/HnECmt4nQNeQMAlTgZ2Xt4ET\nhCFCZOVqPxSFlcKV0hW1YE/32krhepKfX6HAbXD+2Lpuv5ZkUxGQWtRn1PG6\nLUhwsiU2ZBBOMeDJbdPrf7+rEg4paVaxAYpLRt7oa4dpJg+/7/9DLW+9Dazu\nlzMYz4N66oJ2m3XDxy/B+SWQJ0TK3n/hezAx29pzDN9/N0XIbCpQnoxw+Tjl\n7BkZMFUjIjGYoDpzxbA+Bjt+efPOtrUI1I7dngqw4o3nW2rQ4J8RlQDlii96\nMmQ7F1xTsotj4rWtUrD2JJ7BYkN4pETcS+dOsfKvkOJGA3tQZBydCy1QZwrg\nO1jNGEGeLd3tnD2om9CKOz8n+WuK/AQygakjBYSiEn1HPA4vwq+2G6TbK3lT\npJIKE7bJAPWN237WdpN7gyqCoA/jeQe6jwB6ziCNUGSMrGOvto0CSg7X0dZn\nzkBR\r\n=fbRB\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=8"},"gitHead":"1706a8d928844333ef66a33ddb6855edf13ddc4f","scripts":{"test":"xo && ava && tsd"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"6.11.3","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"10.16.3","dependencies":{"ajv":"^6.10.2","pkg-up":"^3.0.1","semver":"^6.2.0","onetime":"^5.1.0","dot-prop":"^5.0.0","make-dir":"^3.0.0","env-paths":"^2.2.0","debounce-fn":"^3.0.1","json-schema-typed":"^7.0.1","write-file-atomic":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","ava":"^2.3.0","del":"^5.1.0","tsd":"^0.7.4","delay":"^4.3.0","tempy":"^0.3.0","p-event":"^4.1.0","@types/node":"^12.7.4","clear-module":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf_6.1.0_1569734915776_0.4548076716814078","host":"s3://npm-registry-packages"}},"0.8.4":{"name":"conf","version":"0.8.4","keywords":["dsl","conf","config","script","general"],"author":{"url":"https://github.com/jfd/","name":"Johan Dahlberg","email":"dahlberg.johan@gmail.com"},"_id":"conf@0.8.4","maintainers":[{"name":"jfd","email":"dahlberg.johan@gmail.com"}],"homepage":"https://github.com/jfd/node-conf","os":["macos","linux"],"dist":{"shasum":"278aa5d8fe0108d2d72215b5c794b5f000333598","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-0.8.4.tgz","integrity":"sha512-VIuc7nYtPFDGEwridgTEfWprrdUP2usGou+IrCV1+Zg7wu4lN8gfPoWGAUhudDEEbpWygSZnUdmLsTSEms5hPw==","signatures":[{"sig":"MEUCIQDl8io/fuRTrDWEpSxkIJpae4AbzfLMnfN/8njI4bPF2AIgATnchNe2bHbG3g0L77LSAlN3iMAdWoPjUPCTXPFY6ic=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./conf","engines":{"node":">=0.3.0"},"scripts":{},"repository":{"url":"git://github.com/jfd/node-conf.git","type":"git"},"_npmVersion":"1.0.3","description":"Config library for Nodejs","directories":{},"_nodeVersion":"v0.5.3","dependencies":{},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true},"1.0.0":{"name":"conf","version":"1.0.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@1.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"3547170d339bb4d38bf5e0e86c2e5af976b47ffa","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-1.0.0.tgz","integrity":"sha512-FgSqkJ5lNiDctVbtK0YsSNAxhj5H9zEzL+kuqsohYKKaauiIxYUEnH/Zy0DwiyWS3tq36dgHD+/tZD/qb4OEXA==","signatures":[{"sig":"MEYCIQC7YgGsALCuBwMgMFuPNZ1R19WCbSTZQteZq2cWbsvFBgIhALy3jq6ednjwK0x4exwAWIbL/zb1LAWzYK9ESunWMdzq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"3547170d339bb4d38bf5e0e86c2e5af976b47ffa","gitHead":"5bff99ac1bd5dbc44ef8cb6fb2d3c9ea88b8628c","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"4.2.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"7.8.0","dependencies":{"mkdirp":"^0.5.1","pkg-up":"^1.0.0","dot-prop":"^4.1.0","env-paths":"^1.0.0"},"devDependencies":{"xo":"*","ava":"*","del":"^2.2.1","tempy":"^0.1.0","clear-require":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/conf-1.0.0.tgz_1493544753754_0.2496556774713099","host":"packages-12-west.internal.npmjs.com"}},"1.2.0":{"name":"conf","version":"1.2.0","keywords":["config","store","app","storage","conf","configuration","settings","preferences","json","data","persist","persistent","save","load","read","write","cache"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"MIT","_id":"conf@1.2.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/sindresorhus/conf#readme","bugs":{"url":"https://github.com/sindresorhus/conf/issues"},"dist":{"shasum":"149af7408f0af6abd62c3e24cff747e41a0bc54f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/conf/-/conf-1.2.0.tgz","integrity":"sha512-9OsfIDT5DhI08ypXVOx7Dw9OZhaH3H20sQvr6VaaI2ncxEKHEgJAgzy0s+zhMM3ykU+qowPFb5YZKS+j+F/XdQ==","signatures":[{"sig":"MEUCIQD/JQsQVYYFdtnVw5s4O79XPkLkfWIxdDEoDRexJmeTCQIgYulpDrGC8QO3HlbWCa2+35q4V3A3h8XBSpnfkgLHTy0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js"],"engines":{"node":">=4"},"gitHead":"29edc67dcf3ee89cfdbb3ebec4f965acd6fc461e","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/sindresorhus/conf.git","type":"git"},"_npmVersion":"5.3.0","description":"Simple config handling for your app or module","directories":{},"_nodeVersion":"8.2.1","dependencies":{"pkg-up":"^2.0.0","dot-prop":"^4.1.0","make-dir":"^1.0.0","env-paths":"^1.0.0","write-file-atomic":"^2.3.0"},"devDependencies":{"xo":"*","ava":"*","del":"^3.0.0","tempy":"^0.1.0","clear-module":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/conf-1.2.0.tgz_1504508254243_0.8159853939432651","host":"s3://npm-registry-packages"}}},"name":"conf","time":{"0.8.2":"2011-05-30T11:43:31.774Z","0.8.3":"2011-06-08T16:20:20.609Z","9.0.0":"2021-01-22T17:29:37.431Z","0.8.0":"2011-02-27T23:37:13.533Z","9.0.1":"2021-02-07T12:45:15.687Z","0.8.1":"2011-04-27T18:18:32.500Z","9.0.2":"2021-02-12T09:31:19.290Z","4.1.0":"2019-06-01T08:46:37.882Z","8.0.0":"2021-01-07T18:25:43.735Z","0.10.0":"2016-06-21T22:54:59.511Z","modified":"2026-02-21T21:59:39.341Z","7.0.1":"2020-07-03T16:08:48.421Z","2.1.0":"2018-11-12T14:23:08.829Z","created":"2011-02-27T23:37:13.072Z","0.12.0":"2017-01-17T11:02:26.578Z","13.0.1":"2024-06-22T10:08:49.871Z","7.0.0":"2020-07-03T15:00:56.462Z","13.0.0":"2024-06-14T17:25:08.908Z","14.0.0":"2025-06-05T23:57:36.393Z","1.1.2":"2017-06-07T15:23:38.136Z","1.3.0":"2017-09-17T05:36:28.012Z","6.2.2":"2020-04-05T09:49:12.090Z","1.3.1":"2017-09-25T06:45:33.810Z","6.2.3":"2020-04-05T09:52:28.556Z","10.1.2":"2022-03-30T19:11:11.718Z","6.2.0":"2019-11-01T07:07:46.471Z","10.1.1":"2021-11-29T06:23:05.924Z","6.2.1":"2020-02-22T09:33:34.706Z","10.1.0":"2021-11-21T07:11:10.301Z","6.0.0":"2019-09-09T07:16:16.539Z","15.0.1":"2025-10-03T03:16:34.249Z","6.0.1":"2019-09-10T19:53:41.309Z","15.0.0":"2025-09-27T14:31:43.028Z","15.0.2":"2025-10-05T14:16:50.061Z","5.0.0":"2019-06-20T14:08:44.097Z","1.1.0":"2017-05-10T05:17:23.843Z","1.1.1":"2017-05-12T16:07:31.680Z","11.0.1":"2023-01-16T07:40:36.390Z","11.0.0":"2023-01-16T02:59:13.278Z","11.0.2":"2023-07-18T12:17:19.115Z","4.0.2":"2019-04-28T15:30:52.026Z","4.0.0":"2019-04-02T05:43:24.601Z","4.0.1":"2019-04-11T07:01:45.993Z","6.2.4":"2020-04-12T06:32:21.141Z","3.0.0":"2019-03-04T16:28:34.716Z","12.0.0":"2023-10-25T09:21:53.861Z","2.0.0":"2018-05-27T09:31:22.926Z","7.1.0":"2020-07-17T18:48:16.923Z","7.1.1":"2020-07-17T19:12:52.735Z","7.1.2":"2020-08-13T17:40:46.979Z","0.11.2":"2016-07-21T09:49:24.794Z","0.11.1":"2016-07-12T13:25:39.009Z","13.1.0":"2024-12-07T15:54:24.966Z","0.11.0":"2016-06-24T10:54:20.043Z","2.2.0":"2019-01-18T07:16:50.324Z","1.4.0":"2018-01-04T17:51:40.643Z","10.0.3":"2021-09-15T19:49:39.467Z","10.0.2":"2021-08-08T09:48:44.796Z","10.2.0":"2022-07-30T06:16:43.225Z","10.0.1":"2021-04-21T12:27:15.199Z","10.0.0":"2021-04-19T19:30:14.485Z","15.1.0":"2026-02-04T04:43:43.361Z","6.1.0":"2019-09-29T05:28:35.939Z","0.8.4":"2011-08-23T12:11:02.211Z","1.0.0":"2017-04-30T09:32:34.113Z","1.2.0":"2017-09-04T06:57:34.314Z"},"readmeFilename":"readme.md","homepage":"https://github.com/sindresorhus/conf#readme"}