-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 940 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
{
"name": "nodejs-dependency-injection-container",
"version": "1.0.0",
"description": "NodeJS simple DI container.",
"main": "build/index.js",
"scripts": {
"build": "rimraf ./build && tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mgonzaledk/nodejs-dependency-injection-container.git"
},
"keywords": [
"dic",
"dependency",
"injection",
"container"
],
"author": "M A Gonzalez",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/mgonzaledk/nodejs-dependency-injection-container/issues"
},
"homepage": "https://github.com/mgonzaledk/nodejs-dependency-injection-container#readme",
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"jest": "^25.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
}
}