{"maintainers":[{"name":"anonymous","email":"azuciao@gmail.com"}],"keywords":["config","configuration","json","loader","rc","yaml","yml"],"dist-tags":{"latest":"4.1.4"},"author":{"name":"azu"},"description":"load config file from .{product}rc.{json,yml,js}","readme":"# rc-config-loader [![Actions Status: test](https://github.com/azu/rc-config-loader/workflows/test/badge.svg)](https://github.com/azu/rc-config-loader/actions?query=workflow%3A\"test\")\n\nLoad config from `.{product}rc.{json,yml,js}` file.\n\nIt is a Node.js library for loading `.textlintrc`, `.eslintrc`, `.stylelintrc` etc...\n\n## Features\n\nFind and load a configuration object from:\n\n- a `package.json` property if it is needed\n- a JSON or YAML, JS \"rc file\"\n    - `.<product>rc` or `.<product>rc.json` or `.<product>rc.js` or`.<product>rc.yml`, `.<product>rc.yaml`\n- TypeScript support\n    - Includes `.d.ts`\n\n## Difference\n\n### with [MoOx/rc-loader](https://github.com/MoOx/rc-loader \"MoOx/rc-loader\")\n\n- Safe API\n    - `rc` contains shabang in `.js` file\n- Enhance Error message\n\n### with [cosmiconfig](https://github.com/davidtheclark/cosmiconfig \"cosmiconfig\")\n\n- <del>Sync loading</del>\n    - [cosmiconfig@3+](https://github.com/davidtheclark/cosmiconfig/blob/master/CHANGELOG.md#300) support `sync` option\n- <del>Built-in TypeScript support</del>\n    - [comisconfig@6*](https://github.com/davidtheclark/cosmiconfig/blob/master/CHANGELOG.md#600) is written by TypeScript\n\nIf you want to async support and customize loader, recommended to use [cosmiconfig](https://github.com/davidtheclark/cosmiconfig).\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n    npm install rc-config-loader\n\n## Usage\n\n### API\n\n```ts\nexport interface rcConfigLoaderOption {\n    // does look for `package.json`\n    packageJSON?:\n        | boolean\n        | {\n              fieldName: string;\n          };\n    // if config file name is not same with packageName, set the name\n    configFileName?: string;\n    // treat default(no ext file) as some extension\n    defaultExtension?: string | string[];\n    // where start to load\n    cwd?: string;\n}\n/**\n * Find and load rcfile, return { config, filePath }\n * If not found any rcfile, throw an Error.\n * @param {string} pkgName\n * @param {rcConfigLoaderOption} [opts]\n * @returns {{ config: Object, filePath:string } | undefined}\n */\nexport declare function rcFile<R extends {}>(pkgName: string, opts?: rcConfigLoaderOption): {\n    config: R;\n    filePath: string;\n} | undefined;\n\n```\n\n`rcFile` return `{ config, filePath }` object.\n\n- `config`: it is config object\n- `filePath`: absolute path to config file\n\n**Note:**\n \n- `rcFile` function return `undefined` if the config file is not found\n- `rcFile` throw an Error if the config file content is malformed (causing a parsing error)\n\nRecommenced usage:\n\n```js\nimport { rcFile } from \"rc-config-loader\"\n\nfunction loadRcFile(rcFileName){\n    try {\n        const results = rcFile(rcFileName);\n        // Not Found\n        if (!results) {\n            return {};\n        }\n        return results.config;\n    } catch (error) {\n        // Found it, but it is parsing error\n        return {} ; // default value\n    }\n}\n// load config\nconst config = loadRcFile(\"your-application\");\nconsole.log(config); // => rcfile content\n```\n\nIt will check these files and return config file if found it.\n\n- `.your-applicationrc.json`\n- `.your-applicationrc.yml`\n- `.your-applicationrc.yaml`\n- `.your-applicationrc.js`\n- [optional] `package.json`\n  - if `packageJSON` option is enabled\n\n### Example\n\n```js\nimport { rcFile } from \"rc-config-loader\"\n// load .eslintrc from current dir\nconsole.log(rcFile(\"eslint\"));\n\n// load .eslintrc from specific path\nconsole.log(rcFile(\"eslint\", {\n    configFileName: `${__dirname}/test/fixtures/.eslintrc`\n}));\n/*\nconfig: { extends: 'standard',\n  rules:\n   { 'comma-dangle': [ 2, 'always-multiline' ],\n     'arrow-parens': [ 2, 'as-needed' ] } }\nfilePath: ${__dirname}/test/fixtures/.eslintrc\n */\n\n// load property from package.json\nconsole.log(rcFile(\"rc-config-loader\", {\n    packageJSON: {\n        fieldName: \"directories\"\n    }\n}));\n/*\nconfig: { test: 'test' }\nfilePath: /path/to/package.json\n */\n\n// load .eslintrc from specific dir\nconsole.log(rcFile(\"eslint\", {\n    cwd: `${__dirname}/test/fixtures`\n}));\n\n// load specific filename from current dir\nconsole.log(rcFile(\"travis\", {configFileName: \".travis\"}));\n/*\nconfig: { sudo: false, language: 'node_js', node_js: 'stable' }\nfilePath: /path/to/.travis\n */\n\n// try to load as .json, .yml, js\nconsole.log(rcFile(\"bar\", {\n    configFileName: `${__dirname}/test/fixtures/.barrc`,\n    defaultExtension: [\".json\", \".yml\", \".js\"]\n}));\n\n// try to load as foobar, but .foobarrc is not found\nconsole.log(rcFile(\"foorbar\")); // => undefined\n\n// try to load as .json, but it is not json\n// throw SyntaxError\ntry {\n    rcFile(\"unknown\", {\n        // This is not json\n        configFileName: `${__dirname}/test/fixtures/.unknownrc`,\n        defaultExtension: \".json\"\n    })\n} catch (error) {\n    console.log(error);\n    /*\n    SyntaxError: Cannot read config file: /test/fixtures/.unknownrc\n    */\n}\n```\n\n## Users\n\n- [textlint](https://github.com/textlint/textlint \"textlint\")\n\n## Changelog\n\nSee [Releases page](https://github.com/azu/rc-config-loader/releases).\n\n## Running tests\n\nInstall devDependencies and Run `npm test`:\n\n    npm i -d && npm test\n\n## Contributing\n\nPull requests and stars are always welcome.\n\nFor bugs and feature requests, [please create an issue](https://github.com/azu/rc-config-loader/issues).\n\n1. Fork it!\n2. Create your feature branch: `git checkout -b my-new-feature`\n3. Commit your changes: `git commit -am 'Add some feature'`\n4. Push to the branch: `git push origin my-new-feature`\n5. Submit a pull request :D\n\n## Author\n\n- [github/azu](https://github.com/azu)\n- [twitter/azu_re](https://twitter.com/azu_re)\n\n## License\n\nMIT © azu\n\n## Acknowledgement\n\n- [zkochan/rcfile: Loads library configuration in all possible ways](https://github.com/zkochan/rcfile \"zkochan/rcfile: Loads library configuration in all possible ways\")\n\n**Difference**\n\n- support multiple `defaultExtension`  \n","repository":{"type":"git","url":"git+https://github.com/azu/rc-config-loader.git"},"bugs":{"url":"https://github.com/azu/rc-config-loader/issues"},"license":"MIT","versions":{"1.0.1":{"name":"rc-config-loader","version":"1.0.1","keywords":["rc","config","configuration","loader","json","yaml","yml"],"author":{"name":"azu"},"license":"MIT","_id":"rc-config-loader@1.0.1","maintainers":[{"name":"anonymous","email":"azuciao@gmail.com"}],"homepage":"https://github.com/azu/rc-config-loader","bugs":{"url":"https://github.com/azu/rc-config-loader/issues"},"dist":{"shasum":"5014030b3d72341e1e9eb548053765f4c41f3c9e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/rc-config-loader/-/rc-config-loader-1.0.1.tgz","integrity":"sha512-BggZJjxKskLbt1GfV8AN10YuKZKXX1APJO6xIMsLerUq1ZXNh/fb1dmH8t4Lz5FtN/DI/VLk2RYqGIipyZEa4w==","signatures":[{"sig":"MEYCIQD3fEBH812dPQwd5LR/y+caYvuwtkrQgwZ3nHjgOppqVwIhAOCHlq+R35PBKzVSXZV8b+hS+ZTQa9UMozs+iWinCu+s","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/rc-config-loader.js","_from":".","files":["bin/","lib/","src/"],"_shasum":"5014030b3d72341e1e9eb548053765f4c41f3c9e","gitHead":"0e084d76f6978cad3c93a7eff0bcc29059d045bd","scripts":{"test":"mocha test/","build":"cross-env NODE_ENV=production babel src --out-dir lib --source-maps","watch":"babel src --out-dir lib --watch --source-maps","prepublish":"npm run --if-present build"},"_npmUser":{"name":"anonymous","email":"azuciao@gmail.com"},"repository":{"url":"git+https://github.com/azu/rc-config-loader.git","type":"git"},"_npmVersion":"3.10.9","description":"load config file from .{product}rc.{json,yml,js}","directories":{"test":"test"},"_nodeVersion":"7.2.0","dependencies":{"debug":"^2.2.0","json5":"^0.5.0","js-yaml":"^3.6.1","object-keys":"^1.0.9","path-exists":"^2.1.0","object-assign":"^4.1.0","require-uncached":"^1.0.3"},"devDependencies":{"chai":"^3.5.0","mocha":"^3.2.0","eslint":"^3.15.0","babel-cli":"^6.22.2","cross-env":"^3.1.4","power-assert":"^1.4.2","babel-register":"^6.22.0","babel-preset-latest":"^6.22.0","babel-preset-power-assert":"^1.0.0","babel-preset-jsdoc-to-assert":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rc-config-loader-1.0.1.tgz_1486889698834_0.07038742257282138","host":"packages-12-west.internal.npmjs.com"}},"1.0.2":{"name":"rc-config-loader","version":"1.0.2","keywords":["rc","config","configuration","loader","json","yaml","yml"],"author":{"name":"azu"},"license":"MIT","_id":"rc-config-loader@1.0.2","maintainers":[{"name":"anonymous","email":"azuciao@gmail.com"}],"homepage":"https://github.com/azu/rc-config-loader","bugs":{"url":"https://github.com/azu/rc-config-loader/issues"},"dist":{"shasum":"c5e903ab36c22204f3cca9d9ddfd7e68fe3758eb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/rc-config-loader/-/rc-config-loader-1.0.2.tgz","integrity":"sha512-L5n95OQXQjYNaSiXobzsVzp3Zx/OePSMxb07T/sfE7nr0b7NahUb1m4Tm4XuxP60WYZuRFYpM6aZ97eIPlLjLw==","signatures":[{"sig":"MEUCIQClLOZjAtfmHKUKhaKd52qyPIB9lQc0IPthGEYGoUC1/QIgHqO8BtpbeM38x7vVDxY5WrBMjJnfonrpktEKpmEnlt0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/rc-config-loader.js","_from":".","files":["bin/","lib/","src/"],"_shasum":"c5e903ab36c22204f3cca9d9ddfd7e68fe3758eb","gitHead":"caf23e45fb8a812747c0527ffc94a8b68a12af76","scripts":{"test":"mocha test/","build":"cross-env NODE_ENV=production babel src --out-dir lib --copy-files --source-maps","watch":"babel src --out-dir lib --watch --source-maps","prepublish":"npm run --if-present build"},"_npmUser":{"name":"anonymous","email":"azuciao@gmail.com"},"repository":{"url":"git+https://github.com/azu/rc-config-loader.git","type":"git"},"_npmVersion":"3.10.9","description":"load config file from .{product}rc.{json,yml,js}","directories":{"test":"test"},"_nodeVersion":"7.2.0","dependencies":{"debug":"^2.2.0","json5":"^0.5.0","js-yaml":"^3.6.1","object-keys":"^1.0.9","path-exists":"^2.1.0","object-assign":"^4.1.0","require-uncached":"^1.0.3"},"devDependencies":{"chai":"^3.5.0","mocha":"^3.2.0","eslint":"^3.15.0","babel-cli":"^6.22.2","cross-env":"^3.1.4","power-assert":"^1.4.2","babel-register":"^6.22.0","babel-preset-latest":"^6.22.0","babel-preset-power-assert":"^1.0.0","babel-preset-jsdoc-to-assert":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rc-config-loader-1.0.2.tgz_1486890356699_0.6599703801330179","host":"packages-18-east.internal.npmjs.com"}},"2.0.0":{"name":"rc-config-loader","version":"2.0.0","keywords":["rc","config","configuration","loader","json","yaml","yml"],"author":{"name":"azu"},"license":"MIT","_id":"rc-config-loader@2.0.0","maintainers":[{"name":"anonymous","email":"azuciao@gmail.com"}],"homepage":"https://github.com/azu/rc-config-loader","bugs":{"url":"https://github.com/azu/rc-config-loader/issues"},"dist":{"shasum":"20b56f87463f6b5cd97fc2da1f8e96c55321862d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/rc-config-loader/-/rc-config-loader-2.0.0.tgz","integrity":"sha512-dfoexurtxJWnG72wVinvT/ZYDEyIDSMJBrKRm78QE8cHhl8RkjrpaPk3p371lK5+rpjXnaS5kAisOzz3itLTCA==","signatures":[{"sig":"MEQCIEQ8sc7+yzMtRxM98beGbEsRsoq6I6kXDunO1n5xzx3OAiBo24OCbaFeVS88gnKMYXXaa/eTRw0qOmQiOY4QxYLiRg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/rc-config-loader.js","_from":".","files":["bin/","lib/","src/"],"_shasum":"20b56f87463f6b5cd97fc2da1f8e96c55321862d","gitHead":"281cf1b0e656641bdb1c4041d932d9d738af80fa","scripts":{"test":"mocha test/","build":"cross-env NODE_ENV=production babel src --out-dir lib --copy-files --source-maps","watch":"babel src --out-dir lib --watch --source-maps","prepublish":"npm run --if-present build"},"_npmUser":{"name":"anonymous","email":"azuciao@gmail.com"},"repository":{"url":"git+https://github.com/azu/rc-config-loader.git","type":"git"},"_npmVersion":"4.3.0","description":"load config file from .{product}rc.{json,yml,js}","directories":{"test":"test"},"_nodeVersion":"7.2.0","dependencies":{"debug":"^2.2.0","json5":"^0.5.0","js-yaml":"^3.6.1","object-keys":"^1.0.9","path-exists":"^2.1.0","object-assign":"^4.1.0","require-uncached":"^1.0.3"},"devDependencies":{"chai":"^3.5.0","mocha":"^3.2.0","eslint":"^3.15.0","babel-cli":"^6.22.2","cross-env":"^3.1.4","power-assert":"^1.4.2","babel-register":"^6.22.0","babel-preset-latest":"^6.22.0","babel-preset-power-assert":"^1.0.0","babel-preset-jsdoc-to-assert":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rc-config-loader-2.0.0.tgz_1495351719023_0.8772994922474027","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"rc-config-loader","version":"2.0.1","keywords":["rc","config","configuration","loader","json","yaml","yml"],"author":{"name":"azu"},"license":"MIT","_id":"rc-config-loader@2.0.1","maintainers":[{"name":"anonymous","email":"azuciao@gmail.com"}],"homepage":"https://github.com/azu/rc-config-loader","bugs":{"url":"https://github.com/azu/rc-config-loader/issues"},"dist":{"shasum":"8c8452f59bdd10d448a67762dccf7c1b247db860","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/rc-config-loader/-/rc-config-loader-2.0.1.tgz","integrity":"sha512-OHr24Jb7nN6oaQOTRXxcQ2yJSK3SHA1dp2CZEfvRxsl/MbhFr4CYnkwn8DY37pKu7Eu18X4mYuWFxO6vpbFxtQ==","signatures":[{"sig":"MEYCIQCaCg/6VZlV5UvMZn7xh7cSYIJGWVxVaOTKG/s2bKoseAIhANGheSPsILV7pxe7Kl9iQ1+j+tGHJlgkYroanJPy0710","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/rc-config-loader.js","files":["bin/","lib/","src/"],"gitHead":"1d643ce5b935543ca4c250c2f80257b65b10e9d4","scripts":{"test":"mocha test/","build":"cross-env NODE_ENV=production babel src --out-dir lib --copy-files --source-maps","watch":"babel src --out-dir lib --watch --source-maps","prettier":"prettier --write '**/*.{js,jsx,ts,tsx,css}'","precommit":"lint-staged","postcommit":"git reset","prepublish":"npm run --if-present build"},"_npmUser":{"name":"anonymous","email":"azuciao@gmail.com"},"prettier":{"tabWidth":4,"printWidth":120},"repository":{"url":"git+https://github.com/azu/rc-config-loader.git","type":"git"},"_npmVersion":"5.5.1","description":"load config file from .{product}rc.{json,yml,js}","directories":{"test":"test"},"lint-staged":{"*.{js,jsx,ts,tsx,css}":["prettier --write","git add"]},"_nodeVersion":"8.9.0","dependencies":{"debug":"^2.2.0","json5":"^0.5.0","js-yaml":"^3.6.1","object-keys":"^1.0.9","path-exists":"^2.1.0","object-assign":"^4.1.0","require-from-string":"^2.0.1"},"devDependencies":{"chai":"^3.5.0","husky":"^0.14.3","mocha":"^3.2.0","eslint":"^3.15.0","prettier":"^1.8.2","babel-cli":"^6.22.2","cross-env":"^3.1.4","lint-staged":"^5.0.0","power-assert":"^1.4.2","babel-register":"^6.22.0","babel-preset-latest":"^6.22.0","babel-preset-power-assert":"^1.0.0","babel-preset-jsdoc-to-assert":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rc-config-loader-2.0.1.tgz_1511655333850_0.9836412514559925","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"rc-config-loader","version":"2.0.2","keywords":["rc","config","configuration","loader","json","yaml","yml"],"author":{"name":"azu"},"license":"MIT","_id":"rc-config-loader@2.0.2","maintainers":[{"name":"anonymous","email":"azuciao@gmail.com"}],"homepage":"https://github.com/azu/rc-config-loader","bugs":{"url":"https://github.com/azu/rc-config-loader/issues"},"dist":{"shasum":"46eb2f98fb5b2aa7b1119d66c0554de5133f1bc1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/rc-config-loader/-/rc-config-loader-2.0.2.tgz","fileCount":8,"integrity":"sha512-Nx9SNM47eNRqe0TdntOY600qWb8NDh+xU9sv5WnTscEtzfTB0ukihlqwuCLPteyJksvZ0sEVPoySNE01TKrmTQ==","signatures":[{"sig":"MEUCIQDPcIdVF4OQE75dQ3Ggnz8UlN42n1KGVtMZwixsr4iqMgIgLiVpU2vVE8Zbgn5AnDWx13ynNaRZNk1ZxY/w0GneJL8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29647,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaXgeCRA9TVsSAnZWagAAURwP/11xEbfY7sz0/2T96J1j\nhRb/COGrjIJsirgJw0hBIjQq+8H1AAwJYovU8KEeU4okhiF4EzUJ1PCTcjRr\nvV32xy3xw7hJDFHtTt3LPo7j9AVmQL8CQsWCUYLfn3nhGN1luEV6FYzPsT2I\nXgBW6aXp1G1WLJiDw1cZZ+6JzBeThdmcoOaC7zztAGG9/Yy4CFtIJOTevbG2\nevXeiO0if7pGxH+aHZ7IaO5RPPBHu8xOI21U8/vlYFd0FR1vbjfREbxpS4gs\ni57FO3dxKidwCjgtrxSqZyEwmimFy74ps/ANH9u5j0fx1YwLLxCLjECxSjOT\n7FKhPl9e+0vQcRFmZrCPNJmy6RZIZraZihWcUbWSSE0TggjMvKNYzQDCPvia\n6G9SF//N00/KSEYs5nfWTwQakA5tUTorCcsvLCci0atv5VyGUKflVYJH5xJi\nPwAAwrrYbFsmId3xmPE01EP3XiHQecy4l66Y45xcpjzwL3Ygmr0QL9Kn1CwX\n6Z/2+oGgvJiMZF+JZnnNxkHpD2mmUfKKFreVtUHwA6g3kDSPZYPs6eeYRgv9\nfwBua1+qW2qrRfzFihEXjXb03c1zbVCgPJ27zme8C78AmJDRXNjTFHHg99pp\nGGpAQ8N3saNAvt1+pleJVzIo/r7LUeUM4+y97YHZiBgfXsZb4+C1KRiYSwAb\nTQDB\r\n=93ss\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/rc-config-loader.js","files":["bin/","lib/","src/"],"gitHead":"baecd1ec66847135a473ebd89bfa81f02cedc678","scripts":{"test":"mocha test/","build":"cross-env NODE_ENV=production babel src --out-dir lib --copy-files --source-maps","watch":"babel src --out-dir lib --watch --source-maps","prettier":"prettier --write '**/*.{js,jsx,ts,tsx,css}'","precommit":"lint-staged","postcommit":"git reset","prepublish":"npm run --if-present build"},"_npmUser":{"name":"anonymous","email":"azuciao@gmail.com"},"prettier":{"tabWidth":4,"printWidth":120},"repository":{"url":"git+https://github.com/azu/rc-config-loader.git","type":"git"},"_npmVersion":"6.2.0","description":"load config file from .{product}rc.{json,yml,js}","directories":{"test":"test"},"lint-staged":{"*.{js,jsx,ts,tsx,css}":["prettier --write","git add"]},"_nodeVersion":"10.0.0","dependencies":{"debug":"^3.1.0","json5":"^1.0.1","js-yaml":"^3.12.0","object-keys":"^1.0.12","path-exists":"^3.0.0","object-assign":"^4.1.0","require-from-string":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^3.5.0","husky":"^0.14.3","mocha":"^3.2.0","eslint":"^3.15.0","prettier":"^1.8.2","babel-cli":"^6.22.2","cross-env":"^3.1.4","lint-staged":"^5.0.0","power-assert":"^1.4.2","babel-register":"^6.22.0","babel-preset-latest":"^6.22.0","babel-preset-power-assert":"^1.0.0","babel-preset-jsdoc-to-assert":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rc-config-loader_2.0.2_1533638685578_0.9532739180320451","host":"s3://npm-registry-packages"}},"2.0.3":{"name":"rc-config-loader","version":"2.0.3","keywords":["rc","config","configuration","loader","json","yaml","yml"],"author":{"name":"azu"},"license":"MIT","_id":"rc-config-loader@2.0.3","maintainers":[{"name":"anonymous","email":"azuciao@gmail.com"}],"homepage":"https://github.com/azu/rc-config-loader","bugs":{"url":"https://github.com/azu/rc-config-loader/issues"},"dist":{"shasum":"5fbe45784c3301b15350ab6507e023c33007928f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/rc-config-loader/-/rc-config-loader-2.0.3.tgz","fileCount":8,"integrity":"sha512-CN9BmvV9Kcl6c4WEZ8w13JFazLYtKnqxxKGKuiCS8yZpUtJFa/nd7PdjVnRBJJ89U3OZfR6DmqOqMvmZ5ZFNMw==","signatures":[{"sig":"MEUCIQD4uNGbu9Fi/A5sT/cTjG6m6rHOkIBdgZXy9i+cbsr51wIgdcSrlp4sLmBAzIyVul6yPeE6iw975VG3JF0V/IqSAu4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29720,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc6/zPCRA9TVsSAnZWagAAT34P/25YFPuE6ohF7DoqpyC/\n7oNi4UzR1f2ITI/T8H0/paKNgp1mGSgwQxoaDln9cej/NdwxK6UTe8MSZ3xi\nhJeRm8lx19e1lDZqgyz9J/w+Owo4iukBQhqfZYuqqfBax3Cc6bt3CgCbDlrk\naNvoqMUPEbv4Y4NSFhCgD2uo0WLCoOoR+Wn22jqOGOrvLqZ83l/vsjYUxdqv\nSg7wfRiFVvxULLVa3MJCHFeBpcMZAA3tZCbQDWmLsNm2xBgTN1NkWn9h4qAh\nIRPCNbc4+NT8ZTl+T04WoqcHgIttBV0LI/KQKVbfF2msRGQu83phnHAVziXX\nGdMZOQdX8cXwUmav7IH0DGj8n/DNfg6SctErDz5WaCCxbK0D5dssfc3QvRpQ\n3ulsVg3nr8D2fhFir8Fg9sWn5GG2CluWwrCU1pRGykUfP5Jb6c/sbeJRd8S9\nS23HrU+wxtQDwY7KJV1SO8YSaMTJRmPPn3D4+vKzPuj0+fVwTrQf8nxiwJSc\nYA0dLd1BhAK14s0vtCSeveWMrr8fMKwI/GPsvlQ6WLW37bSdxmy9n9tHwkRA\n9cNsvjhRgSisYSb+2gQsiFLnDdZyFS2Jufju0bs8V4KMr1Z/oJvxtBsLypO7\nE56YrTlGLyHlhlZ0li+QF1Uy08xzAqZvXqA/t+QbyyUXusoDbDxG+5p2Z6bb\n/2qd\r\n=/baF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/rc-config-loader.js","gitHead":"530267b840eb604259545d14f013157b924c3922","scripts":{"test":"mocha test/","build":"cross-env NODE_ENV=production babel src --out-dir lib --copy-files --source-maps","watch":"babel src --out-dir lib --watch --source-maps","prettier":"prettier --write '**/*.{js,jsx,ts,tsx,css}'","precommit":"lint-staged","postcommit":"git reset","prepublish":"npm run --if-present build"},"_npmUser":{"name":"anonymous","email":"azuciao@gmail.com"},"prettier":{"tabWidth":4,"printWidth":120},"repository":{"url":"git+https://github.com/azu/rc-config-loader.git","type":"git"},"_npmVersion":"6.9.0","description":"load config file from .{product}rc.{json,yml,js}","directories":{"test":"test"},"lint-staged":{"*.{js,jsx,ts,tsx,css}":["prettier --write","git add"]},"_nodeVersion":"10.15.1","dependencies":{"debug":"^3.1.0","json5":"^1.0.1","js-yaml":"^3.12.0","object-keys":"^1.0.12","path-exists":"^3.0.0","object-assign":"^4.1.0","require-from-string":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^3.5.0","husky":"^0.14.3","mocha":"^3.2.0","eslint":"^3.15.0","prettier":"^1.8.2","babel-cli":"^6.22.2","cross-env":"^3.1.4","lint-staged":"^5.0.0","power-assert":"^1.4.2","babel-register":"^6.22.0","babel-preset-latest":"^6.22.0","babel-preset-power-assert":"^1.0.0","babel-preset-jsdoc-to-assert":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rc-config-loader_2.0.3_1558969550693_0.2632893498317743","host":"s3://npm-registry-packages"}},"2.0.4":{"name":"rc-config-loader","version":"2.0.4","keywords":["rc","config","configuration","loader","json","yaml","yml"],"author":{"name":"azu"},"license":"MIT","_id":"rc-config-loader@2.0.4","maintainers":[{"name":"anonymous","email":"azuciao@gmail.com"}],"homepage":"https://github.com/azu/rc-config-loader","bugs":{"url":"https://github.com/azu/rc-config-loader/issues"},"dist":{"shasum":"fe23e26a87e2ec07541b29e7f37bfd75807a4c36","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/rc-config-loader/-/rc-config-loader-2.0.4.tgz","fileCount":8,"integrity":"sha512-k06UzRbYDWgF4Mc/YrsZsmzSpDLuHoThJxep+vq5H09hiX8rbA5Ue/Ra0dwWm5MQvWYW4YBXgA186inNxuxidQ==","signatures":[{"sig":"MEQCIFqwkp/dKquDmyC1G0/wEKX7zHvyphh5Ko3a9HjwdrCYAiAL/PFkdusxrReOIXXmm8Ddf7vNunzf+zfRPUh+aRGdag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30409,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdIesACRA9TVsSAnZWagAAn8YP/34rO5WdMkWv5WqzqGWB\n0U0O4gs7tAILWLOCRNHwcx+dtXmAdPF8bxB+dLK7jVOITn40obq5S6IfP6c3\nwIv1y7s4AJoxrJxFZY0fDA5HOru1EROU4XFDEDVW7L6w8O6z7yo5K93374Ni\nGHbiTKs9qzQBt9ZKnMJcXET9sQ3vJzOCA2WlFUz/AefZUUU2G7o12RdGinXo\nkAFMORKHpiyF7VY4Hp/Bsrd1HmL45K7fLc289HF9W8rDkOZOS7yiNkCHVnjg\nkrQbgd+nf1utpnvTylBPwBfTD0HgMmqf8Uhb/jJr3wqO08fAwi22FklxlIFm\nPOarQAE+fOWfsUG5c0DLFJ7UizhCrcZc+FMZS8yb/bI8yx4dsGYUHF1ayXZa\nX2nb/gUyih1tpcTX/83WC6RFWLcOxHXPCE/sfqaYhqoEaGk5WvFD1khdWxL/\nOjfbZzJ/HDZcMYSTl3wrhnu2lbnj+DqsIHk/siwWLMkaBKtrPfU8gizAHhto\nj7Mw2ABuBlNutRADDafUjQLR4npDtVB76efE9QS6r+tmE5FEysx9HVZxgWib\npz5D/KQA86oDRsNkgoyonA34AE71U0KqyfC7gwY6h5F4mJHlqiknYONZ/hQh\nnYloj9VPk8BB4REXGHJjBfG5gQiS2Zv3KVHy3NJ2BP1V3SAhKhJfYCeDOjjp\n3hrG\r\n=0ncp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/rc-config-loader.js","husky":{"hooks":{"pre-commit":"lint-staged","post-commit":"git reset"}},"gitHead":"a2d848bc1fa15cc3a4fc655ef32e0a9922d8659e","scripts":{"test":"mocha test/","build":"cross-env NODE_ENV=production babel src --out-dir lib --copy-files --source-maps","watch":"babel src --out-dir lib --watch --source-maps","prettier":"prettier --write '**/*.{js,jsx,ts,tsx,css}'","prepublish":"npm run --if-present build"},"_npmUser":{"name":"anonymous","email":"azuciao@gmail.com"},"prettier":{"tabWidth":4,"printWidth":120},"repository":{"url":"git+https://github.com/azu/rc-config-loader.git","type":"git"},"_npmVersion":"6.9.0","description":"load config file from .{product}rc.{json,yml,js}","directories":{"test":"test"},"lint-staged":{"*.{js,jsx,ts,tsx,css}":["prettier --write","git add"]},"_nodeVersion":"10.15.1","dependencies":{"debug":"^4.1.1","json5":"^2.1.0","js-yaml":"^3.12.0","object-keys":"^1.0.12","path-exists":"^3.0.0","object-assign":"^4.1.0","require-from-string":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","prettier":"^1.8.2","cross-env":"^5.2.0","@babel/cli":"^7.0.0","@babel/core":"^7.0.0","lint-staged":"^9.1.0","power-assert":"^1.4.2","@babel/register":"^7.0.0","@babel/preset-env":"^7.0.0","babel-preset-power-assert":"^3.0.0","babel-preset-jsdoc-to-assert":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rc-config-loader_2.0.4_1562503936041_0.9061343843271339","host":"s3://npm-registry-packages"}},"2.0.5":{"name":"rc-config-loader","version":"2.0.5","keywords":["rc","config","configuration","loader","json","yaml","yml"],"author":{"name":"azu"},"license":"MIT","_id":"rc-config-loader@2.0.5","maintainers":[{"name":"anonymous","email":"azuciao@gmail.com"}],"homepage":"https://github.com/azu/rc-config-loader","bugs":{"url":"https://github.com/azu/rc-config-loader/issues"},"dist":{"shasum":"81e78221167dbaa80877f2538f5e1a37c7e24ce3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/rc-config-loader/-/rc-config-loader-2.0.5.tgz","fileCount":8,"integrity":"sha512-T464K2MQlnNWOblUDIglpFhyN+zYJq7jSlL++/N0hUkcmIXeNFumwXFVdtf8qhUGohn4RYQ0wdi74R575I44PQ==","signatures":[{"sig":"MEQCIEotiGu6YHxf6QkIHKOgzX21egKuuPw5FUhuLQeBIgleAiAQZZYeoHmY+VuFDbMA5iQPZg2G64GmD2J5W0LYqn8ecA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30581,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdvNkdCRA9TVsSAnZWagAAwQoP/0O0q/X9qjazEtv0oAvl\nJs4bB8z3HJrXxUuHs6XEpQlOpp9UXZiH1z6YWvZQC3tAMktG2fpgp+2Bdspg\npxI1kOWPpAJSp9jIVC3hczyBfNmz2WXyrVW7keGUlQAO3MscH8g8mqvGgCWl\nhSIvceriYdRb4uwB0HPlf1RDqEBA4LI8QsbxVnoqpMlF8ygkh8jhB9Rg9D3S\nXMjarzGRFYVzxaCjGAIlWnVzSqje+eCgt54F8oOwbq7CrzhmdZUJG/a5YHrH\nTFIYIIddN1DrJ2UVpcb17irMdUdcgq1hAgVIKCuW0gFs0Kn3yyLeflZX//sa\nAhgP7LcdiXTUlnBsTEhDiMc0BHZovcXc95ySYnXjEkt2Hd4PHMZLKqxZ8/OL\nBCwdZuZ0OWJxjzabtgLhlM6N90vZ8zBCTQZUptpiPtpkO1cEeLbXt+JMdXSN\nMguY8L2nUok1vj0SJZZ1py7aDLwd/My8JaoxSx8Q3x3zWuXQcXsVg7oxP6Wi\nwummh6DMMpLIgBna+JORoOMmIjIUuuJ76rmdd4q1iLwp21aSMwhV9eNATog+\nEevDBk2zUZ4LKjanEN7ehk//Tx5y6DW501BeOQr1IgjFg3V6ZAyA97bu9Vnt\nSAWboiQTGaKoUaETjLC45Hkj8S6ESIZYgLnyEWyOGixycC+G8kXPkZEpHYyo\n/xaW\r\n=8cVD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/rc-config-loader.js","husky":{"hooks":{"pre-commit":"lint-staged","post-commit":"git reset"}},"gitHead":"64342ad5d64e1a7598594c516d2d29308617f037","scripts":{"test":"mocha test/","build":"cross-env NODE_ENV=production babel src --out-dir lib --copy-files --source-maps","watch":"babel src --out-dir lib --watch --source-maps","prettier":"prettier --write '**/*.{js,jsx,ts,tsx,css}'","prepublish":"npm run --if-present build"},"_npmUser":{"name":"anonymous","email":"azuciao@gmail.com"},"prettier":{"tabWidth":4,"printWidth":120},"repository":{"url":"git+https://github.com/azu/rc-config-loader.git","type":"git"},"_npmVersion":"6.11.3","description":"load config file from .{product}rc.{json,yml,js}","directories":{"test":"test"},"lint-staged":{"*.{js,jsx,ts,tsx,css}":["prettier --write","git add"]},"_nodeVersion":"12.12.0","dependencies":{"debug":"^4.1.1","json5":"^2.1.0","js-yaml":"^3.12.0","object-keys":"^1.0.12","path-exists":"^3.0.0","object-assign":"^4.1.0","require-from-string":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","husky":"^3.0.0","mocha":"^6.1.4","eslint":"^6.0.1","prettier":"^1.8.2","cross-env":"^5.2.0","@babel/cli":"^7.0.0","@babel/core":"^7.0.0","lint-staged":"^9.1.0","power-assert":"^1.4.2","@babel/register":"^7.0.0","@babel/preset-env":"^7.0.0","babel-preset-power-assert":"^3.0.0","babel-preset-jsdoc-to-assert":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/rc-config-loader_2.0.5_1572657436684_0.7765312126975039","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"rc-config-loader","version":"3.0.0","keywords":["config","configuration","json","loader","rc","yaml","yml"],"author":{"name":"azu"},"license":"MIT","_id":"rc-config-loader@3.0.0","maintainers":[{"name":"anonymous","email":"azuciao@gmail.com"}],"homepage":"https://github.com/azu/rc-config-loader","bugs":{"url":"https://github.com/azu/rc-config-loader/issues"},"dist":{"shasum":"1484ed55d6fb8b21057699c8426370f7529c52a7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/rc-config-loader/-/rc-config-loader-3.0.0.tgz","fileCount":7,"integrity":"sha512-bwfUSB37TWkHfP+PPjb/x8BUjChFmmBK44JMfVnU7paisWqZl/o5k7ttCH+EQLnrbn2Aq8Fo1LAsyUiz+WF4CQ==","signatures":[{"sig":"MEUCIBunTv3IcPvlQHancv29VFD2bxIs28qjLalOmgO5pQ71AiEAuwEJRf+GSla+i7LN5zfkCnWfVjEL/Z5PZIQDr7Myc78=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26786,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdvmCFCRA9TVsSAnZWagAAa9YP/jpTKVjn9M7/QD5eUXnT\nsNcr+Jkq/zJzCJTMqWVmWQR1HGG/lUm99+DP+M0bUIo37GnMfpalQchy0UnP\n/qC/yHiex1ONyndVNs3Vwd1UXcC9xAcD09Z1j+v42v+9rrwlm7urwaKhPkcx\nEAMTPvJ4azLLshAxCZIzuXDB4bHxie9Z9X0iboQa1+nKNDWV184XoTh9ey+0\nOR/HeR5DnJpMMJltZ/6cDbU7Ajil/IkpK/mlirj5sHllkwiUBLOvOie2TNUE\nQ71AJZafJQh1SLq0Us+NVI1m1zWKB3nDZ53GXXKsYMi2B75dk8kAW3mTq1la\nUzdAB4boo0AjpSPa7MTf0NP/ISRoGeEJou1TIz2WLwtAXAAKnHIG1zSLceS/\nsyXekgNI/tf9ouwhTFuAqRYkSkNgwVDwBa/8MTnpnC0enI5RnFpUIL6QX2Mn\nscra15OuZnPTqm+DvVC4OGsYKe7P9oQX3OulNzBMeAbvi5zt8zs4opyAxpe5\ndj+ldxVILuC066kAQe945T9B6MxXbRQ509G+gCxLeOAprlaM2sG1HxYkLPQx\nR7GamYJYAwzNxuCc2iPR1IWm1nbTxNTjZghJQp9/AXLtrEzsE5PluCMGxYwI\nEYaPEHdejUEMPf69u1+EcyS6YrdTpopv/vIfgg62fY0EfpTjgK4s0j163t8O\n12KQ\r\n=axQC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/rc-config-loader.js","husky":{"hooks":{"pre-commit":"lint-staged","post-commit":"git reset"}},"types":"lib/rc-config-loader.d.ts","gitHead":"921be10f56088a273d3e46c1b41b3db38672f7e2","scripts":{"test":"mocha \"test/**/*.{js,ts}\"","build":"cross-env NODE_ENV=production tsc -p .","watch":"tsc -p . --watch","prettier":"prettier --write '**/*.{js,jsx,ts,tsx,css}'","prepublish":"npm run --if-present build"},"_npmUser":{"name":"anonymous","email":"azuciao@gmail.com"},"prettier":{"tabWidth":4,"printWidth":120},"repository":{"url":"git+https://github.com/azu/rc-config-loader.git","type":"git"},"_npmVersion":"6.11.3","description":"load config file from .{product}rc.{json,yml,js}","directories":{"test":"test"},"lint-staged":{"*.{js,jsx,ts,tsx,css}":["prettier --write","git add"]},"_nodeVersion":"12.12.0","dependencies":{"debug":"^4.1.1","json5":"^2.1.1","js-yaml":"^3.12.0","require-from-string":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","husky":"^3.0.9","mocha":"^6.2.2","ts-node":"^8.4.1","prettier":"^1.8.2","cross-env":"^6.0.3","typescript":"^3.6.4","@types/node":"^12.12.5","lint-staged":"^9.4.2","@types/mocha":"^5.2.7","ts-node-test-register":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/rc-config-loader_3.0.0_1572757636970_0.015981067604107668","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"rc-config-loader","version":"4.0.0","keywords":["config","configuration","json","loader","rc","yaml","yml"],"author":{"name":"azu"},"license":"MIT","_id":"rc-config-loader@4.0.0","maintainers":[{"name":"anonymous","email":"azuciao@gmail.com"}],"homepage":"https://github.com/azu/rc-config-loader","bugs":{"url":"https://github.com/azu/rc-config-loader/issues"},"dist":{"shasum":"144cf31961c9f8ebcf252bd9c263fd40d62bd387","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/rc-config-loader/-/rc-config-loader-4.0.0.tgz","fileCount":7,"integrity":"sha512-//LRTblJEcqbmmro1GCmZ39qZXD+JqzuD8Y5/IZU3Dhp3A1Yr0Xn68ks8MQ6qKfKvYCWDveUmRDKDA40c+sCXw==","signatures":[{"sig":"MEYCIQC04mesKhKdmyzTJruTDYl//qHk0e8G+WZsTJh+iJFXdAIhANFCLH0NpnTXyZo+/jaQSkyWBxiSIkUJUbOyVdPOpHTx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26595,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf+mdCCRA9TVsSAnZWagAA6xAQAJF5ql/G37iuf1d/gLHO\nJWjf343cxiUZuEtDdR8Qir+YVO5weZyzCNhftFWH1/r6K9sIub8vQyO8KgR/\nkQCtKakKm0KHX1rVYAKtfUIu0KqUC03cNJ5ZggQKKRiOaLGmiItRxrYzL3bh\ngCNHi0+qLf3peZqUK+j5QC/xxl2Mhm27VagcuhX9f2GwYdcOuM5bSvJfFhp5\nFdaasysWxrZDRtZM3VBFY3zLsEQyTY9eRirUVqDZY/AaL0fLCPFcHx8LXIOT\ns6yvnAzOMWs5IFKF9O4b1YKR32i1ETp6RxpsV3QjAJXkm3bCugIRjWeaUzG7\nFcnL8cjbajGl/g69xfSfcRfFhqH5Zq5v8YjrftExXuxg2wMKxcKQZvawS4gA\n+rM4rZlRkDBIc/8u0iJ0XmeQuTKgPyVD9uP7/TgAXldN5iziSzK+xcLULh36\n0XVlM/QvNOlTblpVc5CGIAEOYzkS2GlmyxapwnWFkqa/mL4pr4D4wkOYmB2Q\nP+m/CzmwKo21Q89r5Yem1WtElApdW0z/wwdgCY0akKjE5ZJXijojKbXvw7UM\nbxlrmubXn37ZCzON38oebnKcvlZ33/26h1wZwHTVg4c60o96EvgdUuGj+R1q\no7wIL5PTcD7/ZriFCU4b5OeZNXDkAe5ejFe/dGcKNSJ2TUVLdQxIkJXyUPMh\nFVSi\r\n=ZDHH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/rc-config-loader.js","husky":{"hooks":{"pre-commit":"lint-staged","post-commit":"git reset"}},"types":"lib/rc-config-loader.d.ts","gitHead":"694228309654967408cb7869a71175ce38b415ce","scripts":{"test":"mocha \"test/**/*.{js,ts}\"","build":"tsc -p .","watch":"tsc -p . --watch","prettier":"prettier --write '**/*.{js,jsx,ts,tsx,css}'","prepublish":"npm run --if-present build"},"_npmUser":{"name":"anonymous","email":"azuciao@gmail.com"},"prettier":{"tabWidth":4,"printWidth":120},"repository":{"url":"git+https://github.com/azu/rc-config-loader.git","type":"git"},"_npmVersion":"6.14.9","description":"load config file from .{product}rc.{json,yml,js}","directories":{"test":"test"},"lint-staged":{"*.{js,jsx,ts,tsx,css}":["prettier --write"]},"_nodeVersion":"14.15.3","dependencies":{"debug":"^4.1.1","json5":"^2.1.2","js-yaml":"^4.0.0","require-from-string":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","husky":"^4.2.3","mocha":"^8.2.1","ts-node":"^9.1.1","prettier":"^2.0.2","typescript":"^4.1.3","@types/node":"^14.14.20","lint-staged":"^10.1.1","@types/json5":"^0.0.30","@types/mocha":"^8.2.0","ts-node-test-register":"^9.0.1","@types/require-from-string":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/rc-config-loader_4.0.0_1610245953943_0.5318655361315345","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"rc-config-loader","version":"4.1.0","keywords":["config","configuration","json","loader","rc","yaml","yml"],"author":{"name":"azu"},"license":"MIT","_id":"rc-config-loader@4.1.0","maintainers":[{"name":"anonymous","email":"azuciao@gmail.com"}],"homepage":"https://github.com/azu/rc-config-loader","bugs":{"url":"https://github.com/azu/rc-config-loader/issues"},"dist":{"shasum":"208e797d773a2203473df10496cd75b5fd93740e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/rc-config-loader/-/rc-config-loader-4.1.0.tgz","fileCount":7,"integrity":"sha512-aW+kX4qy0CiM9L4fG4Us3oEOpIrOrXzWykAn+xldD07Y9PXWjTH744oHbv0Kc9ZwWaylw3jMjxaf14RgStrNrA==","signatures":[{"sig":"MEUCIBhz0hf+FWjkM5XgYMtMZolXvyMFg4TEnnghzLqX6ZfYAiEArehsIGobFcKVKCoDx6qLKt2E9Zqr11sSNAatx+TjLcI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26902,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiSaTJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoeFA/7BQSu75dTmndYtBhl8Xx23bp8qfIWwe6C5qAjJiAe/AAhUIYR\r\n/wSSCer+nOGRpMC/qKRgcUQM0KztTTzNQ/9S5KoMcvEACRnufY1zh7lzdYF8\r\nKAujpAKyXAFmT9kbXGxnw/KrOZ3z311fVgT0X+1btsmlnlNrVOZOIEtI7JAC\r\nuI7oXcNaAUG02RuQtjXHI0h8n/8JLmfDIgZerC6Y3zQsOc6MImUWEqh+Ucj1\r\nawD/X58i9USILkQ3zV27IJxxDREWguZ8oRp08DAPBS9XiGqD0kBznWKzo7jl\r\n+VNsWgqwJn0CYVIJPOnXsxQXGjlSRCaZMvdbIisNAA7+vQoiqmlDp80ZnswZ\r\nqp5wFL5p3sFh55BBCZCMbANMfW22wliHpNn3iSzdbm9oNAkS1dunnHq7DcOx\r\nXWetim+OmnWbynTJODAUWQlk7xl3gGHzPZy0rdz6xZuGSnT6MUnd/YvGpeY1\r\nEYfe632T6J95aM2w40eqB/NM6j8CEUzeK4sbW0TemvpKKkpd6M0QYZwbrXTB\r\n43KYbv25CoQoUxG87XqiLeIhe4FSVw3G0gbbr7hxLYWT6OPbw6Jqk/dUpHAh\r\n3ifb/oMLoSAJANqSqk3lDjakuOq7Go6jmmF74FsPEZ9JMV7iGVMG0Czg9qu6\r\n/Q0El/qJBays6ki1W6KGJjuQXpmwLg1wL94=\r\n=OWDh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/rc-config-loader.js","husky":{"hooks":{"pre-commit":"lint-staged","post-commit":"git reset"}},"types":"lib/rc-config-loader.d.ts","gitHead":"92463c8cae12290829c97a71d9ed86612217168b","scripts":{"test":"mocha \"test/**/*.{js,ts}\"","build":"tsc -p .","watch":"tsc -p . --watch","prettier":"prettier --write '**/*.{js,jsx,ts,tsx,css}'","prepublish":"npm run --if-present build"},"_npmUser":{"name":"anonymous","email":"azuciao@gmail.com"},"prettier":{"tabWidth":4,"printWidth":120},"repository":{"url":"git+https://github.com/azu/rc-config-loader.git","type":"git"},"_npmVersion":"8.3.0","description":"load config file from .{product}rc.{json,yml,js}","directories":{"test":"test"},"lint-staged":{"*.{js,jsx,ts,tsx,css}":["prettier --write"]},"_nodeVersion":"16.13.0","dependencies":{"debug":"^4.1.1","json5":"^2.1.2","js-yaml":"^4.0.0","require-from-string":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"chai":"^4.2.0","husky":"^4.2.3","mocha":"^8.2.1","ts-node":"^9.1.1","prettier":"^2.0.2","typescript":"^4.1.3","@types/node":"^14.14.20","lint-staged":"^10.1.1","@types/json5":"^0.0.30","@types/mocha":"^8.2.0","ts-node-test-register":"^9.0.1","@types/require-from-string":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/rc-config-loader_4.1.0_1648993481645_0.7348124006622081","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"rc-config-loader","version":"4.1.1","keywords":["config","configuration","json","loader","rc","yaml","yml"],"author":{"name":"azu"},"license":"MIT","_id":"rc-config-loader@4.1.1","maintainers":[{"name":"anonymous","email":"azuciao@gmail.com"}],"homepage":"https://github.com/azu/rc-config-loader","bugs":{"url":"https://github.com/azu/rc-config-loader/issues"},"dist":{"shasum":"64a00fdcae976e20062e13b156e361d24186fe23","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/rc-config-loader/-/rc-config-loader-4.1.1.tgz","fileCount":11,"integrity":"sha512-S10o85x/szboh7FOxUyU+KuED+gr9V7SEnUBOzSn+vd1K8J2MtkP1RCPWg8Sw5kkuZKr7976bFzacCM6QtAApQ==","signatures":[{"sig":"MEUCIQCtooGZwbce9L7g0+k9lm9HoyjQJ37YBGoa1peMq4k3vQIgZnIEuXdki5AH/ZMWFxapH2wpoccOqwNHHnHb31WqVCA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28411,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjWp0rACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpDNw/8Dw0AzSSlkRWJZsZfhMYtZDtEcXUPpz4HhNDPAuqucyj90qvB\r\n1fF2vJQiFFPWg9r08hA++DqCRTI1oJXFUQ3vt/yzWqrc0+1ABpatfuz80LKK\r\n+Slda+jSIwGB6nyvOQFpGnqn1CFof3F7ETK5o7OPcDfMK+QDT4jQOtLIfkHc\r\nnndyfmvQ1I04RRZim2BkmY1r5N4wgB7j208Gmg1ifd/BBwzyOd61Ayg0Bs39\r\nxVBDyMSaqCVcrkWYGYL3MdR2bpFCACmLJkASaIQh8mE7n8gnc5ZNOPIUPzIN\r\nDiVKUXedTdAbfH9+6NSFybAOUdX9pyzXQM+HzTYKytglLVC0UXJg4ZJDmFRj\r\nbSqXP9Wp5b6FocPn5N7h7NiCpA+wQ5esE12zjPkTw9tVLczi29S7TDpAYJqj\r\n6mS4UUYSE3UeqTLzJlSFKB7RezUdrhtvn0kBnmPsAbhUyikR63zcMfUzI3dE\r\nlC41pTkGRtWHK36qZls27P7XKeh/F4KI+AJtACm/7jZ7x5Ej4MSOBYTPT83H\r\nIRAQbC1EoZe66irc5W9Qw7mcd9xsd6ycuSsK6/vt7a1fqOHpr2zmnfs9HQgM\r\nkREq62Wulvr5hIl4tDAzVxwlZfSChIfJ4DSKqEdcDbK1naUxv0DfvpGZiu3D\r\nL39QvnUyFR/BahX97xPjhQao6X2tueaEdOk=\r\n=4i5G\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/rc-config-loader.js","husky":{"hooks":{"pre-commit":"lint-staged","post-commit":"git reset"}},"types":"lib/rc-config-loader.d.ts","gitHead":"c4e335c2c02d347ef06f8cde9eb6efd216c0537a","scripts":{"test":"mocha \"test/**/*.{js,ts}\"","build":"tsc -p .","watch":"tsc -p . --watch","format":"prettier --write \"**/*.{js,jsx,ts,tsx,css}\"","prepare":"git config --local core.hooksPath .githooks","prepublish":"npm run --if-present build"},"_npmUser":{"name":"anonymous","email":"azuciao@gmail.com"},"prettier":{"tabWidth":4,"printWidth":120,"singleQuote":false,"trailingComma":"none"},"repository":{"url":"git+https://github.com/azu/rc-config-loader.git","type":"git"},"_npmVersion":"8.19.2","description":"load config file from .{product}rc.{json,yml,js}","directories":{"test":"test"},"lint-staged":{"*.{js,jsx,ts,tsx,css}":["prettier --write"]},"_nodeVersion":"16.15.0","dependencies":{"debug":"^4.3.4","json5":"^2.2.1","js-yaml":"^4.1.0","require-from-string":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^9.2.2","ts-node":"^10.7.0","prettier":"^2.6.2","typescript":"^4.6.3","@types/node":"^17.0.23","lint-staged":"^12.3.7","@types/mocha":"^9.1.0","ts-node-test-register":"^10.0.0","@types/require-from-string":"^1.2.1"},"_npmOperationalInternal":{"tmp":"tmp/rc-config-loader_4.1.1_1666882859415_0.05075794046391047","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"rc-config-loader","version":"4.1.2","keywords":["config","configuration","json","loader","rc","yaml","yml"],"author":{"name":"azu"},"license":"MIT","_id":"rc-config-loader@4.1.2","maintainers":[{"name":"anonymous","email":"azuciao@gmail.com"}],"homepage":"https://github.com/azu/rc-config-loader","bugs":{"url":"https://github.com/azu/rc-config-loader/issues"},"dist":{"shasum":"e57fc874bde9b1e48d8a8564f2f824f91eafd920","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/rc-config-loader/-/rc-config-loader-4.1.2.tgz","fileCount":11,"integrity":"sha512-qKTnVWFl9OQYKATPzdfaZIbTxcHziQl92zYSxYC6umhOqyAsoj8H8Gq/+aFjAso68sBdjTz3A7omqeAkkF1MWg==","signatures":[{"sig":"MEYCIQC6pZ9BOjbz5DPbrLIwRjV7MprSjcJC9RgJ56Y1aIP16QIhAL9dtNaopS0uRgCcZevcOWKGkQBQJjvtOcOjELBH9Cuc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28411,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjrQ6vACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrAzhAAi9PccR6M4M3qELNEBd5NZ8JjJmSEb/dJNXBWa/iqVYChbgQ/\r\n99RwFUL4/SHRCISqoAHzN2okBH5SGMP/4CZcNIItren16XXFaqCAKsLMoAH0\r\nKofwaU93fWRyfVY2pw+qNKquAQawlcL27Z5FmDjooWRr49XMMi5SQ+UyF9Z+\r\nSnMaO4qJ3mFsZx6rTVo5TJ3j8h66OAxZVYmX6l38SQS7s2gawQ6QNAq5anXi\r\nmflw7OvNuouEG1WhJtJcvytZJI0YrQV7uq64ivjtqmOL/tVor9nb0b7rrUgq\r\nkQHfzyJRqC4A0yLKDI19EnQkqXc/zQXuCCslUiaAcrLXjJCrpVOPQcgbCEm7\r\nBkzoH/1lcusLta0E8gWBiiEZTEsTJ4MVBfVG958852/9uhw859uRAZaK/kOJ\r\nBDgI6gkJMcE1AUDikiShNdfjfeHqmldh061DWkcDxwhgHHF+9gJU6AOiZ73U\r\nhm4l77Sw75XO2ZUYK0/AhvOjH0wAlppW/+nlCx6nITwnPZA1VWwUwj54Oo0l\r\n2GuNSirw2mOQFL4RWO5e/oRqK/8sJd4+CnY5AwZel9cgk2PQGKW8AoZ8Ouc+\r\nzcJBz/MRvvGek8f7DYZIpcepY9Uq56nJSjJIWntOZI6fC+nKqrv3qeX49JOi\r\nI3zgs2r3nHoDrCl8wXz4FhvM9n0XYmmRWtM=\r\n=3q90\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/rc-config-loader.js","husky":{"hooks":{"pre-commit":"lint-staged","post-commit":"git reset"}},"types":"lib/rc-config-loader.d.ts","gitHead":"1796ca800582a2710ef8c94aa0703f9f4a7b5ba7","scripts":{"test":"mocha \"test/**/*.{js,ts}\"","build":"tsc -p .","watch":"tsc -p . --watch","format":"prettier --write \"**/*.{js,jsx,ts,tsx,css}\"","prepare":"git config --local core.hooksPath .githooks","prepublish":"npm run --if-present build"},"_npmUser":{"name":"anonymous","email":"azuciao@gmail.com"},"prettier":{"tabWidth":4,"printWidth":120,"singleQuote":false,"trailingComma":"none"},"repository":{"url":"git+https://github.com/azu/rc-config-loader.git","type":"git"},"_npmVersion":"8.19.2","description":"load config file from .{product}rc.{json,yml,js}","directories":{"test":"test"},"lint-staged":{"*.{js,jsx,ts,tsx,css}":["prettier --write"]},"_nodeVersion":"16.18.0","dependencies":{"debug":"^4.3.4","json5":"^2.2.2","js-yaml":"^4.1.0","require-from-string":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^9.2.2","ts-node":"^10.7.0","prettier":"^2.6.2","typescript":"^4.6.3","@types/node":"^17.0.23","lint-staged":"^12.3.7","@types/mocha":"^9.1.0","ts-node-test-register":"^10.0.0","@types/require-from-string":"^1.2.1"},"_npmOperationalInternal":{"tmp":"tmp/rc-config-loader_4.1.2_1672285871069_0.6845975339886059","host":"s3://npm-registry-packages"}},"4.1.3":{"name":"rc-config-loader","version":"4.1.3","keywords":["config","configuration","json","loader","rc","yaml","yml"],"author":{"name":"azu"},"license":"MIT","_id":"rc-config-loader@4.1.3","maintainers":[{"name":"anonymous","email":"azuciao@gmail.com"}],"homepage":"https://github.com/azu/rc-config-loader","bugs":{"url":"https://github.com/azu/rc-config-loader/issues"},"dist":{"shasum":"1352986b8a2d8d96d6fd054a5bb19a60c576876a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/rc-config-loader/-/rc-config-loader-4.1.3.tgz","fileCount":11,"integrity":"sha512-kD7FqML7l800i6pS6pvLyIE2ncbk9Du8Q0gp/4hMPhJU6ZxApkoLcGD8ZeqgiAlfwZ6BlETq6qqe+12DUL207w==","signatures":[{"sig":"MEYCIQCxLFQOT46ofS6jhHHbtZdW6AZQ/BCsGbzC0PjwM3soQQIhAPYE6RApGJSKmhG2i/972KtI3tMiB1YbZQinzqDQk5rF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28474},"main":"lib/rc-config-loader.js","husky":{"hooks":{"pre-commit":"lint-staged","post-commit":"git reset"}},"types":"lib/rc-config-loader.d.ts","gitHead":"945ba90843af96dae3fd2bcfbebfa9f31010cb06","scripts":{"test":"mocha \"test/**/*.{js,ts}\"","build":"tsc -p .","watch":"tsc -p . --watch","format":"prettier --write \"**/*.{js,jsx,ts,tsx,css}\"","prepare":"git config --local core.hooksPath .githooks","prepublish":"npm run --if-present build"},"_npmUser":{"name":"anonymous","email":"azuciao@gmail.com"},"prettier":{"tabWidth":4,"printWidth":120,"singleQuote":false,"trailingComma":"none"},"repository":{"url":"git+https://github.com/azu/rc-config-loader.git","type":"git"},"_npmVersion":"9.2.0","description":"load config file from .{product}rc.{json,yml,js}","directories":{"test":"test"},"lint-staged":{"*.{js,jsx,ts,tsx,css}":["prettier --write"]},"_nodeVersion":"18.16.0","dependencies":{"debug":"^4.3.4","json5":"^2.2.2","js-yaml":"^4.1.0","require-from-string":"^2.0.2"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^9.2.2","ts-node":"^10.7.0","prettier":"^2.6.2","typescript":"^4.6.3","@types/node":"^17.0.23","lint-staged":"^12.3.7","@types/mocha":"^9.1.0","ts-node-test-register":"^10.0.0","@types/require-from-string":"^1.2.1"},"_npmOperationalInternal":{"tmp":"tmp/rc-config-loader_4.1.3_1686696054851_0.16708159951340718","host":"s3://npm-registry-packages"}},"4.1.4":{"name":"rc-config-loader","version":"4.1.4","description":"load config file from .{product}rc.{json,yml,js}","keywords":["config","configuration","json","loader","rc","yaml","yml"],"homepage":"https://github.com/azu/rc-config-loader","bugs":{"url":"https://github.com/azu/rc-config-loader/issues"},"repository":{"type":"git","url":"git+https://github.com/azu/rc-config-loader.git"},"license":"MIT","author":{"name":"azu"},"main":"lib/rc-config-loader.js","types":"lib/rc-config-loader.d.ts","directories":{"test":"test"},"scripts":{"build":"tsc -p .","prepublish":"npm run --if-present build","test":"mocha \"test/**/*.{js,ts}\"","watch":"tsc -p . --watch","format":"prettier --write \"**/*.{js,jsx,ts,tsx,css}\"","prepare":"git config --local core.hooksPath .githooks"},"husky":{"hooks":{"post-commit":"git reset","pre-commit":"lint-staged"}},"lint-staged":{"*.{js,jsx,ts,tsx,css}":["prettier --write"]},"prettier":{"singleQuote":false,"printWidth":120,"tabWidth":4,"trailingComma":"none"},"dependencies":{"debug":"^4.4.3","js-yaml":"^4.1.1","json5":"^2.2.3","require-from-string":"^2.0.2"},"devDependencies":{"@types/mocha":"^10.0.10","@types/node":"^25.3.2","@types/require-from-string":"^1.2.3","lint-staged":"^16.2.7","mocha":"^11.7.5","prettier":"^3.8.1","ts-node":"^10.9.2","ts-node-test-register":"^10.0.0","typescript":"^5.9.3"},"packageManager":"yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610","gitHead":"0af7b97af8b99c2cb224c5172956d5e23634cd72","_id":"rc-config-loader@4.1.4","_nodeVersion":"24.13.1","_npmVersion":"11.8.0","dist":{"integrity":"sha512-3GiwEzklkbXTDp52UR5nT8iXgYAx1V9ZG/kDZT7p60u2GCv2XTwQq4NzinMoMpNtXhmt3WkhYXcj6HH8HdwCEQ==","shasum":"6cc79042ac193ebed9f082fcba7b823d9dc143cc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/rc-config-loader/-/rc-config-loader-4.1.4.tgz","fileCount":11,"unpackedSize":28696,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/rc-config-loader@4.1.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDgyjrZoi3wX0SyXagxGKBYU1oQUdG3e282+YBZD5gWvAIhAL+KUumfAQM9eDo3s6KOwN8CJAOrkRbYmbk4+SImBj9X"}]},"_npmUser":{"name":"anonymous","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:3d19b8a4-3a10-483a-b35e-cb2b87eb014f"}},"maintainers":[{"name":"anonymous","email":"azuciao@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/rc-config-loader_4.1.4_1772173252492_0.2875729913873799"},"_hasShrinkwrap":false}},"name":"rc-config-loader","time":{"created":"2017-02-12T08:54:59.065Z","modified":"2026-02-27T06:20:52.980Z","1.0.1":"2017-02-12T08:54:59.065Z","1.0.2":"2017-02-12T09:05:58.602Z","2.0.0":"2017-05-21T07:28:39.142Z","2.0.1":"2017-11-26T00:15:33.912Z","2.0.2":"2018-08-07T10:44:45.663Z","2.0.3":"2019-05-27T15:05:50.864Z","2.0.4":"2019-07-07T12:52:16.143Z","2.0.5":"2019-11-02T01:17:16.921Z","3.0.0":"2019-11-03T05:07:17.102Z","4.0.0":"2021-01-10T02:32:34.197Z","4.1.0":"2022-04-03T13:44:41.792Z","4.1.1":"2022-10-27T15:00:59.614Z","4.1.2":"2022-12-29T03:51:11.242Z","4.1.3":"2023-06-13T22:40:55.047Z","4.1.4":"2026-02-27T06:20:52.640Z"},"readmeFilename":"README.md","homepage":"https://github.com/azu/rc-config-loader"}