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-03-05 10:02:20 +0300
committerisaacs <i@izs.me>2010-03-05 10:02:20 +0300
commit509ee5ac4c18cfa2421b3a16969c69680e5c9495 (patch)
tree8c32ff5ce92bcd6c16d1d75ada6b0193c9c77f12 /package.json
parent73a3ed3b1d475275e85ede08e0e58a89edc0df29 (diff)
Use the "bin" field rather than the install/activate scripts.
Diffstat (limited to 'package.json')
-rw-r--r--package.json8
1 files changed, 1 insertions, 7 deletions
diff --git a/package.json b/package.json
index b70416a71..468e6d78d 100644
--- a/package.json
+++ b/package.json
@@ -2,13 +2,7 @@
, "description" : "A package manager for node"
, "version" : "0.0.4beta"
, "author" : "Isaac Z. Schlueter <i@izs.me>"
-, "directories" : { "lib" : "lib" }
+, "directories" : { "lib" : "./lib/" }
, "main" : "./npm"
, "bin" : { "npm" : "./cli.js" }
-, "scripts" :
- { "install" : "scripts/install.js"
- , "uninstall" : "scripts/uninstall.js"
- , "activate" : "scripts/activate.js"
- , "deactivate" : "scripts/deactivate.js"
- }
}