-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.66 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
{
"name": "@pskzcompany/winston-graylog",
"version": "0.0.0-semantically-released",
"license": "MIT",
"description": "A graylog GELF UDP transport for Winston",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "http://github.com/pskzcompany/winston-graylog/issues"
},
"keywords": [
"winston",
"graylog",
"gelf"
],
"engines": {
"node": ">=8.0.0"
},
"homepage": "http://github.com/pskzcompany/winston-graylog",
"repository": {
"type": "git",
"url": "http://github.com/pskzcompany/winston-graylog.git"
},
"scripts": {
"build": "rimraf lib && tsc -p ./tsconfig.build.json",
"watch": "jest --watch --passWithNoTests",
"coverage": "jest --coverage --passWithNoTests",
"lint": "yarn eslint && yarn tscheck",
"eslint": "eslint --ext .ts ./src",
"tscheck": "tsc --noEmit",
"test": "yarn lint && yarn coverage",
"semantic-release": "semantic-release"
},
"dependencies": {
"@pskzcompany/graylog": "^1.1.0",
"winston": "3.3.3",
"winston-transport": "4.4.0"
},
"devDependencies": {
"@types/jest": "26.0.9",
"@types/node": "14.0.27",
"@typescript-eslint/eslint-plugin": "3.8.0",
"@typescript-eslint/parser": "3.8.0",
"eslint": "7.6.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-prettier": "3.1.4",
"jest": "26.2.2",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"semantic-release": "17.1.1",
"ts-jest": "26.1.4",
"ts-node": "8.10.2",
"typescript": "3.9.7"
}
}