forked from peteward44/winston-winlog2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "winston-winlog4",
"version": "3.1.0",
"description": "Windows Event Log logger for the node.js Winston module.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"lint": "eslint src/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/MatteoGheza/winston-winlog4"
},
"keywords": [
"windows",
"services",
"log",
"logging",
"logger",
"winston"
],
"author": "Matteo Gheza <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/matteogheza/winston-winlog4/issues"
},
"homepage": "https://github.com/matteogheza/winston-winlog4",
"dependencies": {
"flatted": "^3.3.1",
"node-eventlog": "^1.0.2",
"winston-transport": "^4.8.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
]
}