-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.64 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"packageManager": "[email protected]",
"devDependencies": {
"@jest/globals": "^29.5.0",
"@ncpa0cpl/nodepack": "^1.2.2",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.55",
"@swc/jest": "^0.2.26",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"esbuild": "^0.17.18",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"git-hook-tasks": "ncpa0cpl/git-hook-tasks",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"prettier-plugin-jsdoc": "^0.4.2",
"reflect-metadata": "^0.1.13",
"typescript": "^5.0.4"
},
"name": "tringe",
"version": "0.0.1",
"main": "./dist/legacy/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
}
},
"scripts": {
"fix:lint": "eslint --fix .",
"fix:prettier": "prettier -w ./src .",
"test:unit": "jest --coverage",
"test:lint": "eslint .",
"test:prettier": "prettier -c ./src && prettier -c ./__tests__",
"test:tsc": "tsc --noEmit",
"build": "node ./scripts/build.mjs"
},
"keywords": [
"typescript",
"decorators",
"experimental decorators",
"dependency injection",
"di"
],
"repository": {
"url": "https://github.com/ncpa0/tringe"
},
"description": "A TypeScript library leveraging decorators to provide a dependency injection mechanism.",
"license": "MIT",
"author": {
"name": "Szymon Bretner",
"email": "[email protected]"
}
}