forked from gedbac/di4js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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": "di4js",
"description": "The di4js module is dependency injection implementation in JavaScript. Dependency injection is a software design pattern that allows the removal of hard-coded dependencies and makes it possible to change them.",
"version": "1.1.3",
"author": "Gediminas Backevicius <gediminas.backevicius@gmail.com>",
"bugs": {
"url": "https://github.com/gedbac/di4js/issues"
},
"scripts": {
"test": "grunt"
},
"keywords": [
"di",
"dependency",
"injection",
"IoC",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/gedbac/di4js.git"
},
"main": "./lib/di4js.js",
"engines": {
"node": ">=0.8"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-jshint": "~0.11.0",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-concat": "~0.5.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-jasmine": "~0.8.2",
"grunt-jasmine-node": "~0.2.1",
"grunt-contrib-uglify": "~0.8.0",
"grunt-karma": "~0.10.1",
"jasmine-core": "~2.2.0",
"karma": "0.12.31",
"karma-chrome-launcher": "~0.1.7",
"karma-firefox-launcher": "~0.1.4",
"karma-ie-launcher": "~0.1.5",
"karma-safari-launcher": "~0.1.1",
"karma-jasmine": "~0.3.5",
"karma-jasmine-html-reporter": "~0.1.6"
}
}