Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2010-04-26 03:29:02 +0400
committerisaacs <i@izs.me>2010-04-26 03:39:53 +0400
commit8dc29976dc30c9fef78ff1cde341f2f4caae086d (patch)
treeabf32b6325d5f1d0ab554286acd746e304259b05 /README.md
parent9c4cbbf85aa865ddf83a9fd386a361d1ca02cba6 (diff)
ol not understood by ronn
Diffstat (limited to 'README.md')
-rw-r--r--README.md28
1 files changed, 14 insertions, 14 deletions
diff --git a/README.md b/README.md
index b1f0d6f16..c38929f12 100644
--- a/README.md
+++ b/README.md
@@ -39,29 +39,29 @@ version.
Here's what I mean by "core functionality":
-1. Install packages by name, and get the stable version.
-2. Install packages by supplying a name and version, and get the version
+* Install packages by name, and get the stable version.
+* Install packages by supplying a name and version, and get the version
specified.
-3. Install more than one package at a time by specifying them all on the
+* Install more than one package at a time by specifying them all on the
command line.
-4. Install pre-requisites automatically, pulling the stable versions of the
+* Install pre-requisites automatically, pulling the stable versions of the
dependencies.
-5. Talk to a centralized repository to do all this package/version lookup
+* Talk to a centralized repository to do all this package/version lookup
magic.
-6. Install more than one version of a package, and optionally select an
+* Install more than one version of a package, and optionally select an
"active" version. (this works now)
-7. Safely uninstall packages, not removing them unless they have no dependents.
+* Safely uninstall packages, not removing them unless they have no dependents.
(Override with a `--force` flag, of course.) (this works mostly, minus the
`--force` bit.)
-8. Provide a utility for uploading a package.json to a js-registry repository.
+* Provide a utility for uploading a package.json to a js-registry repository.
(totally works now. check out `npm publish <tarball-url>`.)
-9. Handle circular dependencies nicely.
-10. Install and activate automatically. (works now)
-11. Be much smarter about cli arguments.
-12. Help topics.
-13. Install a "link" to a dev directory, so that it links it in rather than
+* Handle circular dependencies nicely.
+* Install and activate automatically. (works now)
+* Be much smarter about cli arguments.
+* Help topics.
+* Install a "link" to a dev directory, so that it links it in rather than
doing the moveIntoPlace step. (works)
-14. Detect when a package has only been installed as a dependency, and be able
+* Detect when a package has only been installed as a dependency, and be able
to remove it when nothing else depends on it.
## Principles