-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
66 lines (65 loc) · 1.42 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
65
66
{
"name": "ng-di",
"description": "Dependency Injection for Javascript. Both for Browser and Node",
"version": "0.2.1",
"homepage": "https://github.com/jmendiara/ng-di",
"author": {
"name": "Javier Mendiara Cañardo",
"email": "[email protected]"
},
"contributors": [
{
"name": "Milán Nagy",
"email": "[email protected]"
},
{
"name": "Pedro Henrique de Assis"
}
],
"repository": {
"type": "git",
"url": "git://github.com/jmendiara/ng-di.git"
},
"bugs": {
"url": "https://github.com/jmendiara/ng-di/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jmendiara/ng-di/blob/master/LICENSE-MIT"
}
],
"main": "lib/ng-di",
"files": {
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-compress": "0.4.1",
"grunt-contrib-clean": "0.4.0",
"grunt-contrib-concat": "~0.1.3",
"grunt-contrib-uglify": "~0.2.0",
"karma": "~0.8",
"shelljs": "0.1.2",
"grunt-karma": "~0.4.1",
"grunt-jasmine-node": "https://github.com/jmendiara/grunt-jasmine-node/tarball/master",
"jasmine-node": "1.5.0",
"grunt-contrib-copy": "~0.4.1"
},
"keywords": [
"dependency-injection",
"dependency injection",
"di",
"angular-di",
"node-di",
"js-di",
"js",
"node"
],
"dependencies": {}
}