-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 918 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
{
"name": "shelf-dependency",
"version": "1.2.0",
"description": "Dependency Injection for node.js",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"build": "tsc",
"develop": "tsc -w",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/davideicardi/shelf-dependency.git"
},
"keywords": [
"inversion-of-controler",
"dependency-injection",
"container"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/davideicardi/shelf-dependency/issues"
},
"homepage": "https://github.com/davideicardi/shelf-dependency",
"devDependencies": {
"@types/chai": "4.2.21",
"@types/mocha": "9.0.0",
"@types/node": "13.13.2",
"chai": "4.3.4",
"mocha": "9.0.3",
"typescript": "4.3.5"
},
"dependencies": {
"@types/debug": "^4.1.7",
"debug": "^4.3.2"
}
}