-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·47 lines (46 loc) · 973 Bytes
/
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
{
"name" : "Deferred",
"version" : "0.1.2",
"description" : "A port of the jQuery Deferred library to node js.",
"keywords" : [
"promises",
"futures",
"deferred",
"jQuery"
],
"engines" : ["node >= 0.2.2"],
"homepage" : "http://webspinner.github.com/Deferred",
"main" : "deferred",
"repository" : {
"type" : "git",
"url" : "git://github.com/webspinner/Deferred.git"
},
"contributors" : [
{
"name" : "Gabriel Hernandez",
"email" : "[email protected]",
"url" : "https://github.com/webspinner"
},
{
"name" : "Ben Loveridge",
"email" : "",
"url" : "https://github.com/bloveridge"
},
{
"name" : "Richard Bateman",
"email" : "[email protected]",
"url" : "https://github.com/taxilian"
}
],
"devDependencies" : {
"vows" : ">=0.4.1"
},
"licenses": [
{
"type": "GPL"
},
{
"type": "MIT"
}
]
}