-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.54 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
{
"name": "@datalust/winston-seq",
"version": "2.0.0",
"license": "Apache-2.0",
"description": "A Winston v3 transport for Seq",
"author": "Datalust and contributors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch test/*.test.ts",
"test:coverage": "jest --coverage",
"lint": "eslint --fix src/** test/**"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && jest --onlyChanged",
"pre-push": "yarn lint && jest"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"peerDependencies": {
"winston": "^3.0.0"
},
"dependencies": {
"seq-logging": "^2.0.0",
"winston-transport": "^4.4.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"axios": "^0.25.0",
"dotenv": "^10.0.0",
"eslint": "^7.30.0",
"eslint-plugin-jest": "^24.3.6",
"husky": "^7.0.1",
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5",
"winston": "^3.4.0"
},
"homepage": "https://github.com/datalust/winston-seq",
"repository": {
"type": "git",
"url": "https://github.com/datalust/winston-seq.git"
},
"keywords": [
"winston",
"logging",
"winston-transport",
"winston-seq",
"seq"
],
"files": [
"dist/index.d.ts",
"dist/index.d.ts.map",
"dist/index.js",
"dist/index.js.map"
]
}