-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 953 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
{
"name": "di-container",
"version": "1.0.0",
"description": "Dependency injection container for Node.js.",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --check-leaks --reporter spec --bail",
"test-cov": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/"
},
"repository": {
"type": "git",
"url": "https://github.com/claudijo/di-container"
},
"keywords": [
"di",
"dependency",
"injection",
"container"
],
"author": "Claudijo Borovic",
"license": "MIT",
"bugs": {
"url": "https://github.com/claudijo/di-container/issues"
},
"homepage": "https://github.com/claudijo/di-container",
"dependencies": {
"args-list": "^0.3.3"
},
"devDependencies": {
"istanbul": "^0.3.5",
"mocha": "^2.1.0"
},
"files": [
"LICENSE",
"index.js"
],
"directories": {
"test": "test"
}
}