-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.67 KB
/
package.json
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{ "name" : "npm"
, "description" : "A package manager for node"
, "keywords" : [ "package manager", "modules", "install", "package.json" ]
, "version" : "1.0.103"
, "preferGlobal" : true
, "config" : { "publishtest" : false }
, "homepage" : "http://npmjs.org/"
, "author" : "Isaac Z. Schlueter <[email protected]> (http://blog.izs.me)"
, "repository" :
{ "type" : "git"
, "url" : "https://github.com/isaacs/npm"
}
, "bugs" :
{ "email" : "[email protected]"
, "url" : "http://github.com/isaacs/npm/issues"
}
, "directories" : { "doc" : "./doc"
, "man" : "./man"
, "lib" : "./lib"
, "bin" : "./bin"
}
, "main" : "./lib/npm.js"
, "bin" : { "npm" : "./bin/npm-cli.js"
, "npm_g" : "./bin/npm-cli.js"
, "npm-g" : "./bin/npm-cli.js" }
, "dependencies" :
{ "semver" : "1"
, "ini" : "1"
, "slide" : "1"
, "abbrev" : "1"
, "graceful-fs" : "1"
, "minimatch" : "0"
, "nopt" : "1"
, "node-uuid" : "1.2"
, "proto-list": "1"
, "rimraf" : "1"
, "request": "~2.1.1"
, "which" : "1" }
, "bundleDependencies" :
[ "slide"
, "ini"
, "semver"
, "abbrev"
, "graceful-fs"
, "minimatch"
, "nopt"
, "node-uuid"
, "rimraf"
, "request"
, "proto-list"
, "which" ]
, "devDependencies" :
{ "ronn" : "https://github.com/isaacs/ronnjs/tarball/master" }
, "engines" : { "node" : "0.4 || 0.5", "npm" : "1" }
, "scripts" : { "test" : "./test/run"
, "prepublish" : "make -j4 doc"
, "dumpconf": "env | grep npm | sort | uniq"
}
, "licenses" :
[ { "type" : "MIT +no-false-attribs"
, "url" : "http://github.com/isaacs/npm/raw/master/LICENSE"
}
]
}