-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.85 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@estos/uclogger",
"version": "0.0.26",
"description": "Logger library for typescript/javascript projects",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"check": "npx madge --circular --extensions ts --exclude '^dist$' ./",
"unused": "npx ts-unused-exports tsconfig.json --excludePathsFromReport=index.ts",
"clean": "npx rimraf dist",
"test": "jest",
"build": "npx tsc -p .",
"lint": "eslint --cache --fix -c .eslintrc.precommit.js src/**/*.{js,ts,tsx}",
"lintclear": "del /s .eslintcache",
"relint": "run-s clean lintclear lint",
"lintnocache": "eslint --fix -c .eslintrc.precommit.js src/**/*.{js,ts,tsx}",
"precommit": "run-p lint check unused build",
"prepare": "husky install"
},
"lint-staged": {
"lib/**/*.{js,ts,tsx}": [
"eslint --cache --fix -c .eslintrc.precommit.js"
]
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"README.md",
"LICENSE.txt",
"/dist"
],
"author": "estos GmbH",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"logform": "^2.6.0",
"winston": "^3.11.0",
"winston-transport": "^4.6.0"
},
"repository": {
"type": "git",
"url": "git://github.com/ESTOS/uclogger.git"
}
}