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-01 09:33:08 +0300
committerisaacs <i@izs.me>2010-03-01 09:33:08 +0300
commit3689153aa3c6b763af0d18e03e8f84d5ba65ca7a (patch)
tree43f138afa3b06e65c06f46c24d943e4902cec4fa
parentd916b98225df8bb8baae3875fea83e051ad61c76 (diff)
Use the snazzier style for the json, and add the activate/deactivate scripts.v0.0.2
-rw-r--r--package.json29
1 files changed, 15 insertions, 14 deletions
diff --git a/package.json b/package.json
index 570b4b3c2..c961169bb 100644
--- a/package.json
+++ b/package.json
@@ -1,15 +1,16 @@
-{
- "name": "npm",
- "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":"ln -s $(pwd)/cli.js /usr/local/bin/npm"
+{ "name" : "npm"
+, "description" : "A package manager for node"
+, "version" : "0.0.2"
+, "author" : "Isaac Z. Schlueter <i@izs.me>"
+, "directories" :
+ { "lib" : "lib"
+ }
+, "main" : "./npm"
+, "scripts" :
+ { "install" : "scripts/install.js"
+ , "uninstall" : "scripts/uninstall.js"
+ , "activate" : "scripts/activate.js"
+ , "deactivate" : "scripts/deactivate.js"
+ }
+, "make":"ln -s $(pwd)/cli.js /usr/local/bin/npm"
}