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

package.json - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb4afc91e6dc043860f496515e3a014ca9e4ddb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ "name" : "npm"
, "description" : "A package manager for node"
, "version" : "0.1.7"
, "author" : "Isaac Z. Schlueter <i@izs.me>"
, "contributors" : [ "Mikeal Rogers <mikeal.rogers@gmail.com>" ]
, "repository" :
  { "type" : "git"
  , "url" : "http://github.com/isaacs/npm.git"
  }
, "bugs" :
  { "mail" : "npm-@googlegroups.com"
  , "web" : "http://github.com/isaacs/npm/issues"
  }
, "os" : [ "linux", "darwin", "freebsd" ]
, "directories" : { "lib" : "./lib/" }
, "main" : "./npm"
, "bin" : { "npm" : "./cli.js" }
, "engines" : { "node" : ">=0.1.91" }
, "scripts" :
  { "activate" : "node install-docs.js"
  , "deactivate" : "node install-docs.js"
  }
}