-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 967 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
{
"name": "injectx",
"version": "1.0.4",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon",
"build": "tsc -p .",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tareksalem/injectX.git"
},
"keywords": [
"dependency-injection",
"typescript-dependency-injection",
"di-container",
"di",
"functional-programming-di"
],
"author": "Tarek Salem",
"license": "ISC",
"bugs": {
"url": "https://github.com/tareksalem/injectX/issues"
},
"homepage": "https://github.com/tareksalem/injectX#readme",
"description": "A dependency injection package for javascript/typescript functional programming",
"devDependencies": {
"@types/node": "^20.2.3",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
}
}