├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .vscode └── settings.json ├── API.md ├── Dockerfile ├── LICENCE ├── Makefile ├── README.md ├── api ├── async │ ├── publish.ts │ └── publish_test.ts └── webhook │ └── github.ts ├── badwords-example.txt ├── deps.ts ├── docker-compose.yml ├── indexes ├── atlas_search_index_mapping.json ├── builds_by_name_and_version.json ├── modules_by_is_unlisted_and_star_count.json └── modules_by_owner_and_repo.json ├── run-tests.sh ├── terraform ├── alerts.tf ├── api.tf ├── cdn.tf ├── datastore.tf ├── iam.tf ├── main.tf ├── meta.tf ├── outputs.tf ├── providers.tf ├── publish.tf ├── terraform.tfvars.example ├── variables.tf └── webhook.tf ├── test_deps.ts └── utils ├── database_test.ts ├── datastore_database.ts ├── git.ts ├── http.ts ├── moderation.ts ├── moderation_test.ts ├── net.ts ├── net_test.ts ├── storage.ts ├── test_utils.ts ├── testdata └── deno-v1.3.2.json ├── types.ts ├── utils.ts ├── utils_bench.ts ├── utils_test.ts └── webhooks.d.ts /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/API.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/README.md -------------------------------------------------------------------------------- /api/async/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/api/async/publish.ts -------------------------------------------------------------------------------- /api/async/publish_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/api/async/publish_test.ts -------------------------------------------------------------------------------- /api/webhook/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/api/webhook/github.ts -------------------------------------------------------------------------------- /badwords-example.txt: -------------------------------------------------------------------------------- 1 | pineapple 2 | frisbee 3 | danny_devito -------------------------------------------------------------------------------- /deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/deps.ts -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /indexes/atlas_search_index_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/indexes/atlas_search_index_mapping.json -------------------------------------------------------------------------------- /indexes/builds_by_name_and_version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/indexes/builds_by_name_and_version.json -------------------------------------------------------------------------------- /indexes/modules_by_is_unlisted_and_star_count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/indexes/modules_by_is_unlisted_and_star_count.json -------------------------------------------------------------------------------- /indexes/modules_by_owner_and_repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/indexes/modules_by_owner_and_repo.json -------------------------------------------------------------------------------- /run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/run-tests.sh -------------------------------------------------------------------------------- /terraform/alerts.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/terraform/alerts.tf -------------------------------------------------------------------------------- /terraform/api.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/terraform/api.tf -------------------------------------------------------------------------------- /terraform/cdn.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/terraform/cdn.tf -------------------------------------------------------------------------------- /terraform/datastore.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/terraform/datastore.tf -------------------------------------------------------------------------------- /terraform/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/terraform/iam.tf -------------------------------------------------------------------------------- /terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/terraform/main.tf -------------------------------------------------------------------------------- /terraform/meta.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/terraform/meta.tf -------------------------------------------------------------------------------- /terraform/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/terraform/providers.tf -------------------------------------------------------------------------------- /terraform/publish.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/terraform/publish.tf -------------------------------------------------------------------------------- /terraform/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/terraform/terraform.tfvars.example -------------------------------------------------------------------------------- /terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/terraform/variables.tf -------------------------------------------------------------------------------- /terraform/webhook.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/terraform/webhook.tf -------------------------------------------------------------------------------- /test_deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/test_deps.ts -------------------------------------------------------------------------------- /utils/database_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/utils/database_test.ts -------------------------------------------------------------------------------- /utils/datastore_database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/utils/datastore_database.ts -------------------------------------------------------------------------------- /utils/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/utils/git.ts -------------------------------------------------------------------------------- /utils/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/utils/http.ts -------------------------------------------------------------------------------- /utils/moderation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/utils/moderation.ts -------------------------------------------------------------------------------- /utils/moderation_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/utils/moderation_test.ts -------------------------------------------------------------------------------- /utils/net.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/utils/net.ts -------------------------------------------------------------------------------- /utils/net_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/utils/net_test.ts -------------------------------------------------------------------------------- /utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/utils/storage.ts -------------------------------------------------------------------------------- /utils/test_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/utils/test_utils.ts -------------------------------------------------------------------------------- /utils/testdata/deno-v1.3.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/utils/testdata/deno-v1.3.2.json -------------------------------------------------------------------------------- /utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/utils/types.ts -------------------------------------------------------------------------------- /utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/utils/utils.ts -------------------------------------------------------------------------------- /utils/utils_bench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/utils/utils_bench.ts -------------------------------------------------------------------------------- /utils/utils_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/utils/utils_test.ts -------------------------------------------------------------------------------- /utils/webhooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denoland/deno_registry2/HEAD/utils/webhooks.d.ts --------------------------------------------------------------------------------