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-02-27 09:06:03 +0300
committerisaacs <i@izs.me>2010-02-27 09:06:03 +0300
commit81d62537e92571a2c6f9a60282a65ed7691d71de (patch)
tree487fa2b170c31f2a5a2300f8f2ecdb50d27db13a /package.json
parent494e7ed63b20a088ed895e0474bbe977d7b13f2b (diff)
Start moving towards using the commonjs packages/1.0-style "scripts" hash rather than a "make" command.
Diffstat (limited to 'package.json')
-rw-r--r--package.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/package.json b/package.json
index a223b9b19..04e069e35 100644
--- a/package.json
+++ b/package.json
@@ -3,10 +3,13 @@
"description":"A package manager for node",
"version":"0.0.1",
"author":"Isaac Z. Schlueter <i@izs.me>",
-
"directories" : {
"lib" : "lib"
},
"main":"./npm",
+ "scripts" : {
+ "install" : "scripts/install.js",
+ "uninstall" : "scripts/uninstall.js"
+ }
"make":"cp cli.js /usr/local/bin/npm"
}