-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.82 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@sabbath/logger",
"version": "1.1.1",
"main": "index.js",
"types": "*/**/*.d.ts",
"license": "MIT",
"homepage": "https://github.com/iago-f-s-e/sabbath-logger#readme",
"repository": {
"type": "git",
"url": "https://github.com/iago-f-s-e/sabbath-logger.git"
},
"contributors": [
{
"name": "Iago Fagundes",
"url": "https://github.com/iago-f-s-e"
}
],
"keywords": [
"log",
"logs",
"logger",
"logging",
"standardization",
"catch",
"excpection",
"excpections",
"handling",
"exception handling",
"decorator",
"function"
],
"files": [
"./lib",
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=18.16.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"example": "ts-node -r tsconfig-paths/register --transpile-only",
"lint": "eslint '*/**/*.{js,ts}'",
"prepare": "husky install",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --coverage",
"type:check": "yarn tsc --noEmit",
"type:watch": "yarn tsc -w --noEmit"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@swc/core": "^1.3.82",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
}
}