From 08bfa6201f28f08a689a13c5e5d3f7ea268dc59e Mon Sep 17 00:00:00 2001 From: Guy Bedford Date: Mon, 16 Sep 2013 11:42:36 +0200 Subject: [PATCH] formatting --- README.md | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 3f09660..89d3933 100644 --- a/README.md +++ b/README.md @@ -5,36 +5,25 @@ Pull requests welcome! While the registry is small enough, all registry entries are managed through Github, moderated by the registry maintainers. -* The registry provides a mapping from a _unique registry name_ to a _target package_. +* The registry provides a mapping from a _unique registry name_ to a _target package_: + ``` + "bootstrap": "github:twbs/bootstrap" + ``` * For ease of reference, please ensure new names are added in the correct alphabetical location. * Currently the following SPDY-optimized _location services_ are available in the registry mapping: - * Github: `github:author/repo` * NPM: `npm:repo` - Additional locations are in planning for other servies, and third party locations can also be [submitted](). - -* Versions numbers are automatically appended onto the end of the target name. For example: - - `jquery@2.0` -> `github:components/jquery/jquery@2.0` - - All location services are designed to work with these [jspm version conventions](). - +* Versions numbers are automatically appended onto the end of the target name based on the [jspm version conventions](). * An optional _main entry point_ can be specified by appending the syntax `#main-file-name`. For example: - `"jquery": "github:components/jquery#jquery"` - will map: - * `jquery` -> `github:components/jquery/jquery` * `jquery/submodule` -> `github:components/jquery/submodule` - It is simply a shorthand for specifying the main entry point when the package is requested directly by name. - * Further customizations of package configurations for jspm should be provided in the package.json file for a package. If you do not have direct access to the source package, use a package override to provide this. - Package Overrides ---