-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 841 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
{
"name": "dependency-injection-decorator",
"version": "1.1.0",
"description": "A simple way to inject dependency with decorators",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc -d",
"test": "test"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GuilhermeSevero/dependency-injection-decorator.git"
},
"keywords": [
"inject",
"dependency",
"decorator",
"TypeScript"
],
"author": "Guilherme Severo ([email protected])",
"license": "ISC",
"bugs": {
"url": "https://github.com/GuilhermeSevero/dependency-injection-decorator/issues"
},
"homepage": "https://github.com/GuilhermeSevero/dependency-injection-decorator#readme",
"devDependencies": {
"tsc": "^2.0.3",
"typescript": "^4.3.5"
}
}