-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (46 loc) · 1.27 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": "@templum/decorators",
"version": "0.2.0",
"description": "a util package that offers a varity of typescript (5.0) decorators covering different functionalities",
"main": "lib.ts",
"scripts": {
"check:lint": "eslint ./lib",
"check:tsc": "tsc --noEmit",
"test:unit": "jest --runInBand",
"test:coverage": "jest --runInBand --coverage"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Templum/decorators.git"
},
"keywords": [
"decorators",
"typescript",
"aop",
"aspect-programming"
],
"devDependencies": {
"@types/node": "^22.7.4",
"@types/jest": "^29.5.13",
"typescript": "^5.5.4",
"ts-node": "^10.9.2",
"typescript-eslint":"^8.5.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"c8": "^10.1.2",
"jest":"^29.7.0",
"ts-jest": "^29.2.5"
},
"private": "true",
"author": "Templum <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Templum/decorators/issues"
},
"homepage": "https://github.com/Templum/decorators#readme"
}