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: ab200ad6ebdf3eaf007214234998c684d13f0f89 (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
{ "name" : "npm"
, "description" : "A package manager for node"
, "version" : "0.1.14"
, "author" : "Isaac Z. Schlueter <i@izs.me>"
, "contributors" :
  [ "Steve Steiner <ssteinerX@gmail.com>"
  , "Mikeal Rogers <mikeal.rogers@gmail.com>"
  , "Aaron Blohowiak <aaron.blohowiak@gmail.com>"
  , "Martyn Smith <martyn@dollyfish.net.nz>"
  ]
, "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.97-0" }
, "scripts" :
  { "activate" : "node scripts/install-docs.js"
  , "deactivate" : "node scripts/install-docs.js"
  }
, "licenses" :
  [ { "type" : "MIT"
    , "url" : "http://github.com/isaacs/npm/raw/master/LICENSE"
    }
  ]
}