-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.42 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.42 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@trackit.io/di-container",
"version": "1.0.0",
"description": "A typesafe dependency injection container implemented as a wrapper around Tsyringe, designed for ease of use and better control over your application's dependencies.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"dev": "ts-node index.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"dependency-injection",
"di",
"ioc",
"inversion-of-control",
"typescript",
"container",
"tsyringe",
"typesafe"
],
"author": "Trackit.io",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trackit/di-container.git"
},
"bugs": {
"url": "https://github.com/trackit/di-container/issues"
},
"homepage": "https://github.com/trackit/di-container#readme",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/*.test.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
}
},
"dependencies": {
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.10.0"
}
}