├── .editorconfig ├── .github └── workflows │ ├── main.yml │ └── publish.yml ├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── docs ├── modules │ ├── README.md │ ├── axios.md │ ├── bluebird-q.md │ ├── body-parser.md │ ├── buf-compare.md │ ├── buffer-equal.md │ ├── buffer-equals.md │ ├── builtin-modules.md │ ├── chalk.md │ ├── core-util-is.md │ ├── cpx.md │ ├── crypto-js.md │ ├── deep-equal.md │ ├── depcheck.md │ ├── dot-prop.md │ ├── dotenv.md │ ├── emoji-regex.md │ ├── eslint-plugin-es.md │ ├── eslint-plugin-eslint-comments.md │ ├── eslint-plugin-import.md │ ├── eslint-plugin-node.md │ ├── eslint-plugin-react.md │ ├── eslint-plugin-vitest.md │ ├── execa.md │ ├── ez-spawn.md │ ├── faker.md │ ├── fast-glob.md │ ├── find-cache-dir.md │ ├── find-cache-directory.md │ ├── find-file-up.md │ ├── find-pkg.md │ ├── find-up.md │ ├── fs-extra.md │ ├── glob.md │ ├── globby.md │ ├── graphemer.md │ ├── invariant.md │ ├── is-builtin-module.md │ ├── jquery.md │ ├── js-yaml.md │ ├── jsx-ast-utils.md │ ├── lint-staged.md │ ├── lodash-underscore.md │ ├── materialize-css.md │ ├── md5.md │ ├── mkdirp.md │ ├── moment.md │ ├── npm-run-all.md │ ├── object-hash.md │ ├── ora.md │ ├── path-exists.md │ ├── pkg-dir.md │ ├── qs.md │ ├── read-package-up.md │ ├── read-pkg-up.md │ ├── read-pkg.md │ ├── readable-stream.md │ ├── rimraf.md │ ├── shortid.md │ ├── sort-object.md │ ├── string-width.md │ ├── strip-ansi.md │ ├── tempy.md │ ├── traverse.md │ ├── uri-js.md │ ├── utf8.md │ └── xmldom.md └── templates │ └── module.md ├── manifest-schema.json ├── manifests ├── micro-utilities.json ├── native.json └── preferred.json ├── package.json ├── scripts ├── check-manifest-problems.js ├── generate-schema.js ├── sort-manifests.js ├── update-manifests-dist-path.js ├── validate-manifests.js ├── validate-module-list.js └── validate-modules.js ├── src ├── main.ts ├── manifests-dir-cjs.cts ├── manifests-dir.ts └── types.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.tshy 3 | /dist 4 | /main.js 5 | *.swp 6 | /.idea 7 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/README.md -------------------------------------------------------------------------------- /docs/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/README.md -------------------------------------------------------------------------------- /docs/modules/axios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/axios.md -------------------------------------------------------------------------------- /docs/modules/bluebird-q.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/bluebird-q.md -------------------------------------------------------------------------------- /docs/modules/body-parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/body-parser.md -------------------------------------------------------------------------------- /docs/modules/buf-compare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/buf-compare.md -------------------------------------------------------------------------------- /docs/modules/buffer-equal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/buffer-equal.md -------------------------------------------------------------------------------- /docs/modules/buffer-equals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/buffer-equals.md -------------------------------------------------------------------------------- /docs/modules/builtin-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/builtin-modules.md -------------------------------------------------------------------------------- /docs/modules/chalk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/chalk.md -------------------------------------------------------------------------------- /docs/modules/core-util-is.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/core-util-is.md -------------------------------------------------------------------------------- /docs/modules/cpx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/cpx.md -------------------------------------------------------------------------------- /docs/modules/crypto-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/crypto-js.md -------------------------------------------------------------------------------- /docs/modules/deep-equal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/deep-equal.md -------------------------------------------------------------------------------- /docs/modules/depcheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/depcheck.md -------------------------------------------------------------------------------- /docs/modules/dot-prop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/dot-prop.md -------------------------------------------------------------------------------- /docs/modules/dotenv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/dotenv.md -------------------------------------------------------------------------------- /docs/modules/emoji-regex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/emoji-regex.md -------------------------------------------------------------------------------- /docs/modules/eslint-plugin-es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/eslint-plugin-es.md -------------------------------------------------------------------------------- /docs/modules/eslint-plugin-eslint-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/eslint-plugin-eslint-comments.md -------------------------------------------------------------------------------- /docs/modules/eslint-plugin-import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/eslint-plugin-import.md -------------------------------------------------------------------------------- /docs/modules/eslint-plugin-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/eslint-plugin-node.md -------------------------------------------------------------------------------- /docs/modules/eslint-plugin-react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/eslint-plugin-react.md -------------------------------------------------------------------------------- /docs/modules/eslint-plugin-vitest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/eslint-plugin-vitest.md -------------------------------------------------------------------------------- /docs/modules/execa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/execa.md -------------------------------------------------------------------------------- /docs/modules/ez-spawn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/ez-spawn.md -------------------------------------------------------------------------------- /docs/modules/faker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/faker.md -------------------------------------------------------------------------------- /docs/modules/fast-glob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/fast-glob.md -------------------------------------------------------------------------------- /docs/modules/find-cache-dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/find-cache-dir.md -------------------------------------------------------------------------------- /docs/modules/find-cache-directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/find-cache-directory.md -------------------------------------------------------------------------------- /docs/modules/find-file-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/find-file-up.md -------------------------------------------------------------------------------- /docs/modules/find-pkg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/find-pkg.md -------------------------------------------------------------------------------- /docs/modules/find-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/find-up.md -------------------------------------------------------------------------------- /docs/modules/fs-extra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/fs-extra.md -------------------------------------------------------------------------------- /docs/modules/glob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/glob.md -------------------------------------------------------------------------------- /docs/modules/globby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/globby.md -------------------------------------------------------------------------------- /docs/modules/graphemer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/graphemer.md -------------------------------------------------------------------------------- /docs/modules/invariant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/invariant.md -------------------------------------------------------------------------------- /docs/modules/is-builtin-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/is-builtin-module.md -------------------------------------------------------------------------------- /docs/modules/jquery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/jquery.md -------------------------------------------------------------------------------- /docs/modules/js-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/js-yaml.md -------------------------------------------------------------------------------- /docs/modules/jsx-ast-utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/jsx-ast-utils.md -------------------------------------------------------------------------------- /docs/modules/lint-staged.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/lint-staged.md -------------------------------------------------------------------------------- /docs/modules/lodash-underscore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/lodash-underscore.md -------------------------------------------------------------------------------- /docs/modules/materialize-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/materialize-css.md -------------------------------------------------------------------------------- /docs/modules/md5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/md5.md -------------------------------------------------------------------------------- /docs/modules/mkdirp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/mkdirp.md -------------------------------------------------------------------------------- /docs/modules/moment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/moment.md -------------------------------------------------------------------------------- /docs/modules/npm-run-all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/npm-run-all.md -------------------------------------------------------------------------------- /docs/modules/object-hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/object-hash.md -------------------------------------------------------------------------------- /docs/modules/ora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/ora.md -------------------------------------------------------------------------------- /docs/modules/path-exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/path-exists.md -------------------------------------------------------------------------------- /docs/modules/pkg-dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/pkg-dir.md -------------------------------------------------------------------------------- /docs/modules/qs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/qs.md -------------------------------------------------------------------------------- /docs/modules/read-package-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/read-package-up.md -------------------------------------------------------------------------------- /docs/modules/read-pkg-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/read-pkg-up.md -------------------------------------------------------------------------------- /docs/modules/read-pkg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/read-pkg.md -------------------------------------------------------------------------------- /docs/modules/readable-stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/readable-stream.md -------------------------------------------------------------------------------- /docs/modules/rimraf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/rimraf.md -------------------------------------------------------------------------------- /docs/modules/shortid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/shortid.md -------------------------------------------------------------------------------- /docs/modules/sort-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/sort-object.md -------------------------------------------------------------------------------- /docs/modules/string-width.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/string-width.md -------------------------------------------------------------------------------- /docs/modules/strip-ansi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/strip-ansi.md -------------------------------------------------------------------------------- /docs/modules/tempy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/tempy.md -------------------------------------------------------------------------------- /docs/modules/traverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/traverse.md -------------------------------------------------------------------------------- /docs/modules/uri-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/uri-js.md -------------------------------------------------------------------------------- /docs/modules/utf8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/utf8.md -------------------------------------------------------------------------------- /docs/modules/xmldom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/modules/xmldom.md -------------------------------------------------------------------------------- /docs/templates/module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/docs/templates/module.md -------------------------------------------------------------------------------- /manifest-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/manifest-schema.json -------------------------------------------------------------------------------- /manifests/micro-utilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/manifests/micro-utilities.json -------------------------------------------------------------------------------- /manifests/native.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/manifests/native.json -------------------------------------------------------------------------------- /manifests/preferred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/manifests/preferred.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/package.json -------------------------------------------------------------------------------- /scripts/check-manifest-problems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/scripts/check-manifest-problems.js -------------------------------------------------------------------------------- /scripts/generate-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/scripts/generate-schema.js -------------------------------------------------------------------------------- /scripts/sort-manifests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/scripts/sort-manifests.js -------------------------------------------------------------------------------- /scripts/update-manifests-dist-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/scripts/update-manifests-dist-path.js -------------------------------------------------------------------------------- /scripts/validate-manifests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/scripts/validate-manifests.js -------------------------------------------------------------------------------- /scripts/validate-module-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/scripts/validate-module-list.js -------------------------------------------------------------------------------- /scripts/validate-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/scripts/validate-modules.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/manifests-dir-cjs.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/src/manifests-dir-cjs.cts -------------------------------------------------------------------------------- /src/manifests-dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/src/manifests-dir.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/es-tooling/module-replacements/HEAD/tsconfig.json --------------------------------------------------------------------------------