-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.64 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
{ "name" : "npm"
, "description" : "A package manager for node"
, "keywords" : [ "package manager", "modules", "install", "package.json" ]
, "version" : "0.3.0-8"
, "homepage" : "http://npmjs.org/"
, "author" : "Isaac Z. Schlueter <[email protected]> (http://blog.izs.me)"
, "contributors" :
[ "Steve Steiner <[email protected]> (http://websaucesoftware.com/blog/)"
, "Mikeal Rogers <[email protected]> (http://www.mikealrogers.com/)"
, "Aaron Blohowiak <[email protected]> (http://aaronblohowiak.com/)"
, "Martyn Smith <[email protected]> (http://dollyfish.net.nz/)"
, "Mathias Pettersson <[email protected]> (http://mape.me/)"
, "Brian Hammond <[email protected]> (http://fictorial.com/)"
, "Charlie Robbins <[email protected]> (http://www.charlierobbins.com/)"
, "Francisco Treacy <[email protected]> (http://franciscotreacy.com/)"
, "Cliffano Subagio <[email protected]> (http://blog.cliffano.com/)"
, "Christian Eager <[email protected]> (http://perpenduum.com)"
, "Dav Glass <[email protected]> (http://blog.davglass.com)"
, "Alex K. Wolfe <[email protected]>"
, "James Sanders <[email protected]> (http://james-sanders.com/)"
, "Reid Burke <[email protected]> (http://reidburke.com/)"
, "Arlo Breault <[email protected]> (http://thoughtherder.com/)"
, "Timo Derstappen <[email protected]> (http://teemow.com)"
, "Bradley Meck <[email protected]>"
, "Bart Teeuwisse <[email protected]> (http://thecodemill.biz/)"
, "Ben Noordhuis <[email protected]> (http://bnoordhuis.nl/)"
, "Tor Valamo <[email protected]> (http://www.magnimedia.no/)"
, "Whyme.Lyu <[email protected]> (http://whyme.kuantu.com/)"
, "Olivier Melcher <[email protected]>"
, "Tomaž Muraus <[email protected]> (http://www.tomaz-muraus.info)"
, "Evan Meagher <[email protected]> (http://evanmeagher.net/)"
, "Orlando Vazquez <[email protected]> (http://2wycked.net/)"
, "George Miroshnykov <[email protected]>"
]
, "repository" :
{ "type" : "git"
, "url" : "git://github.com/isaacs/npm.git"
}
, "bugs" :
{ "mail" : "[email protected]"
, "web" : "http://github.com/isaacs/npm/issues"
}
, "directories" : { "doc" : "./doc"
, "man" : "./man1"
, "lib" : "./lib"
, "bin" : "./bin"
}
, "main" : "npm"
, "dependencies" : { "semver" : "1" }
, "engines" : { "node" : "0.4 || 0.5" }
, "scripts" : { "test" : "make test"
, "postinstall" : "./scripts/install-message.sh"
}
, "licenses" :
[ { "type" : "MIT"
, "url" : "http://github.com/isaacs/npm/raw/master/LICENSE"
}
]
}