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: 0c2feb8e7c9a5a407870bfbc7221b380fad9c38b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ "name" : "npm"
, "description" : "A package manager for node"
, "keywords" : [ "package manager", "modules", "install", "package.json" ]
, "version" : "1.0.9"
, "preferGlobal" : true
, "config" : { "publishtest" : false }
, "homepage" : "http://npmjs.org/"
, "author" : "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)"
, "repository" :
  { "type" : "git"
  , "url" : "git://github.com/isaacs/npm.git"
  }
, "bugs" :
  { "mail" : "npm-@googlegroups.com"
  , "web" : "http://github.com/isaacs/npm/issues"
  }
, "directories" : { "doc" : "./doc"
                  , "man" : "./man1"
                  , "lib" : "./lib"
                  , "bin" : "./bin"
                  }
, "main" : "npm"
, "bin" : "./bin/npm.js"
, "dependencies" :
  { "semver" : "1"
  , "abbrev" : "1"
  , "nopt" : "1"
  , "node-uuid" : "1.2" }
, "bundleDependencies" : [ "semver", "abbrev", "nopt", "node-uuid" ]
, "devDependencies" : { "ronn" : "" }
, "engines" : { "node" : "0.4 || 0.5", "npm" : "1" }
, "scripts" : { "test" : "./test/run.sh"
              , "prepublish" : "make doc"
              }
, "licenses" :
  [ { "type" : "MIT"
    , "url" : "http://github.com/isaacs/npm/raw/master/LICENSE"
    }
  ]
}