├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── redirect.html └── w3c.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/import-maps/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/import-maps/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/import-maps/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/import-maps/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/import-maps/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/import-maps/HEAD/README.md -------------------------------------------------------------------------------- /redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/import-maps/HEAD/redirect.html -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WICG/import-maps/HEAD/w3c.json --------------------------------------------------------------------------------