forked from bytetechnology/winston-gelf-transporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.14 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "unfack-winston-gelf-transporter",
"version": "1.0.2",
"description": "A Winston transporter for sending GELF messages",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prepublish": "npm run clean && npm run build",
"build": "tsc",
"test": "npm run build && jest",
"clean": "rm -rf coverage/* lib/*",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"start": "npm run build && node lib/index.js",
"prepublishOnly": "npm test && npm run lint",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UniversityOfHelsinkiCS/unfuck-winston-gelf-transporter.git"
},
"keywords": [
"unfuck",
"gelf",
"winston",
"transport",
"tcp"
],
"author": "Toska <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/UniversityOfHelsinkiCS/unfuck-winston-gelf-transporter/issues"
},
"homepage": "https://github.com/UniversityOfHelsinkiCS/unfuck-winston-gelf-transporter#readme",
"devDependencies": {
"@types/jest": "25.1.4",
"@types/node": "13.9.1",
"@typescript-eslint/eslint-plugin": "2.23.0",
"@typescript-eslint/parser": "2.23.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-prettier": "3.1.2",
"jest": "25.1.0",
"prettier": "1.19.1",
"ts-jest": "25.2.1",
"ts-node": "8.6.2",
"typescript": "4.5.2",
"winston": "3.2.1"
},
"dependencies": {
"gelf-pro": "1.3.3",
"logform": "2.7.0",
"winston-transport": "4.3.0"
},
"engines": {
"node": ">= 8.x.x"
},
"jest": {
"coverageDirectory": "<rootDir>/coverage",
"testEnvironment": "node",
"moduleFileExtensions": [
"js"
],
"testMatch": [
"<rootDir>/lib/**/*.spec.js"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
}
}
}