-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.41 KB
/
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
44
45
46
47
{
"name": "injexify",
"version": "0.1.1",
"description": "Injexify is a powerful and flexible dependency injection library for TypeScript, designed to simplify the management of dependencies in your applications. With an easy-to-use syntax and robust features, Injexify allows developers to enhance modularity, maintainability, and testability of their TypeScript projects. Harness the magic of dependency injection with Injexify and streamline your application development process.",
"scripts": {
"build": "tsc",
"test": "ts-node ./node_modules/mocha/bin/mocha 'test/**/*.ts'",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChyzhykTech/injexify.git"
},
"author": "Serhii Chyzhyk",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChyzhykTech/injexify/issues"
},
"files": [
"dist/**/*",
"README.md"
],
"homepage": "https://github.com/ChyzhykTech/injexify#readme",
"devDependencies": {
"@types/mocha": "^10.0.6",
"mocha": "^10.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"typescript": "^5.3.3"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"dependencies": {
"reflect-metadata": "^0.2.1"
}
"keywords": [
"dependency injection",
"TypeScript",
"decorators",
"typescript-library"
]
}