-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "micro-ioc",
"description": "a simple container, facilitating an IoC/DI design pattern, providing facilities to load, register, and retrieve instances of the modules/components in your application",
"version": "0.1.1",
"homepage": "https://github.com/mmacmillan/micro-ioc",
"author": {
"name": "Mike MacMillan",
"email": "[email protected]"
},
"main": "ioc.js",
"scripts": {
"test": "mocha tests"
},
"repository": {
"type": "git",
"url": "git://github.com/mmacmillan/micro-ioc.git"
},
"bugs": {
"url": "https://github.com/mmacmillan/micro-ioc/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mmacmillan/micro-ioc/blob/master/LICENSE-MIT"
}
],
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"lodash": "2.4.x"
},
"devDependencies": {
"mocha": "2.1.x"
},
"keywords": [
"ioc",
"container",
"di",
"dependency injection",
"inversion of control",
"service locator"
]
}