├── .eslintrc.js ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── config.yml │ └── rrfc.md ├── actions │ ├── create-check │ │ └── action.yml │ └── install-latest-npm │ │ └── action.yml ├── dependabot.yml ├── matchers │ └── tap.json ├── settings.yml └── workflows │ ├── audit.yml │ ├── ci.yml │ ├── codeql-analysis.yml │ └── post-dependabot.yml ├── .gitignore ├── .npmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── accepted ├── 0000-template.md ├── 0006-shallow-updates.md ├── 0007-publish-without-tag.md ├── 0028-publish-prompt.md ├── 0035-registry-spec.md ├── 0036-overrides.md ├── 0037-audit-overrides.md ├── 0038-workspaces-run-cmds.md ├── 0039-location-config-parameter.md ├── 0042-isolated-mode.md ├── 0044-deprecation-ux-revamp.md ├── 0047-npm-diff-ignore-cr-at-eol.md ├── 0048-no-integrity-for-git.md └── 0049-link-packages-to-source-and-build.md ├── docs └── HOWTO-MEETINGS.md ├── implemented ├── 0001-package-aliases.md ├── 0003-run-suggestions.md ├── 0005-update-package-json.md ├── 0010-monorepo-subdirectory-declaration.md ├── 0012-running-as-root.md ├── 0013-no-package-json-_fields.md ├── 0014-devoptional-shrinkwrap-flag.md ├── 0015-add-restricted-versions-handling.md ├── 0016-set-script-command.md ├── 0017-add-funding-support.md ├── 0018-multiple-funding-sources.md ├── 0019-remove-update-depth-option.md ├── 0020-npm-option-handling.md ├── 0021-reduce-lifecycle-script-environment.md ├── 0022-quieter-install-scripts.md ├── 0023-acceptDependencies.md ├── 0024-npm-run-traverse-directory-tree.md ├── 0025-install-peer-deps.md ├── 0026-workspaces.md ├── 0027-remove-depth-outdated.md ├── 0029-add-ability-to-skip-hooks.md ├── 0030-no-install-optional-peer-deps.md ├── 0031-handling-peer-conflicts.md ├── 0032-powershell-bins.md ├── 0033-npm-diff.md ├── 0034-improve-command-suggestions.md ├── 0039-npm-pkg.md ├── 0043-lockfile-version-config.md ├── 0045-workspaces-auto-cwd-context.md └── 0046-add-types-metadata-to-package-json.md ├── meetings ├── 2019-09-04.md ├── 2019-10-02.md ├── 2019-10-16.md ├── 2019-10-30.md ├── 2019-11-13.md ├── 2019-11-27.md ├── 2019-12-13.md ├── 2020-01-08.md ├── 2020-01-22.md ├── 2020-02-05.md ├── 2020-02-19.md ├── 2020-03-04.md ├── 2020-03-11.md ├── 2020-03-25.md ├── 2020-04-01.md ├── 2020-04-08.md ├── 2020-04-16.md ├── 2020-04-22.md ├── 2020-04-29.md ├── 2020-05-13.md ├── 2020-05-20.md ├── 2020-05-27.md ├── 2020-06-10.md ├── 2020-06-17.md ├── 2020-07-08.md ├── 2020-07-15.md ├── 2020-07-22.md ├── 2020-08-12.md ├── 2020-08-19.md ├── 2020-08-26.md ├── 2020-09-02.md ├── 2020-09-09.md ├── 2020-09-16.md ├── 2020-09-23.md ├── 2020-10-07.md ├── 2020-10-14.md ├── 2020-10-21.md ├── 2020-10-28.md ├── 2020-11-04.md ├── 2020-11-18.md ├── 2020-11-25.md ├── 2020-12-02.md ├── 2020-12-16.md ├── 2021-01-06.md ├── 2021-01-27.md ├── 2021-02-03.md ├── 2021-02-10.md ├── 2021-02-17.md ├── 2021-02-24.md ├── 2021-03-03.md ├── 2021-03-17.md ├── 2021-04-07.md ├── 2021-04-14.md ├── 2021-05-05.md ├── 2021-05-12.md ├── 2021-06-09.md ├── 2021-06-16.md ├── 2021-06-23.md ├── 2021-06-30.md ├── 2021-07-21.md ├── 2021-07-28.md ├── 2021-08-04.md ├── 2021-08-11.md ├── 2021-08-18.md ├── 2021-08-25.md ├── 2021-09-01.md ├── 2021-09-15.md ├── 2021-09-22.md ├── 2021-09-29.md ├── 2021-10-06.md ├── 2021-10-13.md ├── 2021-10-20.md ├── 2021-11-03.md ├── 2021-11-10.md ├── 2021-11-17.md ├── 2021-11-24.md ├── 2021-12-15.md ├── 2022-01-12.md ├── 2022-01-19.md ├── 2022-01-26.md ├── 2022-02-02.md ├── 2022-02-09.md ├── 2022-02-16.md ├── 2022-02-23.md ├── 2022-04-06.md ├── 2022-04-20.md ├── 2022-04-27.md ├── 2022-05-04.md ├── 2022-05-11.md ├── 2022-05-18.md ├── 2022-05-25.md ├── 2022-06-01.md ├── 2022-06-15.md ├── 2022-06-22.md ├── 2022-06-29.md ├── 2022-07-13.md ├── 2022-07-20.md ├── 2022-08-03.md ├── 2022-08-10.md └── 2022-08-17.md ├── package.json ├── test └── index.js └── withdrawn ├── 0000-template.md ├── 0002-changelog.md ├── 0004-npm-audit-xml-report.md ├── 0008-no-caret-prerelease-installs.md ├── 0009-package-overrides.md └── 0011-npm-link-changes.md /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/rrfc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/.github/ISSUE_TEMPLATE/rrfc.md -------------------------------------------------------------------------------- /.github/actions/create-check/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/.github/actions/create-check/action.yml -------------------------------------------------------------------------------- /.github/actions/install-latest-npm/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/.github/actions/install-latest-npm/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/matchers/tap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/.github/matchers/tap.json -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/.github/workflows/audit.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/post-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/.github/workflows/post-dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/.npmrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/SECURITY.md -------------------------------------------------------------------------------- /accepted/0000-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/accepted/0000-template.md -------------------------------------------------------------------------------- /accepted/0006-shallow-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/accepted/0006-shallow-updates.md -------------------------------------------------------------------------------- /accepted/0007-publish-without-tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/accepted/0007-publish-without-tag.md -------------------------------------------------------------------------------- /accepted/0028-publish-prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/accepted/0028-publish-prompt.md -------------------------------------------------------------------------------- /accepted/0035-registry-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/accepted/0035-registry-spec.md -------------------------------------------------------------------------------- /accepted/0036-overrides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/accepted/0036-overrides.md -------------------------------------------------------------------------------- /accepted/0037-audit-overrides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/accepted/0037-audit-overrides.md -------------------------------------------------------------------------------- /accepted/0038-workspaces-run-cmds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/accepted/0038-workspaces-run-cmds.md -------------------------------------------------------------------------------- /accepted/0039-location-config-parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/accepted/0039-location-config-parameter.md -------------------------------------------------------------------------------- /accepted/0042-isolated-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/accepted/0042-isolated-mode.md -------------------------------------------------------------------------------- /accepted/0044-deprecation-ux-revamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/accepted/0044-deprecation-ux-revamp.md -------------------------------------------------------------------------------- /accepted/0047-npm-diff-ignore-cr-at-eol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/accepted/0047-npm-diff-ignore-cr-at-eol.md -------------------------------------------------------------------------------- /accepted/0048-no-integrity-for-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/accepted/0048-no-integrity-for-git.md -------------------------------------------------------------------------------- /accepted/0049-link-packages-to-source-and-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/accepted/0049-link-packages-to-source-and-build.md -------------------------------------------------------------------------------- /docs/HOWTO-MEETINGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/docs/HOWTO-MEETINGS.md -------------------------------------------------------------------------------- /implemented/0001-package-aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0001-package-aliases.md -------------------------------------------------------------------------------- /implemented/0003-run-suggestions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0003-run-suggestions.md -------------------------------------------------------------------------------- /implemented/0005-update-package-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0005-update-package-json.md -------------------------------------------------------------------------------- /implemented/0010-monorepo-subdirectory-declaration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0010-monorepo-subdirectory-declaration.md -------------------------------------------------------------------------------- /implemented/0012-running-as-root.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0012-running-as-root.md -------------------------------------------------------------------------------- /implemented/0013-no-package-json-_fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0013-no-package-json-_fields.md -------------------------------------------------------------------------------- /implemented/0014-devoptional-shrinkwrap-flag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0014-devoptional-shrinkwrap-flag.md -------------------------------------------------------------------------------- /implemented/0015-add-restricted-versions-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0015-add-restricted-versions-handling.md -------------------------------------------------------------------------------- /implemented/0016-set-script-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0016-set-script-command.md -------------------------------------------------------------------------------- /implemented/0017-add-funding-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0017-add-funding-support.md -------------------------------------------------------------------------------- /implemented/0018-multiple-funding-sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0018-multiple-funding-sources.md -------------------------------------------------------------------------------- /implemented/0019-remove-update-depth-option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0019-remove-update-depth-option.md -------------------------------------------------------------------------------- /implemented/0020-npm-option-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0020-npm-option-handling.md -------------------------------------------------------------------------------- /implemented/0021-reduce-lifecycle-script-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0021-reduce-lifecycle-script-environment.md -------------------------------------------------------------------------------- /implemented/0022-quieter-install-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0022-quieter-install-scripts.md -------------------------------------------------------------------------------- /implemented/0023-acceptDependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0023-acceptDependencies.md -------------------------------------------------------------------------------- /implemented/0024-npm-run-traverse-directory-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0024-npm-run-traverse-directory-tree.md -------------------------------------------------------------------------------- /implemented/0025-install-peer-deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0025-install-peer-deps.md -------------------------------------------------------------------------------- /implemented/0026-workspaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0026-workspaces.md -------------------------------------------------------------------------------- /implemented/0027-remove-depth-outdated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0027-remove-depth-outdated.md -------------------------------------------------------------------------------- /implemented/0029-add-ability-to-skip-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0029-add-ability-to-skip-hooks.md -------------------------------------------------------------------------------- /implemented/0030-no-install-optional-peer-deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0030-no-install-optional-peer-deps.md -------------------------------------------------------------------------------- /implemented/0031-handling-peer-conflicts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0031-handling-peer-conflicts.md -------------------------------------------------------------------------------- /implemented/0032-powershell-bins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0032-powershell-bins.md -------------------------------------------------------------------------------- /implemented/0033-npm-diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0033-npm-diff.md -------------------------------------------------------------------------------- /implemented/0034-improve-command-suggestions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0034-improve-command-suggestions.md -------------------------------------------------------------------------------- /implemented/0039-npm-pkg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0039-npm-pkg.md -------------------------------------------------------------------------------- /implemented/0043-lockfile-version-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0043-lockfile-version-config.md -------------------------------------------------------------------------------- /implemented/0045-workspaces-auto-cwd-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0045-workspaces-auto-cwd-context.md -------------------------------------------------------------------------------- /implemented/0046-add-types-metadata-to-package-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/implemented/0046-add-types-metadata-to-package-json.md -------------------------------------------------------------------------------- /meetings/2019-09-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2019-09-04.md -------------------------------------------------------------------------------- /meetings/2019-10-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2019-10-02.md -------------------------------------------------------------------------------- /meetings/2019-10-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2019-10-16.md -------------------------------------------------------------------------------- /meetings/2019-10-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2019-10-30.md -------------------------------------------------------------------------------- /meetings/2019-11-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2019-11-13.md -------------------------------------------------------------------------------- /meetings/2019-11-27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2019-11-27.md -------------------------------------------------------------------------------- /meetings/2019-12-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2019-12-13.md -------------------------------------------------------------------------------- /meetings/2020-01-08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-01-08.md -------------------------------------------------------------------------------- /meetings/2020-01-22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-01-22.md -------------------------------------------------------------------------------- /meetings/2020-02-05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-02-05.md -------------------------------------------------------------------------------- /meetings/2020-02-19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-02-19.md -------------------------------------------------------------------------------- /meetings/2020-03-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-03-04.md -------------------------------------------------------------------------------- /meetings/2020-03-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-03-11.md -------------------------------------------------------------------------------- /meetings/2020-03-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-03-25.md -------------------------------------------------------------------------------- /meetings/2020-04-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-04-01.md -------------------------------------------------------------------------------- /meetings/2020-04-08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-04-08.md -------------------------------------------------------------------------------- /meetings/2020-04-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-04-16.md -------------------------------------------------------------------------------- /meetings/2020-04-22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-04-22.md -------------------------------------------------------------------------------- /meetings/2020-04-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-04-29.md -------------------------------------------------------------------------------- /meetings/2020-05-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-05-13.md -------------------------------------------------------------------------------- /meetings/2020-05-20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-05-20.md -------------------------------------------------------------------------------- /meetings/2020-05-27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-05-27.md -------------------------------------------------------------------------------- /meetings/2020-06-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-06-10.md -------------------------------------------------------------------------------- /meetings/2020-06-17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-06-17.md -------------------------------------------------------------------------------- /meetings/2020-07-08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-07-08.md -------------------------------------------------------------------------------- /meetings/2020-07-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-07-15.md -------------------------------------------------------------------------------- /meetings/2020-07-22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-07-22.md -------------------------------------------------------------------------------- /meetings/2020-08-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-08-12.md -------------------------------------------------------------------------------- /meetings/2020-08-19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-08-19.md -------------------------------------------------------------------------------- /meetings/2020-08-26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-08-26.md -------------------------------------------------------------------------------- /meetings/2020-09-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-09-02.md -------------------------------------------------------------------------------- /meetings/2020-09-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-09-09.md -------------------------------------------------------------------------------- /meetings/2020-09-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-09-16.md -------------------------------------------------------------------------------- /meetings/2020-09-23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-09-23.md -------------------------------------------------------------------------------- /meetings/2020-10-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-10-07.md -------------------------------------------------------------------------------- /meetings/2020-10-14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-10-14.md -------------------------------------------------------------------------------- /meetings/2020-10-21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-10-21.md -------------------------------------------------------------------------------- /meetings/2020-10-28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-10-28.md -------------------------------------------------------------------------------- /meetings/2020-11-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-11-04.md -------------------------------------------------------------------------------- /meetings/2020-11-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-11-18.md -------------------------------------------------------------------------------- /meetings/2020-11-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-11-25.md -------------------------------------------------------------------------------- /meetings/2020-12-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-12-02.md -------------------------------------------------------------------------------- /meetings/2020-12-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2020-12-16.md -------------------------------------------------------------------------------- /meetings/2021-01-06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-01-06.md -------------------------------------------------------------------------------- /meetings/2021-01-27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-01-27.md -------------------------------------------------------------------------------- /meetings/2021-02-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-02-03.md -------------------------------------------------------------------------------- /meetings/2021-02-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-02-10.md -------------------------------------------------------------------------------- /meetings/2021-02-17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-02-17.md -------------------------------------------------------------------------------- /meetings/2021-02-24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-02-24.md -------------------------------------------------------------------------------- /meetings/2021-03-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-03-03.md -------------------------------------------------------------------------------- /meetings/2021-03-17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-03-17.md -------------------------------------------------------------------------------- /meetings/2021-04-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-04-07.md -------------------------------------------------------------------------------- /meetings/2021-04-14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-04-14.md -------------------------------------------------------------------------------- /meetings/2021-05-05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-05-05.md -------------------------------------------------------------------------------- /meetings/2021-05-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-05-12.md -------------------------------------------------------------------------------- /meetings/2021-06-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-06-09.md -------------------------------------------------------------------------------- /meetings/2021-06-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-06-16.md -------------------------------------------------------------------------------- /meetings/2021-06-23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-06-23.md -------------------------------------------------------------------------------- /meetings/2021-06-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-06-30.md -------------------------------------------------------------------------------- /meetings/2021-07-21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-07-21.md -------------------------------------------------------------------------------- /meetings/2021-07-28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-07-28.md -------------------------------------------------------------------------------- /meetings/2021-08-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-08-04.md -------------------------------------------------------------------------------- /meetings/2021-08-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-08-11.md -------------------------------------------------------------------------------- /meetings/2021-08-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-08-18.md -------------------------------------------------------------------------------- /meetings/2021-08-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-08-25.md -------------------------------------------------------------------------------- /meetings/2021-09-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-09-01.md -------------------------------------------------------------------------------- /meetings/2021-09-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-09-15.md -------------------------------------------------------------------------------- /meetings/2021-09-22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-09-22.md -------------------------------------------------------------------------------- /meetings/2021-09-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-09-29.md -------------------------------------------------------------------------------- /meetings/2021-10-06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-10-06.md -------------------------------------------------------------------------------- /meetings/2021-10-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-10-13.md -------------------------------------------------------------------------------- /meetings/2021-10-20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-10-20.md -------------------------------------------------------------------------------- /meetings/2021-11-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-11-03.md -------------------------------------------------------------------------------- /meetings/2021-11-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-11-10.md -------------------------------------------------------------------------------- /meetings/2021-11-17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-11-17.md -------------------------------------------------------------------------------- /meetings/2021-11-24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-11-24.md -------------------------------------------------------------------------------- /meetings/2021-12-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2021-12-15.md -------------------------------------------------------------------------------- /meetings/2022-01-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-01-12.md -------------------------------------------------------------------------------- /meetings/2022-01-19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-01-19.md -------------------------------------------------------------------------------- /meetings/2022-01-26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-01-26.md -------------------------------------------------------------------------------- /meetings/2022-02-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-02-02.md -------------------------------------------------------------------------------- /meetings/2022-02-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-02-09.md -------------------------------------------------------------------------------- /meetings/2022-02-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-02-16.md -------------------------------------------------------------------------------- /meetings/2022-02-23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-02-23.md -------------------------------------------------------------------------------- /meetings/2022-04-06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-04-06.md -------------------------------------------------------------------------------- /meetings/2022-04-20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-04-20.md -------------------------------------------------------------------------------- /meetings/2022-04-27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-04-27.md -------------------------------------------------------------------------------- /meetings/2022-05-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-05-04.md -------------------------------------------------------------------------------- /meetings/2022-05-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-05-11.md -------------------------------------------------------------------------------- /meetings/2022-05-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-05-18.md -------------------------------------------------------------------------------- /meetings/2022-05-25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-05-25.md -------------------------------------------------------------------------------- /meetings/2022-06-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-06-01.md -------------------------------------------------------------------------------- /meetings/2022-06-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-06-15.md -------------------------------------------------------------------------------- /meetings/2022-06-22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-06-22.md -------------------------------------------------------------------------------- /meetings/2022-06-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-06-29.md -------------------------------------------------------------------------------- /meetings/2022-07-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-07-13.md -------------------------------------------------------------------------------- /meetings/2022-07-20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-07-20.md -------------------------------------------------------------------------------- /meetings/2022-08-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-08-03.md -------------------------------------------------------------------------------- /meetings/2022-08-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-08-10.md -------------------------------------------------------------------------------- /meetings/2022-08-17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/meetings/2022-08-17.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/test/index.js -------------------------------------------------------------------------------- /withdrawn/0000-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/withdrawn/0000-template.md -------------------------------------------------------------------------------- /withdrawn/0002-changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/withdrawn/0002-changelog.md -------------------------------------------------------------------------------- /withdrawn/0004-npm-audit-xml-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/withdrawn/0004-npm-audit-xml-report.md -------------------------------------------------------------------------------- /withdrawn/0008-no-caret-prerelease-installs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/withdrawn/0008-no-caret-prerelease-installs.md -------------------------------------------------------------------------------- /withdrawn/0009-package-overrides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/withdrawn/0009-package-overrides.md -------------------------------------------------------------------------------- /withdrawn/0011-npm-link-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npm/rfcs/HEAD/withdrawn/0011-npm-link-changes.md --------------------------------------------------------------------------------