forked from serhiisol/node-decorators
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"author": "Serhii Sol",
"bugs": {
"url": "https://github.com/serhiisol/node-decorators/issues"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"description": "node decorators - decorators for dependency injection",
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.0.0",
"jest": "^29.4.3",
"rimraf": "^5.0.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"keywords": [
"nodejs",
"dependency injection",
"node decorators",
"typescript"
],
"license": "MIT",
"main": "lib/index.js",
"name": "@decorators/di",
"overrides": {
"typescript": "$typescript"
},
"repository": {
"type": "git",
"url": "https://github.com/serhiisol/node-decorators.git"
},
"scripts": {
"build": "rimraf ./lib && tsc",
"eslint": "eslint \"**/*.ts\"",
"test": "jest"
},
"types": "lib/index.d.ts",
"version": "3.1.0"
}