-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (37 loc) · 1.26 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
{
"name" : "injekt",
"version" : "0.1.9",
"homepage" : "https://github.com/arkbot/injekt",
"author" : "Arkbot Industries <[email protected]>",
"description" : "A tiny dependency injection framework for NodeJS",
"keywords" : [ "dependency", "injection", "context", "isolation", "mock" ],
"licenses" : [ {
"type" : "MIT",
"url" : "https://github.com/arkbot/injekt/blob/master/LICENSE.txt"
} ],
"preferGlobal" : false,
"analyze" : false,
"contributors" : [ {
"name" : "Adam Eberlin",
"email" : "[email protected]"
} ],
"scripts" : {
"test" : "vows --spec --isolate test/*-vows.js"
},
"main" : "./lib/index.js",
"repository" : {
"type" : "git",
"url" : "https://github.com/arkbot/injekt.git"
},
"dependencies" : {
"contextify" : "0.1.x"
},
"devDependencies" : {
"should" : "2.0.x",
"vows" : "0.7.x"
},
"bundleDependencies" : [ ],
"engines" : {
"node" : ">=0.8"
}
}