-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (42 loc) · 979 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
{
"name": "dependency-injection",
"description": "[ABANDONED] Dependency injection with configuration and autowire for node js and browser",
"version": "2.3.3",
"author": {
"name": "David Kudera",
"email": "[email protected]"
},
"keywords": [
"di",
"dependency injection",
"autowire",
"configuration"
],
"repository": {
"type": "git",
"url": "[email protected]:Carrooi/Node-DependencyInjection.git"
},
"license": "MIT",
"engines": {
"node": ">=0.9"
},
"main": "./lib/DI",
"dependencies": {
"easy-configuration": "~2.0.1",
"callsite": "~1.0.0"
},
"devDependencies": {
"chai": "~1.9.0",
"mocha": "~1.18.0",
"gulp": "~3.8.6",
"gulp-coffee": "~2.1.1"
},
"scripts": {
"test": "mocha ./test/index.js --reporter spec",
"compile": "gulp compile",
"compile-source": "gulp compile-source",
"compile-test": "gulp compile-test",
"compile-test-source": "gulp compile-test-source",
"compile-test-data": "gulp compile-test-data"
}
}