-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.7 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
{
"name": "winston-transport-vscode",
"version": "0.1.0",
"description": "A Winston logger transport for VS Code extension development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"!src/**/__tests__/**/*"
],
"scripts": {
"lint": "prettier --check . && eslint --max-warnings=0",
"test": "jest",
"build": "tsc",
"watch": "tsc --watch",
"prepack": "rimraf dist && npm run build"
},
"engines": {
"node": ">=18.0.0"
},
"repository": "github:loderunner/winston-transport-vscode",
"keywords": [
"winston",
"winstonjs",
"transport",
"log",
"logging",
"logs",
"logger",
"vscode",
"vscode-extension",
"microsoft"
],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@swc/core": "1.9.2",
"@swc/jest": "0.2.37",
"@types/jest": "29.5.14",
"@types/node": "18.19.0",
"@types/vscode": "1.95.0",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.13.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-n": "17.13.1",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"jest-mock-extended": "3.0.7",
"prettier": "3.3.3",
"release-please": "16.14.3",
"rimraf": "6.0.1",
"typescript": "5.6.3",
"winston": "3.16.0"
},
"dependencies": {
"logform": "^2.6.0",
"triple-beam": "^1.4.1",
"winston-transport": "^4.7.0"
},
"peerDependencies": {
"winston": ">=3.0.0"
}
}