forked from Wizcorp/node-graylog2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.59 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
{
"name": "@pskzcompany/graylog",
"version": "0.0.0-semantically-released",
"license": "MIT",
"description": "Graylog client library for node.js. Works via UDP protocol with GELF format (supports compression & chunking).",
"main": "./lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "http://github.com/pskzcompany/graylog/issues"
},
"keywords": [
"graylog",
"gelf"
],
"engines": {
"node": ">=8.0.0"
},
"homepage": "http://github.com/pskzcompany/graylog",
"repository": {
"type": "git",
"url": "http://github.com/pskzcompany/graylog.git"
},
"scripts": {
"build": "rimraf lib && tsc -p ./tsconfig.build.json",
"watch": "jest --watch",
"coverage": "jest --coverage",
"lint": "yarn eslint && yarn tscheck",
"eslint": "eslint --ext .ts ./src",
"tscheck": "tsc --noEmit",
"test": "yarn lint && yarn coverage",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "13.13.4",
"@typescript-eslint/eslint-plugin": "2.30.0",
"@typescript-eslint/parser": "2.30.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-prettier": "3.1.3",
"jest": "25.5.0",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"semantic-release": "17.0.7",
"ts-jest": "25.4.0",
"ts-node": "8.9.1",
"typescript": "^3.8.3"
},
"dependencies": {
"connection-string": "^3.2.0"
}
}