forked from SuperPaintman/winston-seq
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 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
{
"name": "@valuabletouch/winston-seq",
"version": "1.3.0",
"description": "Another Seq transport for Winston",
"author": "Valuable Touch <dev@valuabletouch.com> (https://www.valuabletouch.com)",
"contributors": [
"SuperPaintman <SuperPaintmanDeveloper@gmail.com> (https://superpaintman.com)"
],
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"build:watch": "tsc -w",
"lint": "tslint src/**/*.ts",
"prepare": "npm run lint && npm run build",
"prepush": "npm run prepare",
"precommit": "npm run lint"
},
"homepage": "https://github.com/valuabletouch/winston-seq#readme",
"repository": "github:valuabletouch/winston-seq",
"bugs": {
"url": "https://github.com/valuabletouch/winston-seq/issues"
},
"keywords": [
"winston",
"logging",
"sysadmin",
"tools",
"winston-transport",
"winston-seq",
"seq"
],
"main": "dist/index.js",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist/*"
],
"types": "dist/index.d.ts",
"dependencies": {
"seq-logging": "^1.1.1",
"winston-transport": "^4.4.0"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/triple-beam": "^1.3.2",
"@types/winston": "^2.4.4",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"typescript": "^4.4.4"
}
}